From 8d64ab9d4b3039acf19dc2a779c41816a17ea5ce Mon Sep 17 00:00:00 2001 From: Oleksii Bulenok <63914185+abulenok@users.noreply.github.com> Date: Thu, 23 Jul 2026 17:25:40 +0200 Subject: [PATCH 01/53] React Native New Arch (#10980) --- app.config.js | 1 - babel.config.js | 2 +- modules/bottom-sheet/ios/SheetView.swift | 44 +- .../bottom-sheet/ios/SurfaceTouchHandler.h | 3 + modules/expo-scroll-forwarder/README.md | 116 -- .../expo-module.config.json | 6 - modules/expo-scroll-forwarder/index.ts | 1 - .../ios/ExpoScrollForwarder.podspec | 21 - .../ios/ExpoScrollForwarderModule.swift | 13 - .../ios/ExpoScrollForwarderView.swift | 214 --- .../src/ExpoScrollForwarder.types.ts | 4 - .../src/ExpoScrollForwarderView.ios.tsx | 13 - .../src/ExpoScrollForwarderView.tsx | 7 - .../ScrollForwarder.podspec | 20 + .../ios/ScrollForwarderView.h | 14 + .../ios/ScrollForwarderView.mm | 411 +++++ .../package.json | 27 + .../src/ScrollForwarderView.ios.tsx | 12 + .../src/ScrollForwarderView.tsx | 5 + .../src/ScrollForwarderViewNativeComponent.ts | 15 + .../src/index.tsx | 2 + package.json | 18 +- patches/expo-glass-effect@55.0.8.patch | 60 - patches/expo-glass-effect@55.0.8.patch.md | 3 - patches/react-native-date-picker@5.0.13.patch | 14 + patches/react-native-gesture-handler.patch | 31 + patches/react-native-gesture-handler.patch.md | 5 + patches/react-native-pager-view@6.8.0.patch | 126 ++ .../react-native-pager-view@6.8.0.patch.md | 14 + patches/react-native-reanimated@3.19.1.patch | 390 ----- patches/react-native-reanimated@4.3.2.patch | 500 ++++++ .../react-native-reanimated@4.3.2.patch.md | 65 + patches/react-native-uitextview@1.4.0.patch | 35 - patches/react-native@0.81.5.patch | 95 +- patches/react-native@0.81.5.patch.md | 58 + pnpm-lock.yaml | 1436 +++++++++++------ pnpm-workspace.yaml | 10 +- scripts/buildAndroidRelease.sh | 67 + src/Splash.tsx | 61 +- src/analytics/features/index.ts | 2 +- src/components/ContextMenu/index.tsx | 2 - src/components/DraggableList/index.tsx | 21 +- src/components/GlassView.tsx | 2 + src/components/InterestTabs.tsx | 75 +- src/components/Layout/index.tsx | 108 +- .../pager/ImageItem/ImageItem.android.tsx | 6 +- .../pager/ImageItem/ImageItem.ios.tsx | 18 +- src/components/Lightbox/pager/ImagePager.tsx | 5 +- src/components/Lightbox/types.ts | 3 +- src/components/Pills.tsx | 1 + src/components/Post/Embed/ImageEmbed.tsx | 4 +- src/components/ProgressGuide/Toast.tsx | 10 +- src/components/dms/MessageItem.tsx | 3 +- src/components/forms/TextField.tsx | 5 - .../__tests__/persisted-query-storage.test.ts | 2 +- src/lib/custom-animations/LikeIcon.tsx | 2 + .../Messages/components/MessagesList.tsx | 15 +- src/screens/Profile/Sections/Feed.tsx | 5 +- .../modules/ExploreSuggestedAccounts.tsx | 39 +- src/screens/Settings/AppearanceSettings.tsx | 6 +- src/state/shell/minimal-mode.tsx | 2 + src/storage/__tests__/index.test.ts | 2 +- src/storage/archive/db/index.ts | 2 +- src/storage/index.ts | 2 +- src/view/com/auth/SplashScreen.tsx | 6 +- src/view/com/composer/Composer.tsx | 5 +- .../com/composer/text-input/TextInput.tsx | 1 - src/view/com/posts/PostFeed.tsx | 40 +- src/view/com/util/MainScrollProvider.tsx | 2 + src/view/screens/Home.tsx | 12 +- src/view/screens/Profile.tsx | 20 +- src/view/shell/BlockDrawerGesture.tsx | 5 + 72 files changed, 2776 insertions(+), 1596 deletions(-) create mode 100644 modules/bottom-sheet/ios/SurfaceTouchHandler.h delete mode 100644 modules/expo-scroll-forwarder/README.md delete mode 100644 modules/expo-scroll-forwarder/expo-module.config.json delete mode 100644 modules/expo-scroll-forwarder/index.ts delete mode 100644 modules/expo-scroll-forwarder/ios/ExpoScrollForwarder.podspec delete mode 100644 modules/expo-scroll-forwarder/ios/ExpoScrollForwarderModule.swift delete mode 100644 modules/expo-scroll-forwarder/ios/ExpoScrollForwarderView.swift delete mode 100644 modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts delete mode 100644 modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx delete mode 100644 modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx create mode 100644 modules/react-native-scroll-forwarder/ScrollForwarder.podspec create mode 100644 modules/react-native-scroll-forwarder/ios/ScrollForwarderView.h create mode 100644 modules/react-native-scroll-forwarder/ios/ScrollForwarderView.mm create mode 100644 modules/react-native-scroll-forwarder/package.json create mode 100644 modules/react-native-scroll-forwarder/src/ScrollForwarderView.ios.tsx create mode 100644 modules/react-native-scroll-forwarder/src/ScrollForwarderView.tsx create mode 100644 modules/react-native-scroll-forwarder/src/ScrollForwarderViewNativeComponent.ts create mode 100644 modules/react-native-scroll-forwarder/src/index.tsx delete mode 100644 patches/expo-glass-effect@55.0.8.patch delete mode 100644 patches/expo-glass-effect@55.0.8.patch.md create mode 100644 patches/react-native-gesture-handler.patch create mode 100644 patches/react-native-gesture-handler.patch.md delete mode 100644 patches/react-native-reanimated@3.19.1.patch create mode 100644 patches/react-native-reanimated@4.3.2.patch create mode 100644 patches/react-native-reanimated@4.3.2.patch.md delete mode 100644 patches/react-native-uitextview@1.4.0.patch create mode 100755 scripts/buildAndroidRelease.sh diff --git a/app.config.js b/app.config.js index afbf998019..79dd1dc619 100644 --- a/app.config.js +++ b/app.config.js @@ -55,7 +55,6 @@ module.exports = function (_config) { icon: './assets/app-icons/ios_icon_default_next.png', userInterfaceStyle: 'automatic', primaryColor: '#006AFF', - newArchEnabled: false, ios: { supportsTablet: false, bundleIdentifier: 'xyz.blueskyweb.app', diff --git a/babel.config.js b/babel.config.js index 24bdde26f2..1a11b2cb1f 100644 --- a/babel.config.js +++ b/babel.config.js @@ -29,7 +29,7 @@ module.exports = function (api) { }, }, ], - 'react-native-reanimated/plugin', // NOTE: this plugin MUST be last + 'react-native-worklets/plugin', // NOTE: this plugin MUST be last ], env: { production: { diff --git a/modules/bottom-sheet/ios/SheetView.swift b/modules/bottom-sheet/ios/SheetView.swift index 1c6e963aa8..856768f56b 100644 --- a/modules/bottom-sheet/ios/SheetView.swift +++ b/modules/bottom-sheet/ios/SheetView.swift @@ -6,7 +6,7 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate { // Views private var sheetVc: SheetViewController? private var innerView: UIView? - private var touchHandler: RCTTouchHandler? + private var touchHandler: RCTSurfaceTouchHandler? // Native content height observation (eliminates JS bridge round-trip) private var contentHeightObservation: NSKeyValueObservation? @@ -81,33 +81,37 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate { required init (appContext: AppContext? = nil) { super.init(appContext: appContext) self.maxHeight = Util.getScreenHeight() ?? UIScreen.main.bounds.height - self.touchHandler = RCTTouchHandler(bridge: appContext?.reactBridge) + self.touchHandler = RCTSurfaceTouchHandler() SheetManager.shared.add(self) } deinit { self.destroy() } + + override func mountChildComponentView( + _ childComponentView: UIView, + index: Int + ) { + self.innerView = childComponentView + touchHandler?.attach(to: childComponentView) + } + + override func unmountChildComponentView( + _ childComponentView: UIView, + index: Int + ) { + touchHandler?.detach(from: childComponentView) - // We don't want this view to actually get added to the tree, so we'll simply store it for adding - // to the SheetViewController - override func insertReactSubview(_ subview: UIView!, at atIndex: Int) { - self.touchHandler?.attach(to: subview) - self.innerView = subview + childComponentView.removeFromSuperview() + if self.innerView === childComponentView { + self.innerView = nil + } } // We'll grab the content height from here so we know the initial detent to set override func layoutSubviews() { super.layoutSubviews() - - guard let innerView = self.innerView else { - return - } - - if innerView.subviews.count != 1 { - return - } - self.present() } @@ -117,7 +121,10 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate { self.isClosing = false self.isOpen = false self.sheetVc = nil - self.touchHandler?.detach(from: self.innerView) + + if let innerView = self.innerView { + self.touchHandler?.detach(from: innerView) + } self.touchHandler = nil self.innerView = nil SheetManager.shared.remove(self) @@ -146,8 +153,7 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate { if #available(iOS 26.0, *), let tag = self.sourceViewTag, - let bridge = self.appContext?.reactBridge, - let sourceView = bridge.uiManager.view(forReactTag: NSNumber(value: tag)) { + let sourceView = self.appContext?.findView(withTag: tag, ofType: UIView.self) { sheetVc.preferredTransition = .zoom { _ in return sourceView } diff --git a/modules/bottom-sheet/ios/SurfaceTouchHandler.h b/modules/bottom-sheet/ios/SurfaceTouchHandler.h new file mode 100644 index 0000000000..784a5cbfba --- /dev/null +++ b/modules/bottom-sheet/ios/SurfaceTouchHandler.h @@ -0,0 +1,3 @@ +#if __has_include() +#import +#endif diff --git a/modules/expo-scroll-forwarder/README.md b/modules/expo-scroll-forwarder/README.md deleted file mode 100644 index 6b6b6e83e5..0000000000 --- a/modules/expo-scroll-forwarder/README.md +++ /dev/null @@ -1,116 +0,0 @@ -# expo-scroll-forwarder - -An Expo native module that forwards scroll gestures from a UIView to a UIScrollView on iOS. This enables custom scroll behaviors by allowing a non-scrollable view to control a scrollable view's scroll position. - -## What It Does - -This module solves a specific interaction problem: allowing a fixed header or overlay view to respond to scroll gestures and forward them to an underlying scroll view. The primary use case in the Bluesky app is the profile screen, where the profile header sits above a scrollable content area and can be dragged to scroll the content below it. - -Key behaviors: -- Captures pan gestures on a wrapper view and translates them to scroll offsets on a target scroll view -- Implements physics-based deceleration animations that match native scroll behavior -- Supports pull-to-refresh interactions with haptic feedback -- Prevents gesture conflicts with iOS swipe-back navigation by only activating on vertical pans -- Provides rubber-band damping when scrolling past content bounds - -## Architecture - -The module consists of three main parts: - -### 1. Native iOS Implementation (Swift) - -**ExpoScrollForwarderView.swift** - The core native view component that: -- Attaches a UIPanGestureRecognizer to intercept scroll gestures -- Finds and references the target RCTScrollView using its React Native tag -- Implements custom scroll physics including velocity-based decay animation -- Manages gesture recognizer delegation to prevent conflicts with system gestures -- Handles pull-to-refresh activation at -130pt scroll offset with haptic feedback - -**ExpoScrollForwarderModule.swift** - The Expo module definition that: -- Registers the view component with Expo -- Exposes the `scrollViewTag` prop to specify which scroll view to control - -### 2. TypeScript Interface - -**ExpoScrollForwarderView.tsx** - Platform-specific implementations: -- **iOS (.ios.tsx)**: Wraps the native view manager from expo-modules-core -- **Default (.tsx)**: No-op wrapper that just renders children (for Android/Web compatibility) - -**ExpoScrollForwarder.types.ts** - TypeScript type definitions: -- `scrollViewTag`: The React Native tag of the scroll view to control -- `children`: The content to render (typically a header component) - -### 3. Module Configuration - -**expo-module.config.json** - Declares iOS-only platform support - -**ExpoScrollForwarder.podspec** - CocoaPods specification for iOS dependency management - -## Usage - -```tsx -import {ExpoScrollForwarderView} from 'expo-scroll-forwarder' - -function ProfileScreen() { - const scrollViewTag = useRef(null) - - return ( - - - - - - - {/* Scrollable content */} - - - ) -} -``` - -The `scrollViewTag` prop must be the React Native tag (numeric identifier) of the target scroll view. The module uses this to locate the native UIScrollView instance. - -## Platform Support - -- **iOS**: Full native implementation with custom scroll physics -- **Android**: No-op wrapper (renders children without scroll forwarding) -- **Web**: No-op wrapper (renders children without scroll forwarding) - -The module is designed to enhance iOS UX while gracefully degrading on other platforms. - -## Key Implementation Details - -### Gesture Recognition -- Only activates when pan velocity is more vertical than horizontal (`abs(velocity.y) > abs(velocity.x)`) -- Delegates to UIGestureRecognizerDelegate to prevent simultaneous recognition with navigation swipe-back -- Adds tap/long-press recognizers to the scroll view to cancel ongoing animations - -### Scroll Physics -- Implements custom decay animation at 120fps using a Timer -- Velocity decay factor: 0.9875 per frame -- Velocity clamped to +/- 5000 points/second -- Rubber-band damping: offsets below 0 are reduced by 55% -- Animation stops when velocity drops below 5 points/second - -### Pull-to-Refresh -- Triggers at -130pt scroll offset -- Provides haptic feedback (UIImpactFeedbackGenerator, light style) -- Calls refresh control via `RCTRefreshControl.forwarderBeginRefreshing()` - -### Scroll View Management -- Dynamically finds scroll view using `AppContext.findView(withTag:ofType:)` -- Properly cleans up gesture recognizers when switching between scroll views -- Maintains references to both the scroll view and its refresh control - -## Files Overview - -| File | Purpose | -|------|---------| -| `ios/ExpoScrollForwarderView.swift` | Native iOS view implementation with gesture handling and scroll physics | -| `ios/ExpoScrollForwarderModule.swift` | Expo module registration and prop definitions | -| `ios/ExpoScrollForwarder.podspec` | CocoaPods dependency specification | -| `src/ExpoScrollForwarderView.ios.tsx` | TypeScript wrapper for iOS native view | -| `src/ExpoScrollForwarderView.tsx` | Default no-op implementation for other platforms | -| `src/ExpoScrollForwarder.types.ts` | TypeScript type definitions | -| `index.ts` | Module entry point | -| `expo-module.config.json` | Expo module configuration | diff --git a/modules/expo-scroll-forwarder/expo-module.config.json b/modules/expo-scroll-forwarder/expo-module.config.json deleted file mode 100644 index 1fd49f79b7..0000000000 --- a/modules/expo-scroll-forwarder/expo-module.config.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "platforms": ["ios"], - "ios": { - "modules": ["ExpoScrollForwarderModule"] - } -} diff --git a/modules/expo-scroll-forwarder/index.ts b/modules/expo-scroll-forwarder/index.ts deleted file mode 100644 index a4ad4b8506..0000000000 --- a/modules/expo-scroll-forwarder/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {ExpoScrollForwarderView} from './src/ExpoScrollForwarderView' diff --git a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarder.podspec b/modules/expo-scroll-forwarder/ios/ExpoScrollForwarder.podspec deleted file mode 100644 index 78ca9812e4..0000000000 --- a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarder.podspec +++ /dev/null @@ -1,21 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'ExpoScrollForwarder' - s.version = '1.0.0' - s.summary = 'Forward scroll gesture from UIView to UIScrollView' - s.description = 'Forward scroll gesture from UIView to UIScrollView' - s.author = 'bluesky-social' - s.homepage = 'https://github.com/bluesky-social/social-app' - s.platforms = { :ios => '13.4', :tvos => '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-scroll-forwarder/ios/ExpoScrollForwarderModule.swift b/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderModule.swift deleted file mode 100644 index 53e2588258..0000000000 --- a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderModule.swift +++ /dev/null @@ -1,13 +0,0 @@ -import ExpoModulesCore - -public class ExpoScrollForwarderModule: Module { - public func definition() -> ModuleDefinition { - Name("ExpoScrollForwarder") - - View(ExpoScrollForwarderView.self) { - Prop("scrollViewTag") { (view: ExpoScrollForwarderView, prop: Int) in - view.scrollViewTag = prop - } - } - } -} diff --git a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderView.swift b/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderView.swift deleted file mode 100644 index 738c8b5cda..0000000000 --- a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderView.swift +++ /dev/null @@ -1,214 +0,0 @@ -import ExpoModulesCore -import React - -// This view will be used as a native component. Make sure to inherit from `ExpoView` -// to apply the proper styling (e.g. border radius and shadows). -class ExpoScrollForwarderView: ExpoView, UIGestureRecognizerDelegate { - var scrollViewTag: Int? { - didSet { - self.tryFindScrollView() - } - } - - private var rctScrollView: RCTScrollView? - private var rctRefreshCtrl: RCTRefreshControl? - private var cancelGestureRecognizers: [UIGestureRecognizer]? - private var animTimer: Timer? - private var initialOffset: CGFloat = 0.0 - private var didImpact: Bool = false - - required init(appContext: AppContext? = nil) { - super.init(appContext: appContext) - - let pg = UIPanGestureRecognizer(target: self, action: #selector(callOnPan(_:))) - pg.delegate = self - self.addGestureRecognizer(pg) - - let tg = UITapGestureRecognizer(target: self, action: #selector(callOnPress(_:))) - tg.isEnabled = false - tg.delegate = self - - let lpg = UILongPressGestureRecognizer(target: self, action: #selector(callOnPress(_:))) - lpg.minimumPressDuration = 0.01 - lpg.isEnabled = false - lpg.delegate = self - - self.cancelGestureRecognizers = [lpg, tg] - } - - // We don't want to recognize the scroll pan gesture and the swipe back gesture together - func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool { - if gestureRecognizer is UIPanGestureRecognizer, otherGestureRecognizer is UIPanGestureRecognizer { - return false - } - - return true - } - - // We only want the "scroll" gesture to happen whenever the pan is vertical, otherwise it will - // interfere with the native swipe back gesture. - override func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool { - guard let gestureRecognizer = gestureRecognizer as? UIPanGestureRecognizer else { - return true - } - - let velocity = gestureRecognizer.velocity(in: self) - return abs(velocity.y) > abs(velocity.x) - } - - // This will be used to cancel the scroll animation whenever we tap inside of the header. We don't need another - // recognizer for this one. - override func touchesBegan(_ touches: Set, with event: UIEvent?) { - self.stopTimer() - } - - // This will be used to cancel the animation whenever we press inside of the scroll view. We don't want to change - // the scroll view gesture's delegate, so we add an additional recognizer to detect this. - @IBAction func callOnPress(_ sender: UITapGestureRecognizer) { - self.stopTimer() - } - - @IBAction func callOnPan(_ sender: UIPanGestureRecognizer) { - guard let rctsv = self.rctScrollView, let sv = rctsv.scrollView else { - return - } - - let translation = sender.translation(in: self).y - - if sender.state == .began { - if sv.contentOffset.y < 0 { - sv.contentOffset.y = 0 - } - - self.initialOffset = sv.contentOffset.y - } - - if sender.state == .changed { - sv.contentOffset.y = self.dampenOffset(-translation + self.initialOffset) - - if sv.contentOffset.y <= -130, !didImpact { - let generator = UIImpactFeedbackGenerator(style: .light) - generator.impactOccurred() - - self.didImpact = true - } - } - - if sender.state == .ended { - let velocity = sender.velocity(in: self).y - self.didImpact = false - - if sv.contentOffset.y <= -130 { - self.rctRefreshCtrl?.forwarderBeginRefreshing() - return - } - - // A check for a velocity under 250 prevents animations from occurring when they wouldn't in a normal - // scroll view - if abs(velocity) < 250, sv.contentOffset.y >= 0 { - return - } - - self.startDecayAnimation(translation, velocity) - } - } - - func startDecayAnimation(_ translation: CGFloat, _ velocity: CGFloat) { - guard let sv = self.rctScrollView?.scrollView else { - return - } - - var velocity = velocity - - self.enableCancelGestureRecognizers() - - if velocity > 0 { - velocity = min(velocity, 5000) - } else { - velocity = max(velocity, -5000) - } - - var animTranslation = -translation - self.animTimer = Timer.scheduledTimer(withTimeInterval: 1.0 / 120, repeats: true) { _ in - velocity *= 0.9875 - animTranslation = (-velocity / 120) + animTranslation - - let nextOffset = self.dampenOffset(animTranslation + self.initialOffset) - - if nextOffset <= 0 { - if self.initialOffset <= 1 { - self.scrollToOffset(0) - } else { - sv.contentOffset.y = 0 - } - - self.stopTimer() - return - } else { - sv.contentOffset.y = nextOffset - } - - if abs(velocity) < 5 { - self.stopTimer() - } - } - } - - func dampenOffset(_ offset: CGFloat) -> CGFloat { - if offset < 0 { - return offset - (offset * 0.55) - } - - return offset - } - - func tryFindScrollView() { - guard let scrollViewTag = scrollViewTag else { - return - } - - // Before we switch to a different scrollview, we always want to remove the cancel gesture recognizer. - // Otherwise we might end up with duplicates when we switch back to that scrollview. - self.removeCancelGestureRecognizers() - - self.rctScrollView = self.appContext? - .findView(withTag: scrollViewTag, ofType: RCTScrollView.self) - self.rctRefreshCtrl = self.rctScrollView?.scrollView.refreshControl as? RCTRefreshControl - - self.addCancelGestureRecognizers() - } - - func addCancelGestureRecognizers() { - self.cancelGestureRecognizers?.forEach { r in - self.rctScrollView?.scrollView?.addGestureRecognizer(r) - } - } - - func removeCancelGestureRecognizers() { - self.cancelGestureRecognizers?.forEach { r in - self.rctScrollView?.scrollView?.removeGestureRecognizer(r) - } - } - - func enableCancelGestureRecognizers() { - self.cancelGestureRecognizers?.forEach { r in - r.isEnabled = true - } - } - - func disableCancelGestureRecognizers() { - self.cancelGestureRecognizers?.forEach { r in - r.isEnabled = false - } - } - - func scrollToOffset(_ offset: Int, animated: Bool = true) { - self.rctScrollView?.scroll(toOffset: CGPoint(x: 0, y: offset), animated: animated) - } - - func stopTimer() { - self.disableCancelGestureRecognizers() - self.animTimer?.invalidate() - self.animTimer = nil - } -} diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts b/modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts deleted file mode 100644 index 3f1e4a63da..0000000000 --- a/modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts +++ /dev/null @@ -1,4 +0,0 @@ -export interface ExpoScrollForwarderViewProps { - scrollViewTag: number | null - children: React.ReactNode -} diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx deleted file mode 100644 index 18bdb25c8a..0000000000 --- a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import {requireNativeViewManager} from 'expo-modules-core' - -import {type ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types' - -const NativeView: React.ComponentType = - requireNativeViewManager('ExpoScrollForwarder') - -export function ExpoScrollForwarderView({ - children, - ...rest -}: ExpoScrollForwarderViewProps) { - return {children} -} diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx deleted file mode 100644 index d66eef7cbd..0000000000 --- a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import {type ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types' - -export function ExpoScrollForwarderView({ - children, -}: React.PropsWithChildren) { - return children -} diff --git a/modules/react-native-scroll-forwarder/ScrollForwarder.podspec b/modules/react-native-scroll-forwarder/ScrollForwarder.podspec new file mode 100644 index 0000000000..137aea92b8 --- /dev/null +++ b/modules/react-native-scroll-forwarder/ScrollForwarder.podspec @@ -0,0 +1,20 @@ +require "json" + +package = JSON.parse(File.read(File.join(__dir__, "package.json"))) + +Pod::Spec.new do |s| + s.name = "ScrollForwarder" + s.version = package["version"] + s.summary = package["description"] + s.homepage = package["homepage"] + s.license = package["license"] + s.authors = package["author"] + + s.platforms = { :ios => min_ios_version_supported } + s.source = { :git => ".git", :tag => "#{s.version}" } + + s.source_files = "ios/**/*.{h,m,mm,cpp}" + s.private_header_files = "ios/**/*.h" + + install_modules_dependencies(s) +end diff --git a/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.h b/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.h new file mode 100644 index 0000000000..3b3b4898ab --- /dev/null +++ b/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.h @@ -0,0 +1,14 @@ +#import +#import + +#ifndef ScrollForwarderViewNativeComponent_h +#define ScrollForwarderViewNativeComponent_h + +NS_ASSUME_NONNULL_BEGIN + +@interface ScrollForwarderView : RCTViewComponentView +@end + +NS_ASSUME_NONNULL_END + +#endif /* ScrollForwarderViewNativeComponent_h */ diff --git a/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.mm b/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.mm new file mode 100644 index 0000000000..840cd04ff3 --- /dev/null +++ b/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.mm @@ -0,0 +1,411 @@ +#import "ScrollForwarderView.h" + +#import +#import +#import +#import +#import +#import + +#import "RCTFabricComponentsPlugins.h" + +using namespace facebook::react; + +// How far down a pull needs to be to trigger a refresh +static const CGFloat kPullThreshold = 130.0; +static const CGFloat kDampingFactor = 0.55; +// The top speed that free scrolling can have +static const CGFloat kMaxVelocity = 5000.0; +// Free scrolling decay. This seems to be close to the default iOS value +static const CGFloat kVelocityDecay = 0.9875; +// What scroll release velocity will actually trigger free scrolling +static const CGFloat kMinimumVelocity = 5.0; + +@interface ScrollForwarderView () + +@end + +@implementation ScrollForwarderView { + NSArray * _cancelGestureRecognizers; + RCTScrollViewComponentView * _svcv; + CGPoint _initialOffset; + + CADisplayLink * _displayLink; + CGFloat _currentVelocity; + CGFloat _accumulatedTranslation; + + bool _didImpact; +} + ++ (ComponentDescriptorProvider)componentDescriptorProvider +{ + return concreteComponentDescriptorProvider(); +} + +- (instancetype)initWithFrame:(CGRect)frame +{ + if (self = [super initWithFrame:frame]) { + static const auto defaultProps = std::make_shared(); + _props = defaultProps; + + UIPanGestureRecognizer *pg = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)]; + pg.delegate = self; + pg.cancelsTouchesInView = false; + [self addGestureRecognizer:pg]; + + UITapGestureRecognizer *tg = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)]; + [tg setEnabled:false]; + tg.delegate = self; + + UILongPressGestureRecognizer *lpg = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)]; + [lpg setMinimumPressDuration:0.01]; + [lpg setEnabled:false]; + lpg.delegate = self; + + NSArray *cancelGestureRecognizers = [NSArray arrayWithObjects:lpg, tg, nil]; + _cancelGestureRecognizers = cancelGestureRecognizers; + } + + return self; +} + +// MARK: - Lifecycle + +- (void)dealloc +{ + [self stopAnimation]; + [self removeCancelGestureRecognizers]; + _svcv = nil; + + for (UIGestureRecognizer *gr in _cancelGestureRecognizers) { + gr.delegate = nil; + } +} + +- (void)prepareForRecycle +{ + [super prepareForRecycle]; + [self stopAnimation]; + [self removeCancelGestureRecognizers]; + _svcv = nil; +} + +// MARK: - Props + +- (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &)oldProps +{ + const auto &oldViewProps = *std::static_pointer_cast(_props); + const auto &newViewProps = *std::static_pointer_cast(props); + + if (oldViewProps.scrollViewTag != newViewProps.scrollViewTag) { + [self tryFindScrollView]; + } + + if (oldViewProps.refreshing != newViewProps.refreshing) { + if (!newViewProps.refreshing) { + [self endRefreshing]; + } + } + + [super updateProps:props oldProps:oldProps]; +} + +// MARK: - UIGestureRecognizerDelegate + +- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer +{ + if ([gestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]] && [otherGestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]]) { + return NO; + } + + return YES; +} + +- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer +{ + if (![gestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]]) { + return YES; + } + + UIPanGestureRecognizer *pg = (UIPanGestureRecognizer *)gestureRecognizer; + CGPoint velocity = [pg velocityInView:self]; + + return fabs(velocity.y) > fabs(velocity.x); +} + +- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event +{ + [self stopAnimation]; + [super touchesBegan:touches withEvent:event]; +} + +// MARK: - Scroll Forwarding + +- (void)removeCancelGestureRecognizers +{ + if (!_svcv) return; + for (UIGestureRecognizer *gr in _cancelGestureRecognizers) { + [_svcv.scrollView removeGestureRecognizer:gr]; + } +} + +- (void)addCancelGestureRecognizers +{ + if (!_svcv) return; + for (UIGestureRecognizer *gr in _cancelGestureRecognizers) { + [_svcv.scrollView addGestureRecognizer:gr]; + } +} + +- (void)enableCancelGestureRecognizers +{ + for (UIGestureRecognizer *gr in _cancelGestureRecognizers) { + [gr setEnabled:true]; + } +} + +- (void)disableCancelGestureRecognizers +{ + for (UIGestureRecognizer *gr in _cancelGestureRecognizers) { + [gr setEnabled:false]; + } +} + +- (void)scrollToOffset:(CGPoint)offset animated:(bool)animated +{ + if (!_svcv) return; + [_svcv scrollToOffset:offset animated:animated]; +} + +- (void)stopAnimation +{ + [self disableCancelGestureRecognizers]; + [_displayLink invalidate]; + _displayLink = nil; +} + +- (void)handlePan:(UIPanGestureRecognizer *)gesture { + if (!_svcv) return; + + UIScrollView *sv = _svcv.scrollView; + + CGPoint translation = [gesture translationInView:self]; + + if (gesture.state == UIGestureRecognizerStateBegan) { + _didImpact = false; + + if (sv.contentOffset.y < 0) { + CGPoint newOffset = CGPointMake(sv.contentOffset.x, 0); + sv.contentOffset = newOffset; + } + + _initialOffset = sv.contentOffset; + } + + if (gesture.state == UIGestureRecognizerStateChanged) { + CGPoint newOffset = CGPointMake(sv.contentOffset.x, [self dampenOffset:(-translation.y + _initialOffset.y)]); + sv.contentOffset = newOffset; + + if (sv.contentOffset.y <= -kPullThreshold && !_didImpact) { + UIImpactFeedbackGenerator *generator = [[UIImpactFeedbackGenerator alloc] initWithStyle:UIImpactFeedbackStyleLight]; + [generator impactOccurred]; + _didImpact = true; + } + } + + if (gesture.state == UIGestureRecognizerStateEnded) { + CGPoint velocity = [gesture velocityInView:self]; + + if (sv.contentOffset.y <= -kPullThreshold) { + [self refresh]; + return; + } + + if (sv.contentOffset.y < 0) { + CGPoint newOffset = CGPointMake(sv.contentOffset.x, 0); + [self scrollToOffset:newOffset animated:true]; + return; + } + + if (abs(velocity.y) < 250 && sv.contentOffset.y >= 0) { + return; + } + + [self startDecayWithInitialTranslation:translation.y velocity:velocity.y]; + } +} + +- (CGFloat)dampenOffset:(CGFloat)offset +{ + if (offset < 0) { + return offset - (offset * kDampingFactor); + } + return offset; +} + +- (void)handleTap:(UITapGestureRecognizer *)gesture { + [self stopAnimation]; +} + +- (void)handleLongPress:(UILongPressGestureRecognizer *)gesture { + [self stopAnimation]; +} + +- (void)startDecayWithInitialTranslation:(CGFloat)translation velocity:(CGFloat)startVelocity +{ + if (!_svcv) return; + + startVelocity = MAX(-kMaxVelocity, MIN(kMaxVelocity, startVelocity)); + _currentVelocity = startVelocity; + _accumulatedTranslation = -translation; + + [self enableCancelGestureRecognizers]; + + [_displayLink invalidate]; + + CADisplayLink *link = [CADisplayLink displayLinkWithTarget:self selector:@selector(handleDecayStep:)]; + + link.preferredFramesPerSecond = 60; + [link addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes]; + _displayLink = link; +} + +- (void)handleDecayStep:(CADisplayLink *)link +{ + _currentVelocity *= kVelocityDecay; + + CGFloat delta = -_currentVelocity / link.preferredFramesPerSecond; + _accumulatedTranslation += delta; + + CGFloat rawY = _accumulatedTranslation + _initialOffset.y; + CGFloat nextY = rawY > 0 ? rawY : 0; + + CGPoint newOffset = CGPointMake( + _svcv.scrollView.contentOffset.x, + nextY + ); + _svcv.scrollView.contentOffset = newOffset; + + if (fabs(_currentVelocity) < kMinimumVelocity || nextY <= 0) { + [link invalidate]; + _displayLink = nil; + [self disableCancelGestureRecognizers]; + } +} + +/* + * We use this component on profile pages. The screne consists of a header component, a scrollview with buttons to + * switch between profile tabs, and a pager view (RNCPagerViewComponentView). Both the header and the tab bar are + * inside the same RCTViewComponentView. The view heirarchy looks something like this: + * - RCTViewComponentView + * -- RNCPagerViewComponentView + * ----- (Many views deep) RCTScrollViewComponentView + * ------ RCTEnhancedScrollView + * -- RCTViewComponentView + * --- RCTViewComponentView + * ---- ScrollForwarderView + * --- RCTScrollViewComponentView + * ---- RCTEnhancedScrollView + * + * We want to find that RCTScrollViewComponentView inside of the RNCPagerViewComponentView. To achieve this, we can + * use self.superview.superview.superview to get to the root RCTViewComponentView, find the RNCPagerViewComponentView, + * then iterate through that view's subviews until we find a RCTScrollViewComponentView. + * + * This isn't great, because if we reorder the React components, we'll need to update this logic. There's probably + * an easier way to achieve this, similar to how we used to do it in Paper (ie, get the scroll view's tag and find that), + * but this also comes with some benefits, eg being able to reduce a lot of the logic in the JS code and just find the + * scrollview when subviews change. + */ +- (void)tryFindScrollView +{ + [self removeCancelGestureRecognizers]; + + // The root RCTViewComponentView + UIView *rootView = self.superview.superview.superview; + UIView *pagerView; + + NSString *targetClsName = @"RNCPagerViewComponentView"; + Class targetCls = NSClassFromString(targetClsName); + + for (UIView *subview in rootView.subviews) { + if ([subview isKindOfClass:targetCls]) { + pagerView = subview; + break; + } + } + + if (!pagerView) return; + + RCTScrollViewComponentView *svcv = [self findRTCScrollViewComponentViewInView:pagerView]; + + if (!svcv) return; + + _svcv = svcv; + [self addCancelGestureRecognizers]; +} + +- (RCTScrollViewComponentView *)findRTCScrollViewComponentViewInView:(UIView *)view +{ + for (UIView *subview in view.subviews) { + if ([subview isKindOfClass:[RCTScrollViewComponentView class]]) { + RCTScrollViewComponentView *svcv = (RCTScrollViewComponentView *) subview; + return svcv; + } + + RCTScrollViewComponentView *svcv = [self findRTCScrollViewComponentViewInView:subview]; + if (svcv) return svcv; + } + return nil; +} + +- (UIRefreshControl *)refreshContorl +{ + if (!_svcv) return nil; + return _svcv.scrollView.refreshControl; +} + +- (void)refresh +{ + __weak ScrollForwarderView *weakSelf = self; + + [_svcv.scrollView.refreshControl beginRefreshing]; + + [UIView animateWithDuration:0.3 + delay:0 + options:UIViewAnimationOptionBeginFromCurrentState + animations:^(void) { + if (!weakSelf) return; + + __strong ScrollForwarderView *self = weakSelf; + + // Whenever we call this method, the scrollview will always be at a position of + // -130 or less. Scrolling back to -80 simulates the default behavior of RCTRefreshControl + [self->_svcv.scrollView setContentOffset:CGPointMake(0, -65)]; + } + completion:^(__unused BOOL finished) { + __strong ScrollForwarderView *self = weakSelf; + + if (self->_eventEmitter != nullptr) { + std::dynamic_pointer_cast(self->_eventEmitter) + ->onRefresh(facebook::react::ScrollForwarderViewEventEmitter::OnRefresh{}); + } + } + ]; +} + +- (void)endRefreshing +{ + UIRefreshControl *rc = [self refreshContorl]; + + CGPoint newOffset = CGPointMake(_svcv.scrollView.contentOffset.x, 0.0); + [self scrollToOffset:newOffset animated:true]; + + [rc endRefreshing]; +} + +Class ScrollForwarderViewCls(void) +{ + return ScrollForwarderView.class; +} + +@end diff --git a/modules/react-native-scroll-forwarder/package.json b/modules/react-native-scroll-forwarder/package.json new file mode 100644 index 0000000000..735eefd26f --- /dev/null +++ b/modules/react-native-scroll-forwarder/package.json @@ -0,0 +1,27 @@ +{ + "name": "react-native-scroll-forwarder", + "version": "0.0.0", + "description": "Scroll forwarder module for Bluesky profile headers", + "main": "src/index", + "codegenConfig": { + "name": "ScrollForwarderViewSpec", + "type": "all", + "jsSrcsDir": "src", + "ios": { + "componentProvider": { + "ScrollForwarderView": "ScrollForwarderView" + } + } + }, + "peerDependencies": { + "react-native": "*" + }, + "author": "Hailey ", + "license": "MIT", + "homepage": "#readme", + "create-react-native-library": { + "languages": "kotlin-objc", + "type": "fabric-view", + "version": "0.50.2" + } +} diff --git a/modules/react-native-scroll-forwarder/src/ScrollForwarderView.ios.tsx b/modules/react-native-scroll-forwarder/src/ScrollForwarderView.ios.tsx new file mode 100644 index 0000000000..497112ad11 --- /dev/null +++ b/modules/react-native-scroll-forwarder/src/ScrollForwarderView.ios.tsx @@ -0,0 +1,12 @@ +import { + default as NativeScrollForwarderView, + type NativeProps, +} from './ScrollForwarderViewNativeComponent' + +export function ScrollForwarderView({children, ...rest}: NativeProps) { + return ( + + {children} + + ) +} diff --git a/modules/react-native-scroll-forwarder/src/ScrollForwarderView.tsx b/modules/react-native-scroll-forwarder/src/ScrollForwarderView.tsx new file mode 100644 index 0000000000..315605aae5 --- /dev/null +++ b/modules/react-native-scroll-forwarder/src/ScrollForwarderView.tsx @@ -0,0 +1,5 @@ +import {type NativeProps} from './ScrollForwarderViewNativeComponent' + +export function ScrollForwarderView({children}: NativeProps) { + return children +} diff --git a/modules/react-native-scroll-forwarder/src/ScrollForwarderViewNativeComponent.ts b/modules/react-native-scroll-forwarder/src/ScrollForwarderViewNativeComponent.ts new file mode 100644 index 0000000000..48ac4f5be7 --- /dev/null +++ b/modules/react-native-scroll-forwarder/src/ScrollForwarderViewNativeComponent.ts @@ -0,0 +1,15 @@ +import { + codegenNativeComponent, + type CodegenTypes, + type ViewProps, +} from 'react-native' + +type OnRefreshEvent = {} + +export interface NativeProps extends ViewProps { + scrollViewTag: CodegenTypes.Int32 | null + refreshing?: boolean + onRefresh?: CodegenTypes.BubblingEventHandler +} + +export default codegenNativeComponent('ScrollForwarderView') diff --git a/modules/react-native-scroll-forwarder/src/index.tsx b/modules/react-native-scroll-forwarder/src/index.tsx new file mode 100644 index 0000000000..2210e5d9f2 --- /dev/null +++ b/modules/react-native-scroll-forwarder/src/index.tsx @@ -0,0 +1,2 @@ +export {ScrollForwarderView} from './ScrollForwarderView' +export * from './ScrollForwarderViewNativeComponent' diff --git a/package.json b/package.json index 244c8f46b4..edfec97c0f 100644 --- a/package.json +++ b/package.json @@ -105,10 +105,9 @@ "@bsky.app/expo-dynamic-app-icon": "^1.8.5", "@bsky.app/expo-guess-language": "^0.2.8", "@bsky.app/expo-image-crop-tool": "^0.5.1", - "@bsky.app/expo-scroll-edge-effect": "^0.1.4", + "@bsky.app/expo-scroll-edge-effect": "^0.1.9", "@bsky.app/expo-translate-text": "^0.2.9", "@bsky.app/peek-menu": "^0.3.1", - "@bsky.app/react-native-mmkv": "2.12.5", "@bsky.app/sift": "^0.3.9", "@bsky.app/tapper": "^0.6.1", "@bsky.app/video": "0.3.6", @@ -158,7 +157,7 @@ "emoji-mart": "^5.6.0", "emoji-regex": "^10.4.0", "eventemitter3": "^5.0.1", - "expo": "54.0.34", + "expo": "54.0.35", "expo-age-range": "0.2.18", "expo-application": "~7.0.8", "expo-asset": "~12.0.13", @@ -171,7 +170,7 @@ "expo-device": "~8.0.10", "expo-file-system": "~19.0.21", "expo-font": "~14.0.11", - "expo-glass-effect": "55.0.8", + "expo-glass-effect": "0.1.10", "expo-haptics": "~15.0.8", "expo-image": "~3.0.11", "expo-image-manipulator": "~14.0.8", @@ -185,7 +184,7 @@ "expo-media-library": "~18.2.1", "expo-notifications": "~0.32.17", "expo-paste-input": "^0.2.1", - "expo-privacy-sensitive": "^0.1.0", + "expo-privacy-sensitive": "^0.2.0", "expo-screen-orientation": "~9.0.8", "expo-sharing": "~14.0.8", "expo-sms": "^14.0.7", @@ -227,21 +226,24 @@ "react-native-device-attest": "^0.1.6", "react-native-drawer-layout": "^4.2.3", "react-native-edge-to-edge": "^1.8.1", - "react-native-gesture-handler": "~2.28.0", + "react-native-gesture-handler": "~2.30.0", "react-native-keyboard-controller": "^1.21.8", + "react-native-mmkv": "^3.3.3", "react-native-pager-view": "6.8.0", "react-native-progress": "bluesky-social/react-native-progress", "react-native-qrcode-styled": "^0.3.3", - "react-native-reanimated": "3.19.1", + "react-native-reanimated": "~4.3.2", "react-native-safe-area-context": "~5.6.0", "react-native-screens": "4.24.0", + "react-native-scroll-forwarder": "link:./modules/react-native-scroll-forwarder", "react-native-svg": "15.12.1", - "react-native-uitextview": "^1.4.0", + "react-native-uitextview": "^2.2.0", "react-native-uuid": "^2.0.3", "react-native-view-shot": "^4.0.3", "react-native-web": "^0.21.0", "react-native-web-webview": "^1.0.2", "react-native-webview": "^13.15.0", + "react-native-worklets": "0.8.3", "react-remove-scroll-bar": "^2.3.8", "react-responsive": "^10.0.1", "react-textarea-autosize": "^8.5.3", diff --git a/patches/expo-glass-effect@55.0.8.patch b/patches/expo-glass-effect@55.0.8.patch deleted file mode 100644 index b793fe04d4..0000000000 --- a/patches/expo-glass-effect@55.0.8.patch +++ /dev/null @@ -1,60 +0,0 @@ -diff --git a/ios/GlassContainer.swift b/ios/GlassContainer.swift -index 61fb67cdfa2022f57524ddde05096067055e9ee6..b2d111ef8a724b8e7d4404f3d40efce3bd6fbb6d 100644 ---- a/ios/GlassContainer.swift -+++ b/ios/GlassContainer.swift -@@ -1,6 +1,7 @@ - // Copyright 2022-present 650 Industries. All rights reserved. - - import ExpoModulesCore -+import React - - public final class GlassContainer: ExpoView { - private var containerEffect: Any? -@@ -46,11 +47,19 @@ public final class GlassContainer: ExpoView { - } - } - -- public override func mountChildComponentView(_ childComponentView: UIView, index: Int) { -+ // Paper: redirect children into the container effect's contentView -+ public override func didUpdateReactSubviews() { -+ for subview in self.reactSubviews() { -+ containerEffectView.contentView.addSubview(subview) -+ } -+ } -+ -+ // Fabric: redirect children into the container effect's contentView -+ @objc public func mountChildComponentView(_ childComponentView: UIView, index: Int) { - containerEffectView.contentView.insertSubview(childComponentView, at: index) - } - -- public override func unmountChildComponentView(_ childComponentView: UIView, index: Int) { -+ @objc public func unmountChildComponentView(_ childComponentView: UIView, index: Int) { - childComponentView.removeFromSuperview() - } - } -diff --git a/ios/GlassView.swift b/ios/GlassView.swift -index 35cd8f320009a9e28fdbb2f55cc409734ba98f40..9587306b6fac3455ab27a5289eb62a711aa50c03 100644 ---- a/ios/GlassView.swift -+++ b/ios/GlassView.swift -@@ -271,11 +271,19 @@ public final class GlassView: ExpoView { - #endif - } - } -- public override func mountChildComponentView(_ childComponentView: UIView, index: Int) { -+ // Paper: redirect children into the glass effect's contentView -+ public override func didUpdateReactSubviews() { -+ for subview in self.reactSubviews() { -+ glassEffectView.contentView.addSubview(subview) -+ } -+ } -+ -+ // Fabric: redirect children into the glass effect's contentView -+ @objc public func mountChildComponentView(_ childComponentView: UIView, index: Int) { - glassEffectView.contentView.insertSubview(childComponentView, at: index) - } - -- public override func unmountChildComponentView(_ childComponentView: UIView, index: Int) { -+ @objc public func unmountChildComponentView(_ childComponentView: UIView, index: Int) { - childComponentView.removeFromSuperview() - } - } diff --git a/patches/expo-glass-effect@55.0.8.patch.md b/patches/expo-glass-effect@55.0.8.patch.md deleted file mode 100644 index ab668c78ff..0000000000 --- a/patches/expo-glass-effect@55.0.8.patch.md +++ /dev/null @@ -1,3 +0,0 @@ -# expo-glass-effect patch - -Patches in support for Expo SDK 54. Please delete when we update Expo diff --git a/patches/react-native-date-picker@5.0.13.patch b/patches/react-native-date-picker@5.0.13.patch index c6c0ccba72..494cdb9320 100644 --- a/patches/react-native-date-picker@5.0.13.patch +++ b/patches/react-native-date-picker@5.0.13.patch @@ -15,3 +15,17 @@ index 480746eb7acfbe86f67547d9e1de7a5be4d5faf2..13d30cb547195993dfcb4005cc0d248d #endif - +diff --git a/package.json b/package.json +index 469386dc2e81ded8994818dd4340409da1396488..36460e4e303ae56534c4d389471fc827433c7028 100644 +--- a/package.json ++++ b/package.json +@@ -70,9 +70,6 @@ + "ios": { + "componentProvider": { + "RNDatePicker": "RNDatePicker" +- }, +- "modulesProvider": { +- "RNDatePicker": "RNDatePickerManager" + } + } + } diff --git a/patches/react-native-gesture-handler.patch b/patches/react-native-gesture-handler.patch new file mode 100644 index 0000000000..b8a22cf6a5 --- /dev/null +++ b/patches/react-native-gesture-handler.patch @@ -0,0 +1,31 @@ +diff --git a/apple/RNGestureHandler.mm b/apple/RNGestureHandler.mm +index c4f760c41a9965245edcfa5e7cb781f8d2c7b66a..bf7d1fb092e22cbcedf787e606876e533879f810 100644 +--- a/apple/RNGestureHandler.mm ++++ b/apple/RNGestureHandler.mm +@@ -470,15 +470,19 @@ + (RNGestureHandler *)findGestureHandlerByRecognizer:(UIGestureRecognizer *)reco + + // We may try to extract "DummyGestureHandler" in case when "otherGestureRecognizer" belongs to + // a native view being wrapped with "NativeViewGestureHandler" +- RNGHUIView *reactView = recognizer.view; +- while (reactView != nil && reactView.reactTag == nil) { +- reactView = reactView.superview; +- } ++ RNGHUIView *view = recognizer.view; ++ while (view != nil) { ++ for (UIGestureRecognizer *candidateRecognizer in view.gestureRecognizers) { ++ if ([candidateRecognizer isKindOfClass:[RNDummyGestureRecognizer class]]) { ++ return candidateRecognizer.gestureHandler; ++ } ++ } + +- for (UIGestureRecognizer *recognizer in reactView.gestureRecognizers) { +- if ([recognizer isKindOfClass:[RNDummyGestureRecognizer class]]) { +- return recognizer.gestureHandler; ++ if ([view isKindOfClass:[RCTViewComponentView class]]) { ++ return nil; + } ++ ++ view = view.superview; + } + + return nil; diff --git a/patches/react-native-gesture-handler.patch.md b/patches/react-native-gesture-handler.patch.md new file mode 100644 index 0000000000..557823a23b --- /dev/null +++ b/patches/react-native-gesture-handler.patch.md @@ -0,0 +1,5 @@ +# react-native-gesture-handler.patch + +Updated `findGestureHandlerByRecognizer:` in `apple/RNGestureHandler.mm` to the version from RN GH 2.32.0 + +This fixes `UIContextMenuInteraction` from `ExpoBlueskyPeekMenuView.swift`. https://github.com/software-mansion/react-native-gesture-handler/commit/fba4dcc06d71dce08b10b2afc738a2af5b01e86a diff --git a/patches/react-native-pager-view@6.8.0.patch b/patches/react-native-pager-view@6.8.0.patch index 4444e60985..cc3968ac89 100644 --- a/patches/react-native-pager-view@6.8.0.patch +++ b/patches/react-native-pager-view@6.8.0.patch @@ -1,3 +1,129 @@ +diff --git a/ios/Fabric/RNCPagerViewComponentView.mm b/ios/Fabric/RNCPagerViewComponentView.mm +index 652a5c123100e7010011f07649517aa9e0cbc554..efbc3af622c4fee8267a78144b906c7b5de7859c 100644 +--- a/ios/Fabric/RNCPagerViewComponentView.mm ++++ b/ios/Fabric/RNCPagerViewComponentView.mm +@@ -90,6 +90,62 @@ - (void)willMoveToSuperview:(UIView *)newSuperview { + } + } + ++/* ++ * UIKit resolves several behaviors (status-bar-tap scroll-to-top, safe area ++ * propagation, appearance callbacks) by walking parentViewController from a ++ * view's nearest view controller up to the window's root view controller. ++ * The Paper implementation embeds the UIPageViewController into that chain ++ * via reactAddControllerToClosestParent:, but this Fabric implementation ++ * leaves it orphaned (parentViewController == nil), which among other things ++ * makes UIKit ignore every scroll view rendered inside the pager when ++ * handling the status bar scroll-to-top tap. Attach the page view controller ++ * to the nearest ancestor view controller to restore parity with Paper. ++ */ ++- (void)attachNativePageViewControllerToNearestParent { ++ if (_nativePageViewController == nil || ++ _nativePageViewController.parentViewController != nil) { ++ return; ++ } ++ UIResponder *responder = self.nextResponder; ++ while (responder != nil && ![responder isKindOfClass:[UIViewController class]]) { ++ responder = responder.nextResponder; ++ } ++ UIViewController *parent = (UIViewController *)responder; ++ if (parent == nil) { ++ return; ++ } ++ [parent addChildViewController:_nativePageViewController]; ++ [_nativePageViewController didMoveToParentViewController:parent]; ++} ++ ++- (void)detachNativePageViewControllerFromParent { ++ if (_nativePageViewController.parentViewController == nil) { ++ return; ++ } ++ [_nativePageViewController willMoveToParentViewController:nil]; ++ [_nativePageViewController removeFromParentViewController]; ++} ++ ++- (void)didMoveToWindow { ++ [super didMoveToWindow]; ++ if (self.window != nil) { ++ [self attachNativePageViewControllerToNearestParent]; ++ } ++} ++ ++- (void)layoutSubviews { ++ [super layoutSubviews]; ++ /* ++ * On the first didMoveToWindow the ancestor view controller may not be ++ * wired up yet (see callstack/react-native-pager-view#1089 for the same ++ * timing issue in v8), so retry here; the attach is a cheap no-op once ++ * the controller has a parent. ++ */ ++ if (self.window != nil) { ++ [self attachNativePageViewControllerToNearestParent]; ++ } ++} ++ + + #pragma mark - React API + +@@ -126,6 +182,13 @@ -(void)updateLayoutMetrics:(const facebook::react::LayoutMetrics &)layoutMetrics + + -(void)prepareForRecycle { + [super prepareForRecycle]; ++ /* ++ * Undo the child view controller relationship added in ++ * attachNativePageViewControllerToNearestParent, otherwise the parent ++ * view controller keeps the page view controller (and its subtree) alive ++ * after unmount. ++ */ ++ [self detachNativePageViewControllerFromParent]; + _nativePageViewController = nil; + _currentIndex = -1; + } +@@ -421,8 +484,44 @@ + (ComponentDescriptorProvider)componentDescriptorProvider + } + + ++/* ++ * Finds the navigation controller managing this pager via the responder ++ * chain, so the pager can cooperate with the controller's back gesture. ++ */ ++- (UINavigationController *)nearestNavigationController { ++ UIResponder *responder = self.nextResponder; ++ while (responder != nil) { ++ if ([responder isKindOfClass:[UINavigationController class]]) { ++ return (UINavigationController *)responder; ++ } ++ responder = responder.nextResponder; ++ } ++ return nil; ++} ++ + - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer { + ++ // iOS 26+ full-screen back gesture (interactiveContentPopGestureRecognizer) ++ if (@available(iOS 26.0, *)) { ++ if (gestureRecognizer == self.panGestureRecognizer && ++ otherGestureRecognizer != nil && ++ otherGestureRecognizer == [self nearestNavigationController].interactiveContentPopGestureRecognizer) { ++ UIPanGestureRecognizer* panGestureRecognizer = (UIPanGestureRecognizer*) gestureRecognizer; ++ CGPoint velocity = [panGestureRecognizer velocityInView:self]; ++ BOOL isLTR = [self isLtrLayout]; ++ BOOL isBackGesture = (isLTR && velocity.x > 0) || (!isLTR && velocity.x < 0); ++ ++ if (self.currentIndex == 0 && isBackGesture) { ++ scrollView.panGestureRecognizer.enabled = false; ++ } else { ++ const auto &viewProps = *std::static_pointer_cast(_props); ++ scrollView.panGestureRecognizer.enabled = viewProps.scrollEnabled; ++ } ++ ++ return YES; ++ } ++ } ++ + // Recognize simultaneously only if the other gesture is RN Screen's pan gesture (one that is used to perform fullScreenGestureEnabled) + if (gestureRecognizer == self.panGestureRecognizer && [NSStringFromClass([otherGestureRecognizer class]) isEqual: @"RNSPanGestureRecognizer"]) { + UIPanGestureRecognizer* panGestureRecognizer = (UIPanGestureRecognizer*) gestureRecognizer; diff --git a/ios/RNCPagerView.m b/ios/RNCPagerView.m index adfc7c6f2224b898a02319d352bb4fe11a18fd7e..939bb801c5b0ca6f93b77cb0507c19d137e08e77 100644 --- a/ios/RNCPagerView.m diff --git a/patches/react-native-pager-view@6.8.0.patch.md b/patches/react-native-pager-view@6.8.0.patch.md index fd22b8376e..9e99dc4a1c 100644 --- a/patches/react-native-pager-view@6.8.0.patch.md +++ b/patches/react-native-pager-view@6.8.0.patch.md @@ -6,6 +6,20 @@ The pager already handles `RNSPanGestureRecognizer` (react-native-screens' custo This patch adds the same logic for iOS 26's native `interactiveContentPopGestureRecognizer`, so the back gesture works on the leftmost page while the pager still handles swipes on other pages. +The fix is applied to both implementations: `ios/RNCPagerView.m` (Paper) and `ios/Fabric/RNCPagerViewComponentView.mm` (New Architecture). The Fabric variant finds the navigation controller via the responder chain (there is no `reactViewController` helper imported there) and reads `scrollEnabled` from the Fabric props. + Related issues: - https://github.com/software-mansion/react-native-screens/issues/3512 - https://github.com/software-mansion/react-native-screens/pull/3420 + +--- + +Also embeds the Fabric `UIPageViewController` into the view controller hierarchy (`ios/Fabric/RNCPagerViewComponentView.mm`). + +The Paper implementation calls `reactAddControllerToClosestParent:` when embedding its `UIPageViewController`, so the controller becomes a child of the nearest ancestor view controller (e.g. `RNSScreen`). The Fabric implementation never does this - the page view controller is orphaned (`parentViewController == nil`). + +UIKit resolves the status-bar-tap scroll-to-top gesture by walking `parentViewController`/`presentingViewController` from each candidate scroll view's nearest view controller up to the window's root (see `-[UIWindow _scrollToTopViewsUnderScreenPointIfNecessary:resultHandler:]`). With the orphaned controller that walk dead-ends, so every scroll view rendered inside a pager (all Home feeds, Profile tabs, etc.) is dropped from candidate selection and tapping the status bar no longer scrolls feeds to top. It only kept "working" when the window happened to contain exactly one other eligible scroll view, via UIKit's single-candidate fallback. + +The patch attaches the page view controller to the nearest view controller found via the responder chain on `didMoveToWindow` (with a `layoutSubviews` retry because the ancestor controller may not be wired up on the first pass - same timing issue as callstack/react-native-pager-view#1089), and detaches it in `prepareForRecycle` to avoid leaking the controller after unmount. + +Fixed upstream in v8 by the SwiftUI rewrite, which embeds via `reactViewController()` + `addChild` (see `PagerViewProvider.swift`). diff --git a/patches/react-native-reanimated@3.19.1.patch b/patches/react-native-reanimated@3.19.1.patch deleted file mode 100644 index 8cc124d14b..0000000000 --- a/patches/react-native-reanimated@3.19.1.patch +++ /dev/null @@ -1,390 +0,0 @@ -diff --git a/lib/module/component/PerformanceMonitor.js b/lib/module/component/PerformanceMonitor.js -index 9c98d6cc395419f50969753a4e4c7962b7be588f..3686a97280ac540efa0814ac4dea40358860a76f 100644 ---- a/lib/module/component/PerformanceMonitor.js -+++ b/lib/module/component/PerformanceMonitor.js -@@ -1,125 +1,5 @@ - 'use strict'; - --import React, { useEffect, useRef } from 'react'; --import { StyleSheet, TextInput, View } from 'react-native'; --import { addWhitelistedNativeProps } from "../ConfigHelper.js"; --import { createAnimatedComponent } from "../createAnimatedComponent/index.js"; --import { useAnimatedProps, useFrameCallback, useSharedValue } from "../hook/index.js"; --function createCircularDoublesBuffer(size) { -- 'worklet'; -- -- return { -- next: 0, -- buffer: new Float32Array(size), -- size, -- count: 0, -- push(value) { -- const oldValue = this.buffer[this.next]; -- const oldCount = this.count; -- this.buffer[this.next] = value; -- this.next = (this.next + 1) % this.size; -- this.count = Math.min(this.size, this.count + 1); -- return oldCount === this.size ? oldValue : null; -- }, -- front() { -- const notEmpty = this.count > 0; -- if (notEmpty) { -- const current = this.next - 1; -- const index = current < 0 ? this.size - 1 : current; -- return this.buffer[index]; -- } -- return null; -- }, -- back() { -- const notEmpty = this.count > 0; -- return notEmpty ? this.buffer[this.next] : null; -- } -- }; --} --const DEFAULT_BUFFER_SIZE = 20; --addWhitelistedNativeProps({ -- text: true --}); --const AnimatedTextInput = createAnimatedComponent(TextInput); --function loopAnimationFrame(fn) { -- let lastTime = 0; -- function loop() { -- requestAnimationFrame(time => { -- if (lastTime > 0) { -- fn(lastTime, time); -- } -- lastTime = time; -- requestAnimationFrame(loop); -- }); -- } -- loop(); --} --function getFps(renderTimeInMs) { -- 'worklet'; -- -- return 1000 / renderTimeInMs; --} --function completeBufferRoutine(buffer, timestamp) { -- 'worklet'; -- -- timestamp = Math.round(timestamp); -- const droppedTimestamp = buffer.push(timestamp) ?? timestamp; -- const measuredRangeDuration = timestamp - droppedTimestamp; -- return getFps(measuredRangeDuration / buffer.count); --} --function JsPerformance({ -- smoothingFrames --}) { -- const jsFps = useSharedValue(null); -- const totalRenderTime = useSharedValue(0); -- const circularBuffer = useRef(createCircularDoublesBuffer(smoothingFrames)); -- useEffect(() => { -- loopAnimationFrame((_, timestamp) => { -- timestamp = Math.round(timestamp); -- const currentFps = completeBufferRoutine(circularBuffer.current, timestamp); -- -- // JS fps have to be measured every 2nd frame, -- // thus 2x multiplication has to occur here -- jsFps.value = (currentFps * 2).toFixed(0); -- }); -- }, [jsFps, totalRenderTime]); -- const animatedProps = useAnimatedProps(() => { -- const text = 'JS: ' + (jsFps.value ?? 'N/A') + ' '; -- return { -- text, -- defaultValue: text -- }; -- }); -- return -- -- ; --} --function UiPerformance({ -- smoothingFrames --}) { -- const uiFps = useSharedValue(null); -- const circularBuffer = useSharedValue(null); -- useFrameCallback(({ -- timestamp -- }) => { -- if (circularBuffer.value === null) { -- circularBuffer.value = createCircularDoublesBuffer(smoothingFrames); -- } -- timestamp = Math.round(timestamp); -- const currentFps = completeBufferRoutine(circularBuffer.value, timestamp); -- uiFps.value = currentFps.toFixed(0); -- }); -- const animatedProps = useAnimatedProps(() => { -- const text = 'UI: ' + (uiFps.value ?? 'N/A') + ' '; -- return { -- text, -- defaultValue: text -- }; -- }); -- return -- -- ; --} - /** - * A component that lets you measure fps values on JS and UI threads on both the - * Paper and Fabric architectures. -@@ -127,38 +7,7 @@ function UiPerformance({ - * @param smoothingFrames - Determines amount of saved frames which will be used - * for fps value smoothing. - */ --export function PerformanceMonitor({ -- smoothingFrames = DEFAULT_BUFFER_SIZE --}) { -- return -- -- -- ; -+export function PerformanceMonitor() { -+ return null; - } --const styles = StyleSheet.create({ -- monitor: { -- flexDirection: 'row', -- position: 'absolute', -- backgroundColor: '#0006', -- zIndex: 1000 -- }, -- header: { -- fontSize: 14, -- color: '#ffff', -- paddingHorizontal: 5 -- }, -- text: { -- fontSize: 13, -- fontVariant: ['tabular-nums'], -- color: '#ffff', -- fontFamily: 'monospace', -- paddingHorizontal: 3 -- }, -- container: { -- alignItems: 'center', -- justifyContent: 'center', -- flexDirection: 'row', -- flexWrap: 'wrap' -- } --}); - //# sourceMappingURL=PerformanceMonitor.js.map -\ No newline at end of file -diff --git a/src/component/PerformanceMonitor.tsx b/src/component/PerformanceMonitor.tsx -index ff8fc8a947a0aeb959e21ec061882c3d190a2ce0..34dde79727765623df80dbcdab5016de6fd5d82c 100644 ---- a/src/component/PerformanceMonitor.tsx -+++ b/src/component/PerformanceMonitor.tsx -@@ -1,170 +1,5 @@ - 'use strict'; - --import React, { useEffect, useRef } from 'react'; --import { StyleSheet, TextInput, View } from 'react-native'; -- --import { addWhitelistedNativeProps } from '../ConfigHelper'; --import { createAnimatedComponent } from '../createAnimatedComponent'; --import type { FrameInfo } from '../frameCallback'; --import { useAnimatedProps, useFrameCallback, useSharedValue } from '../hook'; -- --type CircularBuffer = ReturnType; --function createCircularDoublesBuffer(size: number) { -- 'worklet'; -- -- return { -- next: 0 as number, -- buffer: new Float32Array(size), -- size, -- count: 0 as number, -- -- push(value: number): number | null { -- const oldValue = this.buffer[this.next]; -- const oldCount = this.count; -- this.buffer[this.next] = value; -- -- this.next = (this.next + 1) % this.size; -- this.count = Math.min(this.size, this.count + 1); -- return oldCount === this.size ? oldValue : null; -- }, -- -- front(): number | null { -- const notEmpty = this.count > 0; -- if (notEmpty) { -- const current = this.next - 1; -- const index = current < 0 ? this.size - 1 : current; -- return this.buffer[index]; -- } -- return null; -- }, -- -- back(): number | null { -- const notEmpty = this.count > 0; -- return notEmpty ? this.buffer[this.next] : null; -- }, -- }; --} -- --const DEFAULT_BUFFER_SIZE = 20; --addWhitelistedNativeProps({ text: true }); --const AnimatedTextInput = createAnimatedComponent(TextInput); -- --function loopAnimationFrame(fn: (lastTime: number, time: number) => void) { -- let lastTime = 0; -- -- function loop() { -- requestAnimationFrame((time) => { -- if (lastTime > 0) { -- fn(lastTime, time); -- } -- lastTime = time; -- requestAnimationFrame(loop); -- }); -- } -- -- loop(); --} -- --function getFps(renderTimeInMs: number): number { -- 'worklet'; -- return 1000 / renderTimeInMs; --} -- --function completeBufferRoutine( -- buffer: CircularBuffer, -- timestamp: number --): number { -- 'worklet'; -- timestamp = Math.round(timestamp); -- -- const droppedTimestamp = buffer.push(timestamp) ?? timestamp; -- -- const measuredRangeDuration = timestamp - droppedTimestamp; -- -- return getFps(measuredRangeDuration / buffer.count); --} -- --function JsPerformance({ smoothingFrames }: { smoothingFrames: number }) { -- const jsFps = useSharedValue(null); -- const totalRenderTime = useSharedValue(0); -- const circularBuffer = useRef( -- createCircularDoublesBuffer(smoothingFrames) -- ); -- -- useEffect(() => { -- loopAnimationFrame((_, timestamp) => { -- timestamp = Math.round(timestamp); -- -- const currentFps = completeBufferRoutine( -- circularBuffer.current, -- timestamp -- ); -- -- // JS fps have to be measured every 2nd frame, -- // thus 2x multiplication has to occur here -- jsFps.value = (currentFps * 2).toFixed(0); -- }); -- }, [jsFps, totalRenderTime]); -- -- const animatedProps = useAnimatedProps(() => { -- const text = 'JS: ' + (jsFps.value ?? 'N/A') + ' '; -- return { text, defaultValue: text }; -- }); -- -- return ( -- -- -- -- ); --} -- --function UiPerformance({ smoothingFrames }: { smoothingFrames: number }) { -- const uiFps = useSharedValue(null); -- const circularBuffer = useSharedValue(null); -- -- useFrameCallback(({ timestamp }: FrameInfo) => { -- if (circularBuffer.value === null) { -- circularBuffer.value = createCircularDoublesBuffer(smoothingFrames); -- } -- -- timestamp = Math.round(timestamp); -- -- const currentFps = completeBufferRoutine(circularBuffer.value, timestamp); -- -- uiFps.value = currentFps.toFixed(0); -- }); -- -- const animatedProps = useAnimatedProps(() => { -- const text = 'UI: ' + (uiFps.value ?? 'N/A') + ' '; -- return { text, defaultValue: text }; -- }); -- -- return ( -- -- -- -- ); --} -- --export type PerformanceMonitorProps = { -- /** -- * Sets amount of previous frames used for smoothing at highest expectedFps. -- * -- * Automatically scales down at lower frame rates. -- * -- * Affects jumpiness of the FPS measurements value. -- */ -- smoothingFrames?: number; --}; -- - /** - * A component that lets you measure fps values on JS and UI threads on both the - * Paper and Fabric architectures. -@@ -172,40 +7,6 @@ export type PerformanceMonitorProps = { - * @param smoothingFrames - Determines amount of saved frames which will be used - * for fps value smoothing. - */ --export function PerformanceMonitor({ -- smoothingFrames = DEFAULT_BUFFER_SIZE, --}: PerformanceMonitorProps) { -- return ( -- -- -- -- -- ); -+export function PerformanceMonitor() { -+ return null; - } -- --const styles = StyleSheet.create({ -- monitor: { -- flexDirection: 'row', -- position: 'absolute', -- backgroundColor: '#0006', -- zIndex: 1000, -- }, -- header: { -- fontSize: 14, -- color: '#ffff', -- paddingHorizontal: 5, -- }, -- text: { -- fontSize: 13, -- fontVariant: ['tabular-nums'], -- color: '#ffff', -- fontFamily: 'monospace', -- paddingHorizontal: 3, -- }, -- container: { -- alignItems: 'center', -- justifyContent: 'center', -- flexDirection: 'row', -- flexWrap: 'wrap', -- }, --}); diff --git a/patches/react-native-reanimated@4.3.2.patch b/patches/react-native-reanimated@4.3.2.patch new file mode 100644 index 0000000000..bc517898b5 --- /dev/null +++ b/patches/react-native-reanimated@4.3.2.patch @@ -0,0 +1,500 @@ +diff --git a/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp b/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp +index 531f0dc7b4eeb9b29cb2255d8444da02a74c35b7..534f419fce55c39a09a7eebfb7ab3c53f8a16637 100644 +--- a/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp ++++ b/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp +@@ -1,8 +1,10 @@ + #include + #include + ++#include + #include + #include ++#include + + namespace reanimated { + +@@ -25,25 +27,59 @@ void AnimatedPropsRegistry::update(jsi::Runtime &rt, const jsi::Value &operation + addUpdatesToBatch(shadowNode, jsi::dynamicFromValue(rt, updates)); + + if constexpr (StaticFeatureFlags::getFlag("FORCE_REACT_RENDER_FOR_SETTLED_ANIMATIONS")) { +- timestampMap_[shadowNode->getTag()] = timestamp; ++ const auto tag = shadowNode->getTag(); ++ timestampMap_[tag] = timestamp; ++ // If JS already has a `settledProps` snapshot for this tag, it is now ++ // stale — schedule a refresh on the next `collectSettledUpdates`. ++ if (syncedTags_.erase(tag) > 0) { ++ invalidatedTags_.insert(tag); ++ } + } + } + } + +-jsi::Value AnimatedPropsRegistry::getUpdatesOlderThanTimestamp( +- jsi::Runtime &rt, +- const double timestamp, +- const double cleanupTimestamp) { ++jsi::Value AnimatedPropsRegistry::collectSettledUpdates(jsi::Runtime &rt, const double settledTimestamp) { + std::lock_guard lock{mutex_}; +- removeUpdatesOlderThanTimestamp(cleanupTimestamp); + + std::vector>> updates; + +- for (const auto &[viewTag, pair] : updatesRegistry_) { +- auto it = timestampMap_.find(viewTag); +- if (it != timestampMap_.end() && it->second < timestamp) { +- updates.emplace_back(viewTag, std::cref(pair.second)); ++ for (auto it = updatesRegistry_.begin(); it != updatesRegistry_.end();) { ++ const auto viewTag = it->first; ++ ++ if (syncedTags_.contains(viewTag)) { ++ // React already has the latest value for this tag (synced on a previous ++ // call, so the `settledProps` state is committed by now) — the registry ++ // entry is redundant. `syncedTags_` is intentionally retained to detect ++ // re-animation staleness. Note that `syncedTags_` and `invalidatedTags_` ++ // are disjoint — `update()` moves tags from the former to the latter. ++ timestampMap_.erase(viewTag); ++ it = updatesRegistry_.erase(it); ++ continue; ++ } ++ ++ const auto timestampIt = timestampMap_.find(viewTag); ++ if (timestampIt == timestampMap_.end()) { ++ ++it; ++ continue; ++ } ++ const bool isSettled = timestampIt->second < settledTimestamp; ++ const auto invalidatedIt = invalidatedTags_.find(viewTag); ++ const bool isInvalidated = invalidatedIt != invalidatedTags_.end(); ++ if (isSettled || isInvalidated) { ++ updates.emplace_back(viewTag, std::cref(it->second.second)); ++ if (isSettled) { ++ // Only settled-path tags are tracked as "synced" so that an ongoing ++ // animation doesn't re-trigger an invalidation/sync on every GC tick. ++ syncedTags_.insert(viewTag); ++ } ++ if (isInvalidated) { ++ // Only erase serviced invalidations; if a tag was invalidated but the ++ // matching update batch hasn't been flushed into updatesRegistry_ yet, ++ // we leave the entry so the next sync picks it up. ++ invalidatedTags_.erase(invalidatedIt); ++ } + } ++ ++it; + } + + const jsi::Array array(rt, updates.size()); +@@ -58,22 +94,11 @@ jsi::Value AnimatedPropsRegistry::getUpdatesOlderThanTimestamp( + return jsi::Value(rt, array); + } + +-void AnimatedPropsRegistry::removeUpdatesOlderThanTimestamp(const double timestamp) { +- for (auto it = timestampMap_.begin(); it != timestampMap_.end();) { +- const auto viewTag = it->first; +- const auto viewTimestamp = it->second; +- if (viewTimestamp < timestamp) { +- it = timestampMap_.erase(it); +- updatesRegistry_.erase(viewTag); +- } else { +- it++; +- } +- } +-} +- + void AnimatedPropsRegistry::removeTag(const Tag tag) { + updatesRegistry_.erase(tag); + timestampMap_.erase(tag); ++ syncedTags_.erase(tag); ++ invalidatedTags_.erase(tag); + } + + } // namespace reanimated +diff --git a/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.h b/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.h +index 2c6c0e13604c9421e147d7eea7f4a4752288011c..8cd67f118501c2786b94d76541aea29a14ba8c16 100644 +--- a/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.h ++++ b/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.h +@@ -4,10 +4,8 @@ + + #include + +-#include +-#include + #include +-#include ++#include + + namespace reanimated { + +@@ -15,13 +13,22 @@ class AnimatedPropsRegistry : public UpdatesRegistry { + public: + void update(jsi::Runtime &rt, const jsi::Value &operations, double timestamp); + +- /// Also removes updates older than `cleanupTimestamp` from the registry. +- jsi::Value getUpdatesOlderThanTimestamp(jsi::Runtime &rt, double timestamp, double cleanupTimestamp); ++ /// Returns updates that settled (received no update since `settledTimestamp`) ++ /// or whose synced `settledProps` snapshot was invalidated by a fresh update. ++ /// Also evicts entries that have already been synced to React — by the time ++ /// of the next call, the corresponding `settledProps` state is guaranteed to ++ /// be committed, so the registry entries are redundant. ++ jsi::Value collectSettledUpdates(jsi::Runtime &rt, double settledTimestamp); + + private: + std::unordered_map timestampMap_; // viewTag -> timestamp, protected by `mutex_` ++ // Tags whose latest values have already been pushed to React `settledProps`. ++ // Intentionally retained after eviction to detect re-animation staleness. ++ std::unordered_set syncedTags_; ++ // Tags that were synced to React but received a fresh worklet update since; ++ // their `settledProps` are stale and need to be refreshed on the next sync. ++ std::unordered_set invalidatedTags_; + +- void removeUpdatesOlderThanTimestamp(double timestamp); + void removeTag(Tag tag) override; + }; + +diff --git a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxyCommon.h b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxyCommon.h +index 096218ab9659955cd6272c97181bce3c893ed591..1a8e25fc8295b3ac943130709bf063ea41a50585 100644 +--- a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxyCommon.h ++++ b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxyCommon.h +@@ -57,11 +57,11 @@ class LayoutAnimationsProxyCommon : public facebook::react::MountingOverrideDele + const SharedComponentDescriptorRegistry &componentDescriptorRegistry, + const std::shared_ptr &contextContainer, + jsi::Runtime &uiRuntime, +- const std::shared_ptr &uiScheduler ++ const std::shared_ptr &uiScheduler, ++ const std::shared_ptr &uiManager + #ifdef ANDROID + , + const PreserveMountedTagsFunction &filterUnmountedTagsFunction, +- const std::shared_ptr &uiManager, + const std::shared_ptr &jsInvoker + #endif + ) +@@ -69,11 +69,11 @@ class LayoutAnimationsProxyCommon : public facebook::react::MountingOverrideDele + contextContainer_(contextContainer), + componentDescriptorRegistry_(componentDescriptorRegistry), + uiRuntime_(uiRuntime), +- uiScheduler_(uiScheduler) ++ uiScheduler_(uiScheduler), ++ uiManager_(uiManager) + #ifdef ANDROID + , + preserveMountedTags_(filterUnmountedTagsFunction), +- uiManager_(uiManager), + jsInvoker_(jsInvoker) + #endif + { +@@ -93,10 +93,10 @@ class LayoutAnimationsProxyCommon : public facebook::react::MountingOverrideDele + SharedComponentDescriptorRegistry componentDescriptorRegistry_; + jsi::Runtime &uiRuntime_; + const std::shared_ptr uiScheduler_; ++ std::shared_ptr uiManager_; + PreserveMountedTagsFunction preserveMountedTags_; + + #ifdef ANDROID +- std::shared_ptr uiManager_; + std::shared_ptr jsInvoker_; + + void restoreOpacityInCaseOfFlakyEnteringAnimation(SurfaceId surfaceId) const; +diff --git a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Experimental.h b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Experimental.h +index eca44e4cf651d16e9741806004ce9119c85d07d6..e39c79a5d7b52659106ed6fe6fbcbbc048bf4787 100644 +--- a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Experimental.h ++++ b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Experimental.h +@@ -66,11 +66,11 @@ struct LayoutAnimationsProxy_Experimental : public LayoutAnimationsProxyCommon, + const SharedComponentDescriptorRegistry &componentDescriptorRegistry, + const std::shared_ptr &contextContainer, + jsi::Runtime &uiRuntime, +- const std::shared_ptr &uiScheduler ++ const std::shared_ptr &uiScheduler, ++ const std::shared_ptr &uiManager + #ifdef ANDROID + , + const PreserveMountedTagsFunction &filterUnmountedTagsFunction, +- const std::shared_ptr &uiManager, + const std::shared_ptr &jsInvoker + #endif + ) +@@ -79,11 +79,11 @@ struct LayoutAnimationsProxy_Experimental : public LayoutAnimationsProxyCommon, + componentDescriptorRegistry, + contextContainer, + uiRuntime, +- uiScheduler ++ uiScheduler, ++ uiManager + #ifdef ANDROID + , + filterUnmountedTagsFunction, +- uiManager, + jsInvoker + #endif + ), +diff --git a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.cpp b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.cpp +index 83ef7430b923b6b3b99368ee8072168769110cd0..2affd12822ab19bdc90963d3ce8ca1e6bb0d43b7 100644 +--- a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.cpp ++++ b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.cpp +@@ -2,6 +2,7 @@ + #include + + #include ++#include + #include + + #include +@@ -53,14 +54,37 @@ std::optional LayoutAnimationsProxy_Legacy::pullTransaction + + parseRemoveMutations(movedViews, mutations, roots); + +- auto shouldAnimate = !surfacesToRemove_.contains(surfaceId); +- surfacesToRemove_.erase(surfaceId); ++ // Consume the teardown mark only on the transaction that actually clears ++ // the root — pulls emitted for animation frames must not eat it early. ++ auto shouldAnimate = true; ++ const auto removesRootChildren = std::ranges::any_of(mutations, [surfaceId](const auto &mutation) { ++ return mutation.type == ShadowViewMutation::Remove && mutation.parentTag == surfaceId; ++ }); ++ if (removesRootChildren) { ++ shouldAnimate = surfacesToRemove_.erase(surfaceId) == 0; ++ } + handleRemovals(filteredMutations, roots, deadNodes, shouldAnimate); + + handleUpdatesAndEnterings(filteredMutations, movedViews, mutations, propsParserContext, surfaceId); + + addOngoingAnimations(surfaceId, filteredMutations); + ++ // The LayoutAnimationDriver can emit a final keyframe update in the same ++ // transaction as the deferred Remove/Delete it withheld for a delete ++ // animation. We emit removals before updates, so such an update would ++ // otherwise reach the mounting layer after its view was deleted. ++ std::unordered_set deletedTags; ++ for (const auto &mutation : filteredMutations) { ++ if (mutation.type == ShadowViewMutation::Delete) { ++ deletedTags.insert(mutation.oldChildShadowView.tag); ++ } ++ } ++ if (!deletedTags.empty()) { ++ std::erase_if(filteredMutations, [&deletedTags](const auto &mutation) { ++ return mutation.type == ShadowViewMutation::Update && deletedTags.contains(mutation.newChildShadowView.tag); ++ }); ++ } ++ + return MountingTransaction{surfaceId, transactionNumber, std::move(filteredMutations), telemetry}; + } + +@@ -947,23 +971,22 @@ inline bool MutationNode::isMutationNode() { + return true; + } + +-// UIManagerAnimationDelegate +- +-void LayoutAnimationsProxy_Legacy::uiManagerDidConfigureNextLayoutAnimation( +- jsi::Runtime &runtime, +- const RawValue &config, +- const jsi::Value &successCallbackValue, +- const jsi::Value &failureCallbackValue) const {} ++// UIManagerCommitHook + +-void LayoutAnimationsProxy_Legacy::setComponentDescriptorRegistry( +- const SharedComponentDescriptorRegistry &componentDescriptorRegistry) {} +- +-bool LayoutAnimationsProxy_Legacy::shouldAnimateFrame() const { +- return false; +-} +- +-void LayoutAnimationsProxy_Legacy::stopSurface(SurfaceId surfaceId) { +- surfacesToRemove_.insert(surfaceId); ++// Surface teardown commits an empty root (SurfaceHandler::stop) before the ++// teardown transaction is pulled — mark it so pullTransaction skips exit ++// animations. Reading the ShadowTreeRegistry here instead would deadlock (#8579). ++RootShadowNode::Unshared LayoutAnimationsProxy_Legacy::shadowTreeWillCommit( ++ const ShadowTree &shadowTree, ++ const RootShadowNode::Shared & /*oldRootShadowNode*/, ++ const RootShadowNode::Unshared &newRootShadowNode) noexcept { ++ auto lock = std::unique_lock(mutex); ++ if (newRootShadowNode->getChildren().empty()) { ++ surfacesToRemove_.insert(shadowTree.getSurfaceId()); ++ } else { ++ surfacesToRemove_.erase(shadowTree.getSurfaceId()); ++ } ++ return newRootShadowNode; + } + + } // namespace reanimated +diff --git a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.h b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.h +index e9a5e9959e89ec33cee179ddb907c17f6dfbd3de..a2c89041518cd71e8ba5ac62ef89c0022d197c9b 100644 +--- a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.h ++++ b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.h +@@ -3,8 +3,8 @@ + #include + #include + #include +-#include + #include ++#include + #include + #include + #include +@@ -102,7 +102,7 @@ struct SurfaceContext { + }; + + struct LayoutAnimationsProxy_Legacy : public LayoutAnimationsProxyCommon, +- public UIManagerAnimationDelegate, ++ public UIManagerCommitHook, + public std::enable_shared_from_this { + mutable std::unordered_map> nodeForTag_; + mutable std::recursive_mutex mutex; +@@ -116,11 +116,11 @@ struct LayoutAnimationsProxy_Legacy : public LayoutAnimationsProxyCommon, + const SharedComponentDescriptorRegistry &componentDescriptorRegistry, + const std::shared_ptr &contextContainer, + jsi::Runtime &uiRuntime, +- const std::shared_ptr &uiScheduler ++ const std::shared_ptr &uiScheduler, ++ const std::shared_ptr &uiManager + #ifdef ANDROID + , + const PreserveMountedTagsFunction &filterUnmountedTagsFunction, +- const std::shared_ptr &uiManager, + const std::shared_ptr &jsInvoker + #endif + ) +@@ -129,14 +129,19 @@ struct LayoutAnimationsProxy_Legacy : public LayoutAnimationsProxyCommon, + componentDescriptorRegistry, + contextContainer, + uiRuntime, +- uiScheduler ++ uiScheduler, ++ uiManager + #ifdef ANDROID + , + filterUnmountedTagsFunction, +- uiManager, + jsInvoker + #endif + ) { ++ uiManager->registerCommitHook(*this); ++ } ++ ++ ~LayoutAnimationsProxy_Legacy() override { ++ uiManager_->unregisterCommitHook(*this); + } + + void startEnteringAnimation(const int tag, ShadowViewMutation &mutation) const; +@@ -202,19 +207,15 @@ struct LayoutAnimationsProxy_Legacy : public LayoutAnimationsProxyCommon, + const TransactionTelemetry &telemetry, + ShadowViewMutationList mutations) const override; + +- // UIManagerAnimationDelegate +- +- void uiManagerDidConfigureNextLayoutAnimation( +- jsi::Runtime &runtime, +- const RawValue &config, +- const jsi::Value &successCallbackValue, +- const jsi::Value &failureCallbackValue) const override; +- +- void setComponentDescriptorRegistry(const SharedComponentDescriptorRegistry &componentDescriptorRegistry) override; ++ // UIManagerCommitHook + +- bool shouldAnimateFrame() const override; ++ void commitHookWasRegistered(const UIManager &uiManager) noexcept override {} ++ void commitHookWasUnregistered(const UIManager &uiManager) noexcept override {} + +- void stopSurface(SurfaceId surfaceId) override; ++ RootShadowNode::Unshared shadowTreeWillCommit( ++ const ShadowTree &shadowTree, ++ const RootShadowNode::Shared &oldRootShadowNode, ++ const RootShadowNode::Unshared &newRootShadowNode) noexcept override; + }; + + } // namespace reanimated +diff --git a/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp b/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp +index 9ade22bf773005613048a00c47b35767628e86c6..f3415e824da1a8da5c83762415ca54646bd6429f 100644 +--- a/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp ++++ b/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp +@@ -524,15 +524,13 @@ jsi::Value ReanimatedModuleProxy::getSettledUpdates(jsi::Runtime &rt) { + StaticFeatureFlags::getFlag("FORCE_REACT_RENDER_FOR_SETTLED_ANIMATIONS") && + "getSettledUpdates requires FORCE_REACT_RENDER_FOR_SETTLED_ANIMATIONS static feature flag to be enabled"); + ++ constexpr double SETTLED_ANIMATION_THRESHOLD_MS = 1000; ++ + // TODO(future): use unified timestamp + const auto currentTimestamp = getAnimationTimestamp_(); + +- // TODO: fix bug when threshold difference is smaller than 1 second + // TODO(future): flush updates from CSS animations and CSS transitions registries +- // TODO(future): find a better way to obtain timestamp for removing updates +- // TODO(future): move removing old updates to separate method +- return animatedPropsRegistry_->getUpdatesOlderThanTimestamp( +- rt, currentTimestamp - 1000 /* 1 second */, currentTimestamp - 2000 /* 2 seconds */); ++ return animatedPropsRegistry_->collectSettledUpdates(rt, currentTimestamp - SETTLED_ANIMATION_THRESHOLD_MS); + } + + bool ReanimatedModuleProxy::handleEvent( +@@ -1306,11 +1304,11 @@ void ReanimatedModuleProxy::initializeLayoutAnimationsProxy() { + componentDescriptorRegistry, + scheduler->getContextContainer(), + getJSIRuntimeFromWorkletRuntime(uiRuntime_), +- uiScheduler_ ++ uiScheduler_, ++ uiManager_ + #ifdef ANDROID + , + filterUnmountedTagsFunction_, +- uiManager_, + jsInvoker_ + #endif + ); +@@ -1319,22 +1317,19 @@ void ReanimatedModuleProxy::initializeLayoutAnimationsProxy() { + #endif + layoutAnimationsProxy_ = std::move(layoutAnimationsProxyExperimental); + } else { +- auto layoutAnimationsProxyLegacy = std::make_shared( ++ layoutAnimationsProxy_ = std::make_shared( + layoutAnimationsManager_, + componentDescriptorRegistry, + scheduler->getContextContainer(), + getJSIRuntimeFromWorkletRuntime(uiRuntime_), +- uiScheduler_ ++ uiScheduler_, ++ uiManager_ + #ifdef ANDROID + , + filterUnmountedTagsFunction_, +- uiManager_, + jsInvoker_ + #endif + ); +- // TODO (future): support in experimental +- uiManager_->setAnimationDelegate(layoutAnimationsProxyLegacy.get()); +- layoutAnimationsProxy_ = std::move(layoutAnimationsProxyLegacy); + } + } + } +diff --git a/src/PropsRegistryGarbageCollector.ts b/src/PropsRegistryGarbageCollector.ts +index f917ce5a8586c02855f1d8d9ae73154592d22510..32148fbac8a9224ffec6edc784b48938da9585fb 100644 +--- a/src/PropsRegistryGarbageCollector.ts ++++ b/src/PropsRegistryGarbageCollector.ts +@@ -11,7 +11,6 @@ import { ReanimatedModule } from './ReanimatedModule'; + const FLUSH_INTERVAL_MS = 500; + + export const PropsRegistryGarbageCollector = { +- viewsCount: 0, + viewsMap: new Map(), + intervalId: null as NodeJS.Timeout | null, + +@@ -25,16 +24,14 @@ export const PropsRegistryGarbageCollector = { + return; + } + this.viewsMap.set(viewTag, component); +- this.viewsCount++; +- if (this.viewsCount === 1) { ++ if (this.viewsMap.size === 1) { + this.registerInterval(); + } + }, + + unregisterView(viewTag: number) { +- this.viewsMap.delete(viewTag); +- this.viewsCount--; +- if (this.viewsCount === 0) { ++ const deleted = this.viewsMap.delete(viewTag); ++ if (deleted && this.viewsMap.size === 0) { + this.unregisterInterval(); + } + }, diff --git a/patches/react-native-reanimated@4.3.2.patch.md b/patches/react-native-reanimated@4.3.2.patch.md new file mode 100644 index 0000000000..3a5281702e --- /dev/null +++ b/patches/react-native-reanimated@4.3.2.patch.md @@ -0,0 +1,65 @@ +# react-native-reanimated@4.3.2.patch + +Backports of two merged upstream PRs: + +1. PR 9901 (`LayoutAnimation.configureNext` compatibility) +2. PR 9971 (stale `settledProps` on worklet re-animation / after app resume) + +## 1. Backport of PR 9901 + +Backport of https://github.com/software-mansion/react-native-reanimated/pull/9901 +("refactor(LayoutAnimations): stop taking over UIManagerAnimationDelegate"). + +Reanimated's legacy `LayoutAnimationsProxy_Legacy` registered itself as the +`UIManagerAnimationDelegate` only to receive `stopSurface`. Occupying that slot +overwrites the `LayoutAnimationDriver` that React Native installs there, which +silently breaks `LayoutAnimation.configureNext` for the whole app. + +The patch makes the proxy detect surface teardown itself via a +`UIManagerCommitHook` (a commit with an empty root marks the surface in +`surfacesToRemove_`), frees the animation-delegate slot, and drops final +keyframe `Update` mutations for views deleted in the same transaction (a +deterministic `configureNext` delete-animation crash found in this app). +`uiManager` moves from Android-only to shared constructor args since the hook +registration needs it on both platforms. + +Only the `packages/react-native-reanimated` part of the PR is included (the +`apps/fabric-example` hunk is not part of the published package), and the +include hunk in `LayoutAnimationsProxy_Legacy.cpp` was adjusted to the 4.3.2 +release sources. + +## 2. Backport of PR 9971 (stale `settledProps`) + +Verbatim application of +https://github.com/software-mansion/react-native-reanimated/pull/9971, the +4.3-stable cherry-pick of +https://github.com/software-mansion/react-native-reanimated/pull/9527 +("Fix stale settledProps on worklet re-animation"). Fixes the Android DM +composer "phantom jump" +(https://github.com/software-mansion/react-native-reanimated/issues/9574). + +Background: with `FORCE_REACT_RENDER_FOR_SETTLED_ANIMATIONS`, once an +animation settles its final props are handed to JS (polled every 500 ms by +`PropsRegistryGarbageCollector`) and stored in React component state +(`settledProps`), after which the React-side snapshot becomes the sole owner +of the value. + +The PR replaces `getUpdatesOlderThanTimestamp` (which evicted registry +entries on a wall-clock 1 s/2 s window) with `collectSettledUpdates`: + +- `syncedTags_` / `invalidatedTags_` track which tags React already has a + snapshot for; when a previously-synced view re-animates, its stale snapshot + is refreshed on the next GC tick instead of waiting for the new value to + settle. +- Eviction is no longer time-based. An entry is only evicted on the tick + *after* it was returned to JS (once its `settledProps` commit is + guaranteed), so a missed timer window (app backgrounded, JS thread blocked) + can no longer destroy a settled value before it reaches React. This + replaces the ad-hoc eviction guard an earlier version of this patch added + on top of the pre-merge PR 9527. +- `PropsRegistryGarbageCollector` drops the separate `viewsCount` counter + (which could desync when nested animated components unregister a tag that + was never registered, stopping the GC interval while views remain) in favor + of `viewsMap.size`. Only `src/` is touched, matching the PR; Metro bundles + the app from `src/` via the package's `react-native` field, and the stale + `lib/` copy is unreachable (the feature is native-only). diff --git a/patches/react-native-uitextview@1.4.0.patch b/patches/react-native-uitextview@1.4.0.patch deleted file mode 100644 index ea2a967cde..0000000000 --- a/patches/react-native-uitextview@1.4.0.patch +++ /dev/null @@ -1,35 +0,0 @@ -diff --git a/ios/RNUITextViewShadow.swift b/ios/RNUITextViewShadow.swift -index c34ba712ca628ed8cf2db0f9fc332810ec86d34d..3602856dc8cd926b5321b4ecb109be9c00a23fe6 100644 ---- a/ios/RNUITextViewShadow.swift -+++ b/ios/RNUITextViewShadow.swift -@@ -159,13 +159,25 @@ class RNUITextViewShadow: RCTShadowView { - let maxSize = CGSize(width: CGFloat(maxWidth), height: CGFloat(MAXFLOAT)) - let textSize = self.attributedText.boundingRect(with: maxSize, options: .usesLineFragmentOrigin, context: nil) - -- var totalLines = self.lineHeight == 0.0 ? 0 : Int(ceil(textSize.height / self.lineHeight)) -- -- if self.numberOfLines != 0, totalLines > self.numberOfLines { -- totalLines = self.numberOfLines -+ var finalHeight: CGFloat -+ -+ if self.numberOfLines != 0 && self.lineHeight != 0.0 { -+ // numberOfLines is set with custom line height - need to calculate lines and snap to lineHeight multiples -+ // NOTE: this calculation can be inaccurate with fractional font sizes -+ var totalLines = Int(ceil(textSize.height / self.lineHeight)) -+ if totalLines > self.numberOfLines { -+ totalLines = self.numberOfLines -+ } -+ finalHeight = CGFloat(totalLines) * self.lineHeight -+ } else { -+ // Either no numberOfLines limit, or no custom lineHeight - use actual text height -+ // (numberOfLines without custom lineHeight is handled by the UITextView's textContainer.maximumNumberOfLines) -+ finalHeight = textSize.height - } - -- self.frameSize = CGSize(width: CGFloat(maxWidth), height: CGFloat(CGFloat(totalLines) * self.lineHeight)) -+ finalHeight = ceil(finalHeight) -+ -+ self.frameSize = CGSize(width: CGFloat(maxWidth), height: finalHeight) - return YGSize(width: Float(self.frameSize.width), height: Float(self.frameSize.height)) - } - diff --git a/patches/react-native@0.81.5.patch b/patches/react-native@0.81.5.patch index a71008d2d1..6c045e2981 100644 --- a/patches/react-native@0.81.5.patch +++ b/patches/react-native@0.81.5.patch @@ -1,3 +1,28 @@ +diff --git a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm +index c593d9ee2155a826352ebca34845aa5792b2eec3..3c26cd737f21116ff0aa48190e97e6c0649b5fac 100644 +--- a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm ++++ b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm +@@ -101,6 +101,20 @@ - (void)setContentOffset:(CGPoint)contentOffset + RCTSanitizeNaNValue(contentOffset.y, @"scrollView.contentOffset.y")); + } + ++- (void)setCenterContent:(BOOL)centerContent ++{ ++ if (_centerContent != centerContent) { ++ _centerContent = centerContent; ++ [self centerContentIfNeeded]; ++ } ++} ++ ++- (void)setContentSize:(CGSize)contentSize ++{ ++ [super setContentSize:contentSize]; ++ [self centerContentIfNeeded]; ++} ++ + - (void)setFrame:(CGRect)frame + { + [super setFrame:frame]; diff --git a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.h b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.h index 914a2494a57923fbf185644b7e2bb8aca8848e56..0deac55f22350f5e8377d8963fb1c2434bf6abfd 100644 --- a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.h @@ -11,11 +36,60 @@ index 914a2494a57923fbf185644b7e2bb8aca8848e56..0deac55f22350f5e8377d8963fb1c243 @end NS_ASSUME_NONNULL_END +diff --git a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm +index 0d231bc8aa938da296eb3b981e8ac9595a43b87f..be0a10d9c4de1892fa00bcbf8d63d739b66d8ffe 100644 +--- a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm ++++ b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm +@@ -76,7 +76,17 @@ - (void)updateProps:(const Props::Shared &)props oldProps:(const Props::Shared & + return; + } + +- const auto &oldConcreteProps = static_cast(*_props); ++ /* ++ * TODO: Remove after upgrading React Native to 0.82+ (fixed upstream by ++ * facebook/react-native#52615, #52584 and #53231). ++ * Diff against oldProps instead of _props. During the initial-layout replay ++ * from layoutSubviews, _props already holds the new props, so diffing ++ * against it is a no-op and tintColor/progressViewOffset are never applied ++ * on mount (facebook/react-native#56343). oldProps is null-guarded because ++ * the create-mutation path passes nullptr. ++ */ ++ const auto &oldConcreteProps = static_cast( ++ oldProps ? *oldProps : *PullToRefreshViewShadowNode::defaultSharedProps()); + const auto &newConcreteProps = static_cast(*props); + + if (newConcreteProps.tintColor != oldConcreteProps.tintColor) { diff --git a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm -index 1494fd225aff1fa0429e917404d6b4ca5fc961c5..df643f5c844ad2e684de5161528eba17f4a188d0 100644 +index 1494fd225aff1fa0429e917404d6b4ca5fc961c5..682e41b141c38c830bbcd9f2ce0de07b18f13977 100644 --- a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +++ b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm -@@ -1038,6 +1038,11 @@ - (void)_adjustForMaintainVisibleContentPosition +@@ -380,7 +380,15 @@ - (void)updateProps:(const Props::Shared &)props oldProps:(const Props::Shared & + + MAP_SCROLL_VIEW_PROP(zoomScale); + +- if (oldScrollViewProps.contentInset != newScrollViewProps.contentInset) { ++ // When disabling centerContent, reset inset to prop value ++ // (enabling is handled automatically by the setCenterContent: setter) ++ if (oldScrollViewProps.centerContent && !newScrollViewProps.centerContent) { ++ _scrollView.contentInset = RCTUIEdgeInsetsFromEdgeInsets(newScrollViewProps.contentInset); ++ } ++ ++ // Only apply contentInset from props if centerContent is disabled ++ // When centerContent is enabled, the inset is calculated by centerContentIfNeeded ++ if (oldScrollViewProps.contentInset != newScrollViewProps.contentInset && !newScrollViewProps.centerContent) { + _scrollView.contentInset = RCTUIEdgeInsetsFromEdgeInsets(newScrollViewProps.contentInset); + } + +@@ -507,7 +515,7 @@ - (UIView *)betterHitTest:(CGPoint)point withEvent:(UIEvent *)event + } + } + +- return isPointInside ? self : nil; ++ return isPointInside ? _scrollView : nil; + } + + /* +@@ -1038,6 +1046,11 @@ - (void)_adjustForMaintainVisibleContentPosition } } @@ -150,6 +224,23 @@ index 8b6571698fc5dd091a0d8980a33bb40295faf305..27c97bfeb6f13907c89f1d85f2bb8b8a reactChoreographer.postFrameCallback(ReactChoreographer.CallbackType.IDLE_EVENT, this) } } +diff --git a/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm b/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm +index 216bb23beb023ef6c3ae814c17e05bccbda7fc91..6ad5cc1d9ed5b8cd2df08ad77adca56c6bb58ff4 100644 +--- a/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm ++++ b/ReactCommon/react/renderer/textlayoutmanager/platform/ios/react/renderer/textlayoutmanager/RCTTextLayoutManager.mm +@@ -386,9 +386,10 @@ - (TextMeasurement)_measureTextStorage:(NSTextStorage *)textStorage + size.height = enumeratedLinesHeight; + } + ++ CGFloat epsilon = 0.001; + size = (CGSize){ +- ceil(size.width * layoutContext.pointScaleFactor) / layoutContext.pointScaleFactor, +- ceil(size.height * layoutContext.pointScaleFactor) / layoutContext.pointScaleFactor}; ++ ceil((size.width + epsilon) * layoutContext.pointScaleFactor) / layoutContext.pointScaleFactor, ++ ceil((size.height + epsilon) * layoutContext.pointScaleFactor) / layoutContext.pointScaleFactor}; + + __block auto attachments = TextMeasurement::Attachments{}; + diff --git a/third-party-podspecs/fmt.podspec b/third-party-podspecs/fmt.podspec index 2f38990e226c13f483aaf1b986302d4094243814..9b02e481e290299be20a6f09c42056ff51695e9b 100644 --- a/third-party-podspecs/fmt.podspec diff --git a/patches/react-native@0.81.5.patch.md b/patches/react-native@0.81.5.patch.md index 9c93aee5cb..f0e9634dab 100644 --- a/patches/react-native@0.81.5.patch.md +++ b/patches/react-native@0.81.5.patch.md @@ -11,3 +11,61 @@ in the RN repo: https://github.com/facebook/react-native/issues/43388 Patching `RCTRefreshControl.m` and `RCTRefreshControl.h` to add a new `forwarderBeginRefreshing` method to the class. This method is used by `ExpoScrollForwarder` to initiate a refresh of the underlying `UIScrollView` from inside that module. + +## RCTPullToRefreshViewComponentView.mm Patch - RefreshControl initial props dropped on New Arch + +**TODO: Remove after bumping React Native to 0.82+** (fixed upstream by facebook/react-native#52615, #52584 +and #53231). + +On Fabric, `updateProps` diffs against `_props`, but the initial-layout replay in `layoutSubviews` passes +`_props` as the new props too, so the diff is a no-op and `tintColor`/`progressViewOffset`/`title` are never +applied on mount. This hides the pull-to-refresh spinner behind the floating home header (it stays at offset +0 instead of `headerOffset`). We diff against the `oldProps` argument instead, null-guarded with default +props for the create-mutation path. + +Issue: https://github.com/facebook/react-native/issues/56343 + +## RCTEnhancedScrollView.mm / RCTScrollViewComponentView.mm Patch - centerContent insets stale after content resize on New Arch + +**TODO: Remove after bumping React Native to 0.87+** (fixed upstream by facebook/react-native#56832, +commit d50c1b5207; first shipped in 0.87.0-rc.0). + +On Fabric, `centerContent` centers by computing `contentInset` in `centerContentIfNeeded`, but that +recompute only ran on `setFrame`/`didAddSubview`/`scrollViewDidZoom` - not when a state update assigns a +new `contentSize` in `updateState`. Any content that resizes after mount inside a `centerContent` +ScrollView (e.g. the lightbox image crop view getting its real aspect ratio from `onLoad` when the embed +has no aspectRatio metadata) keeps the old insets: content rests off-center and the excess inset creates +phantom scroll range, so the image can be dragged and parked off-center and the native scroll steals the +swipe-down-to-dismiss pan. The old architecture paired every `contentSize` update with re-centering in +`RCTScrollView.updateContentSizeIfNeeded`; Fabric dropped that link. + +Backport of the upstream fix: `setContentSize:`/`setCenterContent:` overrides on `RCTEnhancedScrollView` +that call `centerContentIfNeeded`, plus the `updateProps` guards so the `contentInset` prop does not +fight the computed centering inset. + +Issue: https://github.com/facebook/react-native/issues/55090 + +## RCTScrollViewComponentView.mm Patch - ScrollView pinch/pan ignored outside content area on New Arch + +**TODO: Remove after bumping React Native to 0.87+** (fixed upstream by facebook/react-native#56747, +commit efcab20908; first shipped in 0.87.0-rc.0). + +On Fabric, `betterHitTest` in `RCTScrollViewComponentView` deliberately skips the `_containerView` +and hit-tests its grandchildren, returning `self` (the wrapper component view) when the touch lands +inside the scroll view bounds but outside any content. UIKit only delivers touches to a gesture +recognizer when the hit view is the recognizer's view or a descendant of it, and the `UIScrollView` +is a *child* of the wrapper - so its native pinch/pan recognizers never see those touches. In the +lightbox this means pinch-to-zoom and pan-while-zoomed only respond when the fingers are over the +image itself, not over the letterbox bars above/below it. On the old architecture, default UIKit +hit-testing returns the `UIScrollView` itself for those touches, so everything works. + +Backport of the upstream one-liner: return `_scrollView` instead of `self` so touches in the +content-less area are attributed to the `UIScrollView`. + +Issue: https://github.com/facebook/react-native/issues/54123 +PR: https://github.com/react/react-native/pull/56747 + +## RCTTextLayoutManager.mm Patch - Text overflows instead of wrapping on the last line + +Issue: https://github.com/react/react-native/issues/53450#issuecomment-3298157830 +Bandaid fix taken from: https://github.com/react/react-native/commit/581d643a9e59fd88f93757f80194e1efd11bd0e5 diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3b4f945d0e..face60e04b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -209,7 +209,8 @@ overrides: '@expo/image-utils': 0.8.12 '@types/estree': 1.0.6 react-native-compressor: 1.13.0 - react-native-reanimated: 3.19.1 + react-native-reanimated: 4.3.2 + react-native-worklets: 0.8.3 psl: 1.9.0 '@types/psl': 1.1.1 react-native-screens: 4.24.0 @@ -217,7 +218,6 @@ overrides: patchedDependencies: '@sentry/expo-upload-sourcemaps@8.18.0': 2368e1e1986165e7ead3c60017b78b2f9ade1b6a6b2f5ad27cd428608c6f12ae expo-age-range@0.2.18: c325225749993424461eeece1d97a99b19c00da2ebc958a73c12e4eca0c39306 - expo-glass-effect@55.0.8: 6c9fa5b104e53b87df4e17b320acb3b94d12ac90c0101190045dd620681efff0 expo-haptics@15.0.8: b33910ba2753c4eccdc885b449e6e33aa90b9cefa75ca8639762a26013141410 expo-image-picker@17.0.11: 47b28f6ddb8bcaa6483f8714c82daaa0001122f2b0dac6c05d19e98a61a6ceab expo-image@3.0.11: 6d46ffac33426c5285777da5bf5f88c68c8ce27290595dfa65f38c478930c2c4 @@ -226,15 +226,15 @@ patchedDependencies: expo-notifications@0.32.17: a45a8dcf3d8c4b5df4ee0e62bc79b755fcf9d28ca51a6f685b85830bf4afc2e5 expo-updates@29.0.17: 04f28cb005b770e9ae8f0065eab96e43cbb1e58107f5f6ad1bdd18f6deb66487 react-native-compressor@1.13.0: 58379dfaace6ced8590cb341c77f2ca8099dfa8f7df6297032ec51de767a9925 - react-native-date-picker@5.0.13: f2a6697da7a7ca79b4f39efda142eee1b82db6de3aa5010ad4bd59df41fe2ce1 + react-native-date-picker@5.0.13: 92943fb79d17d7342a29bbb12b0d8ee3cf6f7bca12ed322dc8d124a3e9fb75bd react-native-drawer-layout@4.2.3: 74f2c043cc22ab87054f219e7c7373a509b779b18bfa79d27e7d051d73355130 + react-native-gesture-handler: 39b9e51b3977fae8ff61764b8c32934fe3fbddaf21587b4661fd73b7c6dd325b react-native-keyboard-controller@1.21.8: ac52bf7502ff3ad34a8594b5e1a916b96bf87a2523b6abc87c31f03607d52271 - react-native-pager-view@6.8.0: 0979d6fe1e2fa43b2784cc0b5e0ff0117d53b53423e85ee5855eefdc41a00108 - react-native-reanimated@3.19.1: 97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6 + react-native-pager-view@6.8.0: c8316acd33c9aef6531e8c272c2bfab7bd02af1255969eeaab2bad5ab48531cc + react-native-reanimated@4.3.2: ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05 react-native-svg@15.12.1: ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310 - react-native-uitextview@1.4.0: 62de26caadfc39d1bdff204cdc03a705c0cd343999825e06d8c0c120de06cc99 react-native-view-shot@4.0.3: a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268 - react-native@0.81.5: 2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194 + react-native@0.81.5: 0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4 sonner-native@0.21.0: 4bcd0da0fec32e943460e6e788a9e4adf601b507d2dfd0c8246a6c8c74d8f638 importers: @@ -252,43 +252,40 @@ importers: version: 0.7.2 '@bitdrift/react-native': specifier: ^0.6.8 - version: 0.6.14(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.6.14(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@braintree/sanitize-url': specifier: ^6.0.2 version: 6.0.4 '@bsky.app/alf': specifier: ^0.1.15 - version: 0.1.15(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.1.15(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/expo-dynamic-app-icon': specifier: ^1.8.5 - version: 1.8.5(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 1.8.5(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/expo-guess-language': specifier: ^0.2.8 - version: 0.2.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.2.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/expo-image-crop-tool': specifier: ^0.5.1 - version: 0.5.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.5.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/expo-scroll-edge-effect': - specifier: ^0.1.4 - version: 0.1.4(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: ^0.1.9 + version: 0.1.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/expo-translate-text': specifier: ^0.2.9 - version: 0.2.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.2.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/peek-menu': specifier: ^0.3.1 - version: 0.3.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - '@bsky.app/react-native-mmkv': - specifier: 2.12.5 - version: 2.12.5(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.3.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/sift': specifier: ^0.3.9 - version: 0.3.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.3.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/tapper': specifier: ^0.6.1 - version: 0.6.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tlds@1.261.0) + version: 0.6.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tlds@1.261.0) '@bsky.app/video': specifier: 0.3.6 - version: 0.3.6(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.3.6(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@emoji-mart/data': specifier: ^1.2.1 version: 1.2.1 @@ -300,7 +297,7 @@ importers: version: 0.12.5 '@expo/webpack-config': specifier: ^19.0.1 - version: 19.0.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(postcss@8.5.14) + version: 19.0.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(postcss@8.5.14) '@floating-ui/dom': specifier: ^1.6.3 version: 1.7.6 @@ -336,19 +333,19 @@ importers: version: 5.9.5(@lingui/babel-plugin-lingui-macro@5.9.5(@typescript/typescript6@6.0.2))(react@19.1.0) '@react-native-async-storage/async-storage': specifier: 2.2.0 - version: 2.2.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 2.2.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) '@react-navigation/bottom-tabs': specifier: ^7.15.5 - version: 7.16.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 7.16.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@react-navigation/native': specifier: ^7.1.33 - version: 7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@react-navigation/native-stack': specifier: ^7.14.4 - version: 7.15.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 7.15.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@sentry/react-native': specifier: ~8.18.0 - version: 8.18.0(@expo/env@2.0.11)(dotenv@16.6.1)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 8.18.0(@expo/env@2.0.11)(dotenv@16.6.1)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@tanstack/query-async-storage-persister': specifier: ^5.96.2 version: 5.100.10 @@ -428,116 +425,116 @@ importers: specifier: ^5.0.1 version: 5.0.4 expo: - specifier: 54.0.34 - version: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: 54.0.35 + version: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-age-range: specifier: 0.2.18 - version: 0.2.18(patch_hash=c325225749993424461eeece1d97a99b19c00da2ebc958a73c12e4eca0c39306)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 0.2.18(patch_hash=c325225749993424461eeece1d97a99b19c00da2ebc958a73c12e4eca0c39306)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) expo-application: specifier: ~7.0.8 - version: 7.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 7.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-asset: specifier: ~12.0.13 - version: 12.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 12.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-blur: specifier: ~15.0.8 - version: 15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-build-properties: specifier: ~1.0.10 - version: 1.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 1.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-camera: specifier: ~17.0.10 - version: 17.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 17.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-clipboard: specifier: ~8.0.8 - version: 8.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 8.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-contacts: specifier: ^15.0.10 - version: 15.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 15.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-dev-client: specifier: ~6.0.20 - version: 6.0.21(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 6.0.21(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-device: specifier: ~8.0.10 - version: 8.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 8.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-file-system: specifier: ~19.0.21 - version: 19.0.22(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 19.0.22(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) expo-font: specifier: ~14.0.11 - version: 14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 14.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-glass-effect: - specifier: 55.0.8 - version: 55.0.8(patch_hash=6c9fa5b104e53b87df4e17b320acb3b94d12ac90c0101190045dd620681efff0)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: 0.1.10 + version: 0.1.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-haptics: specifier: ~15.0.8 - version: 15.0.8(patch_hash=b33910ba2753c4eccdc885b449e6e33aa90b9cefa75ca8639762a26013141410)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 15.0.8(patch_hash=b33910ba2753c4eccdc885b449e6e33aa90b9cefa75ca8639762a26013141410)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-image: specifier: ~3.0.11 - version: 3.0.11(patch_hash=6d46ffac33426c5285777da5bf5f88c68c8ce27290595dfa65f38c478930c2c4)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 3.0.11(patch_hash=6d46ffac33426c5285777da5bf5f88c68c8ce27290595dfa65f38c478930c2c4)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-image-manipulator: specifier: ~14.0.8 - version: 14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-image-picker: specifier: ~17.0.10 - version: 17.0.11(patch_hash=47b28f6ddb8bcaa6483f8714c82daaa0001122f2b0dac6c05d19e98a61a6ceab)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 17.0.11(patch_hash=47b28f6ddb8bcaa6483f8714c82daaa0001122f2b0dac6c05d19e98a61a6ceab)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-intent-launcher: specifier: ~13.0.8 - version: 13.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 13.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-keep-awake: specifier: ~15.0.8 - version: 15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) + version: 15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) expo-linear-gradient: specifier: ~15.0.8 - version: 15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-linking: specifier: ~8.0.11 - version: 8.0.12(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 8.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-localization: specifier: ~17.0.8 - version: 17.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) + version: 17.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) expo-location: specifier: ~19.0.8 - version: 19.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 19.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-media-library: specifier: ~18.2.1 - version: 18.2.1(patch_hash=2b84c17999bb0c977eaef7fa8ac297f7074d91c94fb63726b42d2a277b26b39a)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 18.2.1(patch_hash=2b84c17999bb0c977eaef7fa8ac297f7074d91c94fb63726b42d2a277b26b39a)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) expo-notifications: specifier: ~0.32.17 - version: 0.32.17(patch_hash=a45a8dcf3d8c4b5df4ee0e62bc79b755fcf9d28ca51a6f685b85830bf4afc2e5)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.32.17(patch_hash=a45a8dcf3d8c4b5df4ee0e62bc79b755fcf9d28ca51a6f685b85830bf4afc2e5)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-paste-input: specifier: ^0.2.1 - version: 0.2.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.2.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-privacy-sensitive: - specifier: ^0.1.0 - version: 0.1.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: ^0.2.0 + version: 0.2.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-screen-orientation: specifier: ~9.0.8 - version: 9.0.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 9.0.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) expo-sharing: specifier: ~14.0.8 - version: 14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-sms: specifier: ^14.0.7 - version: 14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-splash-screen: specifier: ~31.0.13 - version: 31.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 31.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-system-ui: specifier: ~6.0.9 - version: 6.0.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 6.0.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) expo-updates: specifier: ~29.0.17 - version: 29.0.17(patch_hash=04f28cb005b770e9ae8f0065eab96e43cbb1e58107f5f6ad1bdd18f6deb66487)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 29.0.17(patch_hash=04f28cb005b770e9ae8f0065eab96e43cbb1e58107f5f6ad1bdd18f6deb66487)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-video: specifier: ~3.0.16 - version: 3.0.16(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 3.0.16(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-video-thumbnails: specifier: ^10.0.8 - version: 10.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 10.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-web-browser: specifier: ~15.0.10 - version: 15.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 15.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) fast-deep-equal: specifier: ^3.1.3 version: 3.1.3 @@ -618,58 +615,64 @@ importers: version: 5.1.2(react-is@19.2.6)(react@19.1.0) react-native: specifier: 0.81.5 - version: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + version: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-native-compressor: specifier: 1.13.0 - version: 1.13.0(patch_hash=58379dfaace6ced8590cb341c77f2ca8099dfa8f7df6297032ec51de767a9925)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 1.13.0(patch_hash=58379dfaace6ced8590cb341c77f2ca8099dfa8f7df6297032ec51de767a9925)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-date-picker: specifier: ^5.0.13 - version: 5.0.13(patch_hash=f2a6697da7a7ca79b4f39efda142eee1b82db6de3aa5010ad4bd59df41fe2ce1)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 5.0.13(patch_hash=92943fb79d17d7342a29bbb12b0d8ee3cf6f7bca12ed322dc8d124a3e9fb75bd)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-device-attest: specifier: ^0.1.6 - version: 0.1.6(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.1.6(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-drawer-layout: specifier: ^4.2.3 - version: 4.2.3(patch_hash=74f2c043cc22ab87054f219e7c7373a509b779b18bfa79d27e7d051d73355130)(react-native-gesture-handler@2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 4.2.3(patch_hash=74f2c043cc22ab87054f219e7c7373a509b779b18bfa79d27e7d051d73355130)(e24fb32bf68bffe2eac7bf9484330e37) react-native-edge-to-edge: specifier: ^1.8.1 - version: 1.8.1(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 1.8.1(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-gesture-handler: - specifier: ~2.28.0 - version: 2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: ~2.30.0 + version: 2.30.1(patch_hash=39b9e51b3977fae8ff61764b8c32934fe3fbddaf21587b4661fd73b7c6dd325b)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-keyboard-controller: specifier: ^1.21.8 - version: 1.21.8(patch_hash=ac52bf7502ff3ad34a8594b5e1a916b96bf87a2523b6abc87c31f03607d52271)(react-native-reanimated@3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 1.21.8(patch_hash=ac52bf7502ff3ad34a8594b5e1a916b96bf87a2523b6abc87c31f03607d52271)(react-native-reanimated@4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-mmkv: + specifier: ^3.3.3 + version: 3.3.3(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-pager-view: specifier: 6.8.0 - version: 6.8.0(patch_hash=0979d6fe1e2fa43b2784cc0b5e0ff0117d53b53423e85ee5855eefdc41a00108)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 6.8.0(patch_hash=c8316acd33c9aef6531e8c272c2bfab7bd02af1255969eeaab2bad5ab48531cc)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-progress: specifier: bluesky-social/react-native-progress - version: https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) react-native-qrcode-styled: specifier: ^0.3.3 - version: 0.3.3(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.3.3(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-reanimated: - specifier: 3.19.1 - version: 3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: 4.3.2 + version: 4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-safe-area-context: specifier: ~5.6.0 - version: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-screens: specifier: 4.24.0 - version: 4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 4.24.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-scroll-forwarder: + specifier: link:./modules/react-native-scroll-forwarder + version: link:modules/react-native-scroll-forwarder react-native-svg: specifier: 15.12.1 - version: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-uitextview: - specifier: ^1.4.0 - version: 1.4.0(patch_hash=62de26caadfc39d1bdff204cdc03a705c0cd343999825e06d8c0c120de06cc99)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: ^2.2.0 + version: 2.2.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-uuid: specifier: ^2.0.3 version: 2.0.4 react-native-view-shot: specifier: ^4.0.3 - version: 4.0.3(patch_hash=a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 4.0.3(patch_hash=a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-web: specifier: ^0.21.0 version: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) @@ -678,7 +681,10 @@ importers: version: 1.0.2(file-loader@6.2.0(webpack@5.106.2(postcss@8.5.14)))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) react-native-webview: specifier: ^13.15.0 - version: 13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-worklets: + specifier: 0.8.3 + version: 0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-remove-scroll-bar: specifier: ^2.3.8 version: 2.3.8(@types/react@19.1.17)(react@19.1.0) @@ -699,7 +705,7 @@ importers: version: 2.0.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) sonner-native: specifier: 0.21.0 - version: 0.21.0(patch_hash=4bcd0da0fec32e943460e6e788a9e4adf601b507d2dfd0c8246a6c8c74d8f638)(0ed429160839218d22ac63d892397351) + version: 0.21.0(patch_hash=4bcd0da0fec32e943460e6e788a9e4adf601b507d2dfd0c8246a6c8c74d8f638)(0b56ace567b3b81579dd1ca8846cda60) tippy.js: specifier: ^6.3.7 version: 6.3.7 @@ -748,7 +754,7 @@ importers: version: 3.6.1(webpack@5.106.2(postcss@8.5.14)) '@testing-library/react-native': specifier: ^13.2.0 - version: 13.3.3(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0) + version: 13.3.3(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0) '@types/jest': specifier: 29.5.14 version: 29.5.14 @@ -784,7 +790,7 @@ importers: version: 19.1.0-rc.3 babel-preset-expo: specifier: ~54.0.10 - version: 54.0.10(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2) + version: 54.0.10(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2) eslint-plugin-bsky-internal: specifier: link:eslint version: link:eslint @@ -817,7 +823,7 @@ importers: version: 29.7.0(@types/node@24.12.4) jest-expo: specifier: ~54.0.17 - version: 54.0.17(@babel/core@7.29.0)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 54.0.17(@babel/core@7.29.0)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) jest-junit: specifier: ^16.0.0 version: 16.0.0 @@ -1633,8 +1639,8 @@ packages: react: '*' react-native: '*' - '@bsky.app/expo-scroll-edge-effect@0.1.4': - resolution: {integrity: sha512-P94YcYBqZfuUy7ewTrWulPTxTbs6Yvjg2xS5WX4I/F3R3cSQU9fc8vEzb2Pnn4Ieg2wukJdAywqzt+AnyWgJbw==} + '@bsky.app/expo-scroll-edge-effect@0.1.9': + resolution: {integrity: sha512-Gz+1nRFqvLo1TsmSquFEYJ7C6OVUWHYGVKsqaKBOP+GcrPv0mWNFhf6zRmNvBbmBznGN2w8so2o0URQRHwukVw==} peerDependencies: expo: '*' react: '*' @@ -1654,12 +1660,6 @@ packages: react: '*' react-native: '*' - '@bsky.app/react-native-mmkv@2.12.5': - resolution: {integrity: sha512-3vUz1nQY1DiKIPAWRkpp5ZGxH5f2G6Ui0UuQuEYjYv81xx1qFcSzS9KQ2sHcOKYdkOM9amWV2Q8TQCxt1lrAHg==} - peerDependencies: - react: '*' - react-native: '>=0.71.0' - '@bsky.app/sift@0.3.9': resolution: {integrity: sha512-EmwK6EGtxl6Mz4Z96J2EFi5aeiKeGiqueVCQHVms9C6ms6wMS0/HcqC/48RgFN+nSsM7Wr8sFCg1EcNnWyOQMQ==} peerDependencies: @@ -1860,8 +1860,8 @@ packages: cpu: [x64] os: [win32] - '@expo/cli@54.0.24': - resolution: {integrity: sha512-5xse1bEgnVUBhOrtttc6xTNJVvjyTRavpzuF0/0nuj+312vfSbk7EiRbG+xJ2pW/iZxnhLPJkFCrPYG0nmheAQ==} + '@expo/cli@54.0.25': + resolution: {integrity: sha512-WnUqIb8oMBhtwSfIqdCHCzcaDIpLNXItRVd5miuvWi4GO0SGo89PSsAkbVJ+LJgcaY+v5rbgMELJS9I/CqOulA==} hasBin: true peerDependencies: expo: '*' @@ -1921,11 +1921,17 @@ packages: '@expo/json-file@10.0.14': resolution: {integrity: sha512-yWwBFywFv+SxkJp/pIzzA416JVYflNUh7pqQzgaA6nXDqRyK7KfrqVzk8PdUfDnqbBcaZZxpzNssfQZzp5KHrA==} + '@expo/json-file@10.0.16': + resolution: {integrity: sha512-fcVkWEj+hLuP2yt5W0aw6LmDRqSPWDLUSxOMcmFeV+algmIF59sQVKCwB9btjQLd4V6x9N0pISkQEkBubUHrCw==} + + '@expo/json-file@10.2.0': + resolution: {integrity: sha512-S6XzKe3R9GQeHiUPXc3xJjOv2VJhOEwFYf7xdC2z2cUqt3kZJ9mSO877sNQloVdnW/SUCtPY3bexlM7nwq+CAQ==} + '@expo/json-file@9.1.5': resolution: {integrity: sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==} - '@expo/metro-config@54.0.15': - resolution: {integrity: sha512-SqIya4VZ9KHM1S9g+xR0A+QKw1Tfs7Gacx6bQNJ98vs4+O7I5+QP5mHZIB0QSZLUV8opiXebHYTiTu+0OAsIUw==} + '@expo/metro-config@54.0.16': + resolution: {integrity: sha512-3LLb9ZQl0VlqSlsalJ7+CYjfz60PBoSDHvpE1UF71aTM1Nx0Vb4LhXo7bCCC+PYP9q/GPB58LLbIROQ8PjKX2w==} peerDependencies: expo: '*' peerDependenciesMeta: @@ -1948,6 +1954,9 @@ packages: '@expo/plist@0.4.8': resolution: {integrity: sha512-pfNtErGGzzRwHP+5+RqswzPDKkZrx+Cli0mzjQaus1ZWFsog5ibL+nVT3NcporW51o8ggnt7x813vtRbPiyOrQ==} + '@expo/plist@0.4.9': + resolution: {integrity: sha512-MPVpmKGfnQEnrCzgxuXcmPP/y/t6AVm+DcSb2Myp21LKWv1N3l8uFxMggesfF4ixAxkRlGmMMx9GyDC9M+XklQ==} + '@expo/prebuild-config@54.0.8': resolution: {integrity: sha512-EA7N4dloty2t5Rde+HP0IEE+nkAQiu4A/+QGZGT9mFnZ5KKjPPkqSyYcRvP5bhQE10D+tvz6X0ngZpulbMdbsg==} peerDependencies: @@ -2100,6 +2109,10 @@ packages: resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/expect-utils@30.4.1': + resolution: {integrity: sha512-ZBn5CglH8fBsQsvs4VWNzD4aWfUYks+IdOOQU3MEK71ol/BcVm+P+rtb1KpiFBpSWSCE27uOahyyf1vfqOVbcQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + '@jest/expect@29.7.0': resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -2116,6 +2129,10 @@ packages: resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/pattern@30.4.0': + resolution: {integrity: sha512-RAWn3+f9u8BsHijKJ71uHcFp6vmyEt6VvoWXkl6hKF3qVIuWNmudVjg12DlBPGup/frIl5UcUlH5HfEuvHpEXg==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + '@jest/reporters@29.7.0': resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -2153,6 +2170,10 @@ packages: resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/types@30.4.1': + resolution: {integrity: sha512-f1x/vJXIfjOlEmejYpbkbgw1gOqpPECwMvMEtBqe47j7H2Hg8h8w3o3ikhSXq3MI15kg+oQ0exWO0uCtTNJLoQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + '@jridgewell/gen-mapping@0.3.13': resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} @@ -3176,6 +3197,20 @@ packages: resolution: {integrity: sha512-fB7M1CMOCIUudTRuj7kzxIBTVw2KXnsgbQ6+4cbqSxo8NmRRhA0Ul4ZUzZj3rFd3VznTL4Brmocv1oiN0bWZ8w==} engines: {node: '>= 20.19.4'} + '@react-native/js-polyfills@0.86.0': + resolution: {integrity: sha512-zYy/Cjd1VTnZ2iCNaG9bDF9C3l2ntESiPRscjIlI5FKugu6aeTwsDSv1aI8Bc4Kp3vEdoVg+UQhLAhE4svREaQ==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + + '@react-native/metro-babel-transformer@0.86.0': + resolution: {integrity: sha512-SjKej3E5qIahqo/G+rSOrmJUQM44RyKtWtO+VfmKAAMoJWkBFomM22hTLKCIS5cdbIAJ9COAmU+KAi2wVSO0wQ==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + peerDependencies: + '@babel/core': '*' + + '@react-native/metro-config@0.86.0': + resolution: {integrity: sha512-7v+xbTeEci9ZcQ/Z1OqI4RXcqN69wSMDYL5BAMvOReZ7U04+aDQ0/SQhClYPn6x2/RxM4WzMKSAuNyLKqvYVtw==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + '@react-native/normalize-colors@0.81.5': resolution: {integrity: sha512-0HuJ8YtqlTVRXGZuGeBejLE04wSQsibpTI+RGOyVqxZvgtlLLC/Ssw0UmbHhT4lYMp2fhdtvKZSs5emWB1zR/g==} @@ -3622,6 +3657,9 @@ packages: '@types/jest@29.5.14': resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==} + '@types/jest@30.0.0': + resolution: {integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==} + '@types/jsdom@20.0.1': resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} @@ -3924,6 +3962,10 @@ packages: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} engines: {node: '>= 0.6'} + accepts@2.0.0: + resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} + engines: {node: '>= 0.6'} + acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} @@ -4198,6 +4240,18 @@ packages: expo: optional: true + babel-preset-expo@54.0.12: + resolution: {integrity: sha512-6xeSkdaixmQhWSYL7tfLu0pOS0BY+8ftwmdNSHtpEFSizrXYZkCjk/B6Dxr+6nwNRihixMcS0aBlWS1wlDl3pw==} + peerDependencies: + '@babel/runtime': ^7.20.0 + expo: '*' + react-refresh: '>=0.14.0 <1.0.0' + peerDependenciesMeta: + '@babel/runtime': + optional: true + expo: + optional: true + babel-preset-jest@29.6.3: resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -4397,6 +4451,10 @@ packages: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} + ci-info@4.4.0: + resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} + engines: {node: '>=8'} + cjs-module-lexer@1.4.3: resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==} @@ -5131,6 +5189,10 @@ packages: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + expect@30.4.1: + resolution: {integrity: sha512-PMARsyh/JtqC20HoGqlFcIlQAyqUtW4PlI1rup1uhYJtKuwAjbvWi3GQMAn+STdHum/dk8xrKfUM1+5SAwpolA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + expo-age-range@0.2.18: resolution: {integrity: sha512-WThjp0/islDlysxRkamXmS9D2zU/T7P5fIizIBPaajfG4C+tjL7psFZp6R6l0eDkYJkYO+VPJRMr5NrQQAu6nQ==} peerDependencies: @@ -5226,6 +5288,12 @@ packages: expo: '*' react-native: '*' + expo-file-system@19.0.23: + resolution: {integrity: sha512-MeGkid9OeNILfT/qonaXHp4f2c15xaB28U/bcN7pqZej0Kx0+6+V7e9ZIXpPHm07zVatxA+QkMTPQEGfmvVOxA==} + peerDependencies: + expo: '*' + react-native: '*' + expo-font@14.0.11: resolution: {integrity: sha512-ga0q61ny4s/kr4k8JX9hVH69exVSIfcIc19+qZ7gt71Mqtm7xy2c6kwsPTCyhBW2Ro5yXTT8EaZOpuRi35rHbg==} peerDependencies: @@ -5233,8 +5301,15 @@ packages: react: '*' react-native: '*' - expo-glass-effect@55.0.8: - resolution: {integrity: sha512-IvUjHb/4t6r2H/LXDjcQ4uDoHrmO2cLOvEb9leLavQ4HX5+P4LRtQrMDMlkWAn5Wo5DkLcG8+1CrQU2nqgogTA==} + expo-font@14.0.12: + resolution: {integrity: sha512-QQzunE2Mxk45AsCWm3tK7OpVljbtVnKD58q4/qliev+cbye1IOduUnRIdD+P7DyButw17G9MTX795kgaQiz5hQ==} + peerDependencies: + expo: '*' + react: '*' + react-native: '*' + + expo-glass-effect@0.1.10: + resolution: {integrity: sha512-R0OrsMbs2TxFQZp26rRDl1Wxu5PaBXM7qAxiT0Bfyb1bojr3eI90bMKry9lBM3aKbq7DOBXYT7ePrE3vUaf41g==} peerDependencies: expo: '*' react: '*' @@ -5320,8 +5395,8 @@ packages: expo: '*' react-native: '*' - expo-modules-autolinking@3.0.25: - resolution: {integrity: sha512-YmHWctJlwvOuLZccg3cOXvSiXVJrPMKl7g2YR0YHWoGL9v2RvcmgaPJWPSLVW+voNEgEPsbo5UmUrAqbnYcBeg==} + expo-modules-autolinking@3.0.26: + resolution: {integrity: sha512-WOaud6UKg16ciCOj8raKcMOoKFMHLXKI29U29yhgu1lf+Y7VxJyCktUcYo6AM+ccZ7zLD1uWZdMtgnpf+95OXA==} hasBin: true expo-modules-core@3.0.30: @@ -5344,8 +5419,8 @@ packages: react: '*' react-native: '*' - expo-privacy-sensitive@0.1.0: - resolution: {integrity: sha512-N0xa8yz+u7HvGY5CqZeo5cwtTOyFQxOxxt15jeW1eAjLKZAcNrtrDGGJP18TX2eh5TfJ3I6OtmECJg9Q8+Yorw==} + expo-privacy-sensitive@0.2.0: + resolution: {integrity: sha512-vHCpDJ7/VGMAGBobxslWemZxTpD3MfpAU6xvyIze+1LoTxdeYbGzUs0JeH1d8D+lrV9gV4cuFfvTmV1tHy9o9w==} peerDependencies: expo: '*' react: '*' @@ -5363,8 +5438,8 @@ packages: expo: '*' react-native: '*' - expo-server@1.0.6: - resolution: {integrity: sha512-vb5TBtskvEdzYuW79lATXutOEBfW5m6U4EFpNjCVZTnI7S//SAsLQkYEpn+EDfn84m6VQfzSGkIVR6YPaScKFA==} + expo-server@1.0.7: + resolution: {integrity: sha512-mcmyML3oXcqFUXUxtdtCL1O00ztNI2v76d+MdniXRUgHNxIcHZ05zo+DqBaOOT6LQnPk4vA4YHqQl7iGUfRb3g==} engines: {node: '>=20.16.0'} expo-sharing@14.0.8: @@ -5426,8 +5501,8 @@ packages: expo: '*' react-native: '*' - expo@54.0.34: - resolution: {integrity: sha512-XkVHguZZDC8BcTQxHAd14/TQFbDp1Wt0Z/KApO9t68Ll5A127hLCPzU+a9gytfCIiyL/V1IpF1vIcOLKEVAoNQ==} + expo@54.0.35: + resolution: {integrity: sha512-E+tXpQwjGm5fK/uwa55p0Xx/kuo5dXDKfVJ95IargTNa5KiFt26lSTXXa9KnHbI4EDLwFD38/xTKZvzPTlGTdg==} hasBin: true peerDependencies: '@expo/dom-webview': '*' @@ -5763,6 +5838,12 @@ packages: hermes-estree@0.32.0: resolution: {integrity: sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ==} + hermes-estree@0.35.0: + resolution: {integrity: sha512-xVx5Opwy8Oo1I5yGpVRhCvWL/iV3M+ylksSKVNlxxD90cpDpR/AR1jLYqK8HWihm065a6UI3HeyAmYzwS8NOOg==} + + hermes-estree@0.36.0: + resolution: {integrity: sha512-A1+8zn5oss2CFP7pKsOaxorQG6FNIz1WU1VDqruLPPZl3LVgeE2C5xfFg8Ow6/Ow4mSslLLtYP1J3n38eKyW9w==} + hermes-parser@0.25.1: resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} @@ -5772,6 +5853,12 @@ packages: hermes-parser@0.32.0: resolution: {integrity: sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw==} + hermes-parser@0.35.0: + resolution: {integrity: sha512-9JLjeHxBx8T4CAsydZR49PNZUaix+WpQJwu9p2010lu+7Kwl6D/7wYFFJxoz+aXkaaClp9Zfg6W6/zVlSJORaA==} + + hermes-parser@0.36.0: + resolution: {integrity: sha512-GdpwMmH5x6IpC1cijvcvYnlPB60Mh6kTSF/NFdYV/j56gYdi+0RIakYs+eqOV+bbO0SW7mgVVGSsTJxyPQfo3w==} + hls.js@1.6.16: resolution: {integrity: sha512-VSIRpLfRwlAAdGL4wiTucx2ScRipo0ed1FBatWkyt832jC4CReKstga6yIhYVwGu9LOBjuX9wzmRMeQdBJtzEA==} @@ -6276,10 +6363,18 @@ packages: resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-message-util@30.4.1: + resolution: {integrity: sha512-kwCKIvq0MCW1HzLoGola9Te6JUdzgV0loyKJ3Qghrkz9i5/RRIHsL95BMQc2HBBhlBKC4j22K9p11TGHH8RBpQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + jest-mock@29.7.0: resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-mock@30.4.1: + resolution: {integrity: sha512-/i8SVb8/NSB7RfNi8gfqu8gxLV23KaL5EpAttyb9iz8qWRIqXRLflycz/32wXsYkOnaUlx8NAKnJYtpsmXUmfw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + jest-pnp-resolver@1.2.3: resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} @@ -6293,6 +6388,10 @@ packages: resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-regex-util@30.4.0: + resolution: {integrity: sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + jest-resolve-dependencies@29.7.0: resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -6317,6 +6416,10 @@ packages: resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-util@30.4.1: + resolution: {integrity: sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + jest-validate@29.7.0: resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -6692,60 +6795,118 @@ packages: resolution: {integrity: sha512-1vxlvj2yY24ES1O5RsSIvg4a4WeL7PFXgKOHvXTXiW0deLvQr28ExXj6LjwCCDZ4YZLhq6HddLpZnX4dEdSq5g==} engines: {node: '>=20.19.4'} + metro-babel-transformer@0.84.4: + resolution: {integrity: sha512-rvCfz8snl9h20VcvpOHxZuHP1SlAkv4HXbzw7nyyVwu6Eqo5PRerbakQ9XmUCOsRy70spJ37O+G1TK8oMzo48g==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-cache-key@0.83.3: resolution: {integrity: sha512-59ZO049jKzSmvBmG/B5bZ6/dztP0ilp0o988nc6dpaDsU05Cl1c/lRf+yx8m9WW/JVgbmfO5MziBU559XjI5Zw==} engines: {node: '>=20.19.4'} + metro-cache-key@0.84.4: + resolution: {integrity: sha512-wVO79aGrkYImpnaVS4+d5RrRBRPX31QtvKB3wKGBuiNSznduZTQHzsrJZRroFJSwnygrzdsGUtDQPuqqFjFdvw==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-cache@0.83.3: resolution: {integrity: sha512-3jo65X515mQJvKqK3vWRblxDEcgY55Sk3w4xa6LlfEXgQ9g1WgMh9m4qVZVwgcHoLy0a2HENTPCCX4Pk6s8c8Q==} engines: {node: '>=20.19.4'} + metro-cache@0.84.4: + resolution: {integrity: sha512-gpcFQdSLUwUCk71saKoE64jLFbx2nwTfVCcPSULMNT8QYq0p1eZZE29Jvd0HtT/UlhC3ZOutLxJME5xqD2JUZg==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-config@0.83.3: resolution: {integrity: sha512-mTel7ipT0yNjKILIan04bkJkuCzUUkm2SeEaTads8VfEecCh+ltXchdq6DovXJqzQAXuR2P9cxZB47Lg4klriA==} engines: {node: '>=20.19.4'} + metro-config@0.84.4: + resolution: {integrity: sha512-PMotGDjXcXLWo2TMRH+VR99phFNgYTwqh4OoieIKK3yTJa1Jmkl+fZJxDO0jfBvNF+WESHciHvpNuBtXaF3B0Q==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-core@0.83.3: resolution: {integrity: sha512-M+X59lm7oBmJZamc96usuF1kusd5YimqG/q97g4Ac7slnJ3YiGglW5CsOlicTR5EWf8MQFxxjDoB6ytTqRe8Hw==} engines: {node: '>=20.19.4'} + metro-core@0.84.4: + resolution: {integrity: sha512-HONpWC5LGXZn3ffkd4Hu6AIrfE7j4Z0g0wMo/goV24WOB3lhuFZ40KgvaDiSw8iyQHloMYay5N/wPX+z8oN/PQ==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-file-map@0.83.3: resolution: {integrity: sha512-jg5AcyE0Q9Xbbu/4NAwwZkmQn7doJCKGW0SLeSJmzNB9Z24jBe0AL2PHNMy4eu0JiKtNWHz9IiONGZWq7hjVTA==} engines: {node: '>=20.19.4'} + metro-file-map@0.84.4: + resolution: {integrity: sha512-KSVDi/u60hKPx++NLu3MTIvyjzNoJnFAF8PQFxaj1jiSka/wjw+Ua6sNuJ0TDHQv+7AAoFQxeMgaRAe8Yic5wQ==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-minify-terser@0.83.3: resolution: {integrity: sha512-O2BmfWj6FSfzBLrNCXt/rr2VYZdX5i6444QJU0fFoc7Ljg+Q+iqebwE3K0eTvkI6TRjELsXk1cjU+fXwAR4OjQ==} engines: {node: '>=20.19.4'} + metro-minify-terser@0.84.4: + resolution: {integrity: sha512-5qpbaVOMC7CPitIpuewzVeGw7E+C3ykbv2mqTjQLl85Z3annSVGlSCTcsZjqXZzjupfK4Ztj3dDc4kc44NZwtQ==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-resolver@0.83.3: resolution: {integrity: sha512-0js+zwI5flFxb1ktmR///bxHYg7OLpRpWZlBBruYG8OKYxeMP7SV0xQ/o/hUelrEMdK4LJzqVtHAhBm25LVfAQ==} engines: {node: '>=20.19.4'} + metro-resolver@0.84.4: + resolution: {integrity: sha512-1qLgbxQ5ZGhhutuPot1Yp348ofDsATL2WkrHF65TobqTT9K3P9qJXw38bomk7ncp5B7OYMfWwtyBZo1lCV792A==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-runtime@0.83.3: resolution: {integrity: sha512-JHCJb9ebr9rfJ+LcssFYA2x1qPYuSD/bbePupIGhpMrsla7RCwC/VL3yJ9cSU+nUhU4c9Ixxy8tBta+JbDeZWw==} engines: {node: '>=20.19.4'} + metro-runtime@0.84.4: + resolution: {integrity: sha512-Jibypds4g7AhzdRKY+kDoj51s5EXMwgyp5ddtlreDAsWefMdOx+agWqgm0H2XSZ/ueanHHVM89fnf5OJnlxa8Q==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-source-map@0.83.3: resolution: {integrity: sha512-xkC3qwUBh2psVZgVavo8+r2C9Igkk3DibiOXSAht1aYRRcztEZNFtAMtfSB7sdO2iFMx2Mlyu++cBxz/fhdzQg==} engines: {node: '>=20.19.4'} + metro-source-map@0.84.4: + resolution: {integrity: sha512-jbWkPxIesVuo1IWkvezmMJld6iu8nD62GsrZiV6jP37AOdbo4OBq1FJ+qkOg8sV05wAHB//jAbziuW0SlJfW4g==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-symbolicate@0.83.3: resolution: {integrity: sha512-F/YChgKd6KbFK3eUR5HdUsfBqVsanf5lNTwFd4Ca7uuxnHgBC3kR/Hba/RGkenR3pZaGNp5Bu9ZqqP52Wyhomw==} engines: {node: '>=20.19.4'} hasBin: true + metro-symbolicate@0.84.4: + resolution: {integrity: sha512-OnfpacxUqGPZQ27t8qK9mFa7uqHIlVWeqRqkCbvMvreEBiamEeOn8krKtcwgP5M4cYDPwuSmCTopHMVthqG4zA==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + hasBin: true + metro-transform-plugins@0.83.3: resolution: {integrity: sha512-eRGoKJU6jmqOakBMH5kUB7VitEWiNrDzBHpYbkBXW7C5fUGeOd2CyqrosEzbMK5VMiZYyOcNFEphvxk3OXey2A==} engines: {node: '>=20.19.4'} + metro-transform-plugins@0.84.4: + resolution: {integrity: sha512-kehr6HbAecqD0/a3xLXobELdPaAmRAl8bel0qagPF4vhZtux93nS8S4eq2kgKt6J2GnQpVjSoW1PXdst04mwow==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-transform-worker@0.83.3: resolution: {integrity: sha512-Ztekew9t/gOIMZX1tvJOgX7KlSLL5kWykl0Iwu2cL2vKMKVALRl1hysyhUw0vjpAvLFx+Kfq9VLjnHIkW32fPA==} engines: {node: '>=20.19.4'} + metro-transform-worker@0.84.4: + resolution: {integrity: sha512-W1IYMvvXTu4MxYr7d9h7CeG2vpIr3bmLLIavkPY4O1ilzDrvS8z/NEe6y+pC44Ff7raMXQgYSfdqDUwN/i39gg==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro@0.83.3: resolution: {integrity: sha512-+rP+/GieOzkt97hSJ0MrPOuAH/jpaS21ZDvL9DJ35QYRDlQcwzcvUlGUf79AnQxq/2NPiS/AULhhM4TKutIt8Q==} engines: {node: '>=20.19.4'} hasBin: true + metro@0.84.4: + resolution: {integrity: sha512-8ETTubqfD6ornDy2zYDvRcKnVDOXdFJsjetYDBsY4oAsb6NJkiwFR+FaMESyGppFmQUyBQA4H4sFGxzcQSGtFA==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + hasBin: true + micromatch@4.0.8: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} @@ -6762,6 +6923,10 @@ packages: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} + mime-types@3.0.2: + resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==} + engines: {node: '>=18'} + mime@1.6.0: resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} engines: {node: '>=4'} @@ -6871,6 +7036,10 @@ packages: resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==} engines: {node: '>= 0.6'} + negotiator@1.0.0: + resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==} + engines: {node: '>= 0.6'} + neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} @@ -7056,6 +7225,10 @@ packages: resolution: {integrity: sha512-egUxXCDwoWG06NGCS5s5AdcpnumHKJlfd3HH06P3m9TEMwwScfcY35wpQxbm9oHof+dM/lVH9Rfyu1elTVelSA==} engines: {node: '>=20.19.4'} + ob1@0.84.4: + resolution: {integrity: sha512-eJXMpz4aQHXF/YBB9ddqZDIS+ooO91hObo9FoW/xBkr54/zCwYYCDqT/O54vNo8kOkWs5Ou/y28NgdrV0edQNA==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -7780,7 +7953,7 @@ packages: react: '>= 18.2.0' react-native: '*' react-native-gesture-handler: '>= 2.0.0' - react-native-reanimated: 3.19.1 + react-native-reanimated: 4.3.2 react-native-edge-to-edge@1.8.1: resolution: {integrity: sha512-bhvsKqeX9PGkY9wBUk9vni/tJNJdKtLPbs/j3e/3CdV4JmUWfTXYYoL+4Hc8Wmej+5eJxkc8KOFa454ruFWBCA==} @@ -7788,14 +7961,8 @@ packages: react: '*' react-native: '*' - react-native-gesture-handler@2.28.0: - resolution: {integrity: sha512-0msfJ1vRxXKVgTgvL+1ZOoYw3/0z1R+Ked0+udoJhyplC2jbVKIJ8Z1bzWdpQRCV3QcQ87Op0zJVE5DhKK2A0A==} - peerDependencies: - react: '*' - react-native: '*' - - react-native-is-edge-to-edge@1.1.7: - resolution: {integrity: sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==} + react-native-gesture-handler@2.30.1: + resolution: {integrity: sha512-xIUBDo5ktmJs++0fZlavQNvDEE4PsihWhSeJsJtoz4Q6p0MiTM9TgrTgfEgzRR36qGPytFoeq+ShLrVwGdpUdA==} peerDependencies: react: '*' react-native: '*' @@ -7811,7 +7978,13 @@ packages: peerDependencies: react: '*' react-native: '*' - react-native-reanimated: 3.19.1 + react-native-reanimated: 4.3.2 + + react-native-mmkv@3.3.3: + resolution: {integrity: sha512-GMsfOmNzx0p5+CtrCFRVtpOOMYNJXuksBVARSQrCFaZwjUyHJdQzcN900GGaFFNTxw2fs8s5Xje//RDKj9+PZA==} + peerDependencies: + react: '*' + react-native: '*' react-native-pager-view@6.8.0: resolution: {integrity: sha512-/wgFV8nB4TLnQ6j9e3TvNrHbPF5TINMZHaXt86GOV0NSJNMVGkWguniJVKrYLm85LL8KVhRkgdh43Rdu7PvW1A==} @@ -7833,12 +8006,12 @@ packages: react-native: '*' react-native-svg: '*' - react-native-reanimated@3.19.1: - resolution: {integrity: sha512-ILL0FSNzSVIg6WuawrsMBvNxk2yJFiTUcahimXDAeNiE/09eagVUlHhYWXAAmH0umvAOafBaGjO7YfBhUrf5ZQ==} + react-native-reanimated@4.3.2: + resolution: {integrity: sha512-lDie7N6FQbALmdAFqP1RbM/Rrj6eHLHu+qAPCgVCam5WLSwUwIGGtZZEn2lVftWRWNCx4oemVGlcL7X9nsLHqA==} peerDependencies: - '@babel/core': ^7.0.0-0 react: '*' - react-native: '*' + react-native: 0.81 - 0.85 + react-native-worklets: 0.8.3 react-native-safe-area-context@5.6.2: resolution: {integrity: sha512-4XGqMNj5qjUTYywJqpdWZ9IG8jgkS3h06sfVjfw5yZQZfWnRFXczi0GnYyFyCc2EBps/qFmoCH8fez//WumdVg==} @@ -7858,8 +8031,8 @@ packages: react: '*' react-native: '*' - react-native-uitextview@1.4.0: - resolution: {integrity: sha512-itm/frzkn/ma3+lwmKn2CkBOXPNo4bL8iVwQwjlzix5gVO59T2+axdfoj/Wi+Ra6F76KzNKxSah+7Y8dYmCHbQ==} + react-native-uitextview@2.2.0: + resolution: {integrity: sha512-Vbv3cTAuyfkYrfsR2YKFsOd9OYgfys+IX5yvvYY7Wd6TrOd6FSGrX93xtQHjeLXV1ds6fDJcFJsuLi3S4Ypr8A==} peerDependencies: react: '*' react-native: '*' @@ -7892,6 +8065,14 @@ packages: react: '*' react-native: '*' + react-native-worklets@0.8.3: + resolution: {integrity: sha512-oCBJROyLU7yG/1R8s0INMflygTH71bx+5XcYkH0CM938TlhSoVbiunE1WVW5FZa51vwYqfLie/IXMX2s1Kh3eg==} + peerDependencies: + '@babel/core': '*' + '@react-native/metro-config': '*' + react: '*' + react-native: 0.81 - 0.85 + react-native@0.81.5: resolution: {integrity: sha512-1w+/oSjEXZjMqsIvmkCRsOc8UBYv163bTWKTI8+1mxztvQPhCRYGTvZ/PL1w16xXHneIj/SLGfxWg2GWN2uexw==} engines: {node: '>= 20.19.4'} @@ -8310,7 +8491,7 @@ packages: react: '*' react-native: '*' react-native-gesture-handler: '>=2.16.1' - react-native-reanimated: 3.19.1 + react-native-reanimated: 4.3.2 react-native-safe-area-context: '>=4.10.5' react-native-screens: 4.24.0 react-native-svg: '>=15.6.0' @@ -10143,86 +10324,82 @@ snapshots: '@bcoe/v8-coverage@0.2.3': {} - '@bitdrift/react-native@0.6.14(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bitdrift/react-native@0.6.14(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: '@expo/config-plugins': 9.1.7 fast-json-stringify: 6.4.0 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - supports-color '@braintree/sanitize-url@6.0.4': {} - '@bsky.app/alf@0.1.15(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/alf@0.1.15(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-responsive: 10.0.1(react@19.1.0) - '@bsky.app/expo-dynamic-app-icon@1.8.5(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/expo-dynamic-app-icon@1.8.5(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: '@expo/image-utils': 0.8.12 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) xcode: 3.0.1 - '@bsky.app/expo-guess-language@0.2.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/expo-guess-language@0.2.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) lande: 1.0.10 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/expo-image-crop-tool@0.5.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/expo-image-crop-tool@0.5.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/expo-scroll-edge-effect@0.1.4(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/expo-scroll-edge-effect@0.1.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@types/jest': 30.0.0 + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/expo-translate-text@0.2.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/expo-translate-text@0.2.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/peek-menu@0.3.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/peek-menu@0.3.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/react-native-mmkv@2.12.5(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/sift@0.3.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - '@bsky.app/sift@0.3.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/tapper@0.6.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tlds@1.261.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - - '@bsky.app/tapper@0.6.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tlds@1.261.0)': - dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) tlds: 1.261.0 - '@bsky.app/video@0.3.6(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/video@0.3.6(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) '@crowdin/cli@4.14.2': dependencies: @@ -10325,7 +10502,7 @@ snapshots: '@esbuild/win32-x64@0.25.12': optional: true - '@expo/cli@54.0.24(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))': + '@expo/cli@54.0.25(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))': dependencies: '@0no-co/graphql.web': 1.2.0 '@expo/code-signing-certificates': 0.0.6 @@ -10334,13 +10511,13 @@ snapshots: '@expo/devcert': 1.2.1 '@expo/env': 2.0.11 '@expo/image-utils': 0.8.12 - '@expo/json-file': 10.0.14 + '@expo/json-file': 10.2.0 '@expo/metro': 54.2.0 - '@expo/metro-config': 54.0.15(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + '@expo/metro-config': 54.0.16(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) '@expo/osascript': 2.4.3 '@expo/package-manager': 1.10.5 - '@expo/plist': 0.4.8 - '@expo/prebuild-config': 54.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + '@expo/plist': 0.4.9 + '@expo/prebuild-config': 54.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) '@expo/schema-utils': 0.1.8 '@expo/spawn-async': 1.7.2 '@expo/ws-tunnel': 1.0.6 @@ -10359,8 +10536,8 @@ snapshots: connect: 3.7.0 debug: 4.4.3 env-editor: 0.4.2 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-server: 1.0.6 + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-server: 1.0.7 freeport-async: 2.0.0 getenv: 2.0.0 glob: 13.0.6 @@ -10392,7 +10569,7 @@ snapshots: wrap-ansi: 7.0.0 ws: 8.20.1 optionalDependencies: - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - bufferutil - graphql @@ -10470,12 +10647,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/devtools@0.1.8(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@expo/devtools@0.1.8(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: chalk: 4.1.2 optionalDependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) '@expo/env@2.0.11': dependencies: @@ -10520,19 +10697,29 @@ snapshots: '@babel/code-frame': 7.29.0 json5: 2.2.3 + '@expo/json-file@10.0.16': + dependencies: + '@babel/code-frame': 7.10.4 + json5: 2.2.3 + + '@expo/json-file@10.2.0': + dependencies: + '@babel/code-frame': 7.29.0 + json5: 2.2.3 + '@expo/json-file@9.1.5': dependencies: '@babel/code-frame': 7.10.4 json5: 2.2.3 - '@expo/metro-config@54.0.15(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))': + '@expo/metro-config@54.0.16(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))': dependencies: '@babel/code-frame': 7.29.0 '@babel/core': 7.29.0 '@babel/generator': 7.29.1 '@expo/config': 12.0.13 '@expo/env': 2.0.11 - '@expo/json-file': 10.0.14 + '@expo/json-file': 10.0.16 '@expo/metro': 54.2.0 '@expo/spawn-async': 1.7.2 browserslist: 4.28.2 @@ -10549,7 +10736,7 @@ snapshots: postcss: 8.4.49 resolve-from: 5.0.0 optionalDependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - bufferutil - supports-color @@ -10601,7 +10788,13 @@ snapshots: base64-js: 1.5.1 xmlbuilder: 15.1.1 - '@expo/prebuild-config@54.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))': + '@expo/plist@0.4.9': + dependencies: + '@xmldom/xmldom': 0.8.13 + base64-js: 1.5.1 + xmlbuilder: 15.1.1 + + '@expo/prebuild-config@54.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))': dependencies: '@expo/config': 12.0.13 '@expo/config-plugins': 54.0.4 @@ -10610,7 +10803,7 @@ snapshots: '@expo/json-file': 10.0.14 '@react-native/normalize-colors': 0.81.5 debug: 4.4.3 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) resolve-from: 5.0.0 semver: 7.8.0 xml2js: 0.6.0 @@ -10627,13 +10820,13 @@ snapshots: '@expo/sudo-prompt@9.3.2': {} - '@expo/vector-icons@15.1.1(expo-font@14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@expo/vector-icons@15.1.1(expo-font@14.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo-font: 14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-font: 14.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@expo/webpack-config@19.0.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(postcss@8.5.14)': + '@expo/webpack-config@19.0.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(postcss@8.5.14)': dependencies: '@babel/core': 7.29.0 babel-loader: 8.4.1(@babel/core@7.29.0)(webpack@5.106.2(postcss@8.5.14)) @@ -10642,8 +10835,8 @@ snapshots: copy-webpack-plugin: 10.2.4(webpack@5.106.2(postcss@8.5.14)) css-loader: 6.11.0(webpack@5.106.2(postcss@8.5.14)) css-minimizer-webpack-plugin: 3.4.1(webpack@5.106.2(postcss@8.5.14)) - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-pwa: 0.0.127(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-pwa: 0.0.127(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) find-up: 5.0.0 find-yarn-workspace-root: 2.0.0 fs-extra: 11.3.5 @@ -10846,6 +11039,10 @@ snapshots: dependencies: jest-get-type: 29.6.3 + '@jest/expect-utils@30.4.1': + dependencies: + '@jest/get-type': 30.1.0 + '@jest/expect@29.7.0': dependencies: expect: 29.7.0 @@ -10873,6 +11070,11 @@ snapshots: transitivePeerDependencies: - supports-color + '@jest/pattern@30.4.0': + dependencies: + '@types/node': 24.12.4 + jest-regex-util: 30.4.0 + '@jest/reporters@29.7.0': dependencies: '@bcoe/v8-coverage': 0.2.3 @@ -10959,6 +11161,16 @@ snapshots: '@types/yargs': 17.0.35 chalk: 4.1.2 + '@jest/types@30.4.1': + dependencies: + '@jest/pattern': 30.4.0 + '@jest/schemas': 30.4.1 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 24.12.4 + '@types/yargs': 17.0.35 + chalk: 4.1.2 + '@jridgewell/gen-mapping@0.3.13': dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -11932,10 +12144,10 @@ snapshots: '@radix-ui/rect@1.1.1': {} - '@react-native-async-storage/async-storage@2.2.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))': + '@react-native-async-storage/async-storage@2.2.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))': dependencies: merge-options: 3.0.4 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) '@react-native/assets-registry@0.81.5': {} @@ -12007,7 +12219,7 @@ snapshots: nullthrows: 1.1.1 yargs: 17.7.2 - '@react-native/community-cli-plugin@0.81.5': + '@react-native/community-cli-plugin@0.81.5(@react-native/metro-config@0.86.0(@babel/core@7.29.0))': dependencies: '@react-native/dev-middleware': 0.81.5 debug: 4.4.3 @@ -12016,6 +12228,8 @@ snapshots: metro-config: 0.83.3 metro-core: 0.83.3 semver: 7.8.0 + optionalDependencies: + '@react-native/metro-config': 0.86.0(@babel/core@7.29.0) transitivePeerDependencies: - bufferutil - supports-color @@ -12045,28 +12259,51 @@ snapshots: '@react-native/js-polyfills@0.81.5': {} + '@react-native/js-polyfills@0.86.0': {} + + '@react-native/metro-babel-transformer@0.86.0(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@react-native/babel-preset': 0.81.5(@babel/core@7.29.0) + hermes-parser: 0.36.0 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + '@react-native/metro-config@0.86.0(@babel/core@7.29.0)': + dependencies: + '@react-native/js-polyfills': 0.86.0 + '@react-native/metro-babel-transformer': 0.86.0(@babel/core@7.29.0) + metro-config: 0.84.4 + metro-runtime: 0.84.4 + transitivePeerDependencies: + - '@babel/core' + - bufferutil + - supports-color + - utf-8-validate + '@react-native/normalize-colors@0.81.5': {} '@react-native/typescript-config@0.81.6': {} - '@react-native/virtualized-lists@0.81.5(@types/react@19.1.17)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@react-native/virtualized-lists@0.81.5(@types/react@19.1.17)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) optionalDependencies: '@types/react': 19.1.17 - '@react-navigation/bottom-tabs@7.16.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': - dependencies: - '@react-navigation/elements': 2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + ? '@react-navigation/bottom-tabs@7.16.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)' + : dependencies: + '@react-navigation/elements': 2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) color: 4.2.3 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-screens: 4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-screens: 4.24.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) sf-symbols-typescript: 2.2.0 transitivePeerDependencies: - '@react-native-masked-view/masked-view' @@ -12083,38 +12320,38 @@ snapshots: use-latest-callback: 0.2.6(react@19.1.0) use-sync-external-store: 1.6.0(react@19.1.0) - '@react-navigation/elements@2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@react-navigation/elements@2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) color: 4.2.3 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) use-latest-callback: 0.2.6(react@19.1.0) use-sync-external-store: 1.6.0(react@19.1.0) - '@react-navigation/native-stack@7.15.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': - dependencies: - '@react-navigation/elements': 2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + ? '@react-navigation/native-stack@7.15.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)' + : dependencies: + '@react-navigation/elements': 2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) color: 4.2.3 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-screens: 4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-screens: 4.24.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) sf-symbols-typescript: 2.2.0 warn-once: 0.1.1 transitivePeerDependencies: - '@react-native-masked-view/masked-view' - '@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: '@react-navigation/core': 7.17.4(react@19.1.0) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.12 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) use-latest-callback: 0.2.6(react@19.1.0) '@react-navigation/routers@7.5.5': @@ -12254,7 +12491,7 @@ snapshots: dependencies: '@sentry/core': 10.64.0 - '@sentry/react-native@8.18.0(@expo/env@2.0.11)(dotenv@16.6.1)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@sentry/react-native@8.18.0(@expo/env@2.0.11)(dotenv@16.6.1)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: '@sentry/babel-plugin-component-annotate': 5.3.0 '@sentry/browser': 10.64.0 @@ -12263,9 +12500,9 @@ snapshots: '@sentry/expo-upload-sourcemaps': 8.18.0(patch_hash=2368e1e1986165e7ead3c60017b78b2f9ade1b6a6b2f5ad27cd428608c6f12ae)(@expo/env@2.0.11)(dotenv@16.6.1) '@sentry/react': 10.64.0(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) optionalDependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - '@expo/env' - dotenv @@ -12330,13 +12567,13 @@ snapshots: '@tanstack/query-core': 5.100.10 react: 19.1.0 - '@testing-library/react-native@13.3.3(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)': + '@testing-library/react-native@13.3.3(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: jest-matcher-utils: 30.4.1 picocolors: 1.1.1 pretty-format: 30.4.1 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-test-renderer: 19.1.0(react@19.1.0) redent: 3.0.0 optionalDependencies: @@ -12544,6 +12781,11 @@ snapshots: expect: 29.7.0 pretty-format: 29.7.0 + '@types/jest@30.0.0': + dependencies: + expect: 30.4.1 + pretty-format: 30.4.1 + '@types/jsdom@20.0.1': dependencies: '@types/node': 24.12.4 @@ -12821,6 +13063,11 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 + accepts@2.0.0: + dependencies: + mime-types: 3.0.2 + negotiator: 1.0.0 + acorn-globals@7.0.1: dependencies: acorn: 8.16.0 @@ -13126,7 +13373,7 @@ snapshots: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.0) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.29.0) - babel-preset-expo@54.0.10(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2): + babel-preset-expo@54.0.10(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2): dependencies: '@babel/helper-module-imports': 7.28.6 '@babel/plugin-proposal-decorators': 7.29.0(@babel/core@7.29.0) @@ -13153,7 +13400,39 @@ snapshots: resolve-from: 5.0.0 optionalDependencies: '@babel/runtime': 7.29.2 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + transitivePeerDependencies: + - '@babel/core' + - supports-color + + babel-preset-expo@54.0.12(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2): + dependencies: + '@babel/helper-module-imports': 7.28.6 + '@babel/plugin-proposal-decorators': 7.29.0(@babel/core@7.29.0) + '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-syntax-export-default-from': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-class-static-block': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-object-rest-spread': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.29.0) + '@babel/plugin-transform-private-methods': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-private-property-in-object': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-runtime': 7.29.0(@babel/core@7.29.0) + '@babel/preset-react': 7.28.5(@babel/core@7.29.0) + '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0) + '@react-native/babel-preset': 0.81.5(@babel/core@7.29.0) + babel-plugin-react-compiler: 1.0.0 + babel-plugin-react-native-web: 0.21.2 + babel-plugin-syntax-hermes-parser: 0.29.1 + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.29.0) + debug: 4.4.3 + react-refresh: 0.14.2 + resolve-from: 5.0.0 + optionalDependencies: + '@babel/runtime': 7.29.2 + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - '@babel/core' - supports-color @@ -13389,6 +13668,8 @@ snapshots: ci-info@3.9.0: {} + ci-info@4.4.0: {} + cjs-module-lexer@1.4.3: {} clean-css@5.3.3: @@ -14165,198 +14446,219 @@ snapshots: jest-message-util: 29.7.0 jest-util: 29.7.0 - expo-age-range@0.2.18(patch_hash=c325225749993424461eeece1d97a99b19c00da2ebc958a73c12e4eca0c39306)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expect@30.4.1: dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + '@jest/expect-utils': 30.4.1 + '@jest/get-type': 30.1.0 + jest-matcher-utils: 30.4.1 + jest-message-util: 30.4.1 + jest-mock: 30.4.1 + jest-util: 30.4.1 - expo-application@7.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-age-range@0.2.18(patch_hash=c325225749993424461eeece1d97a99b19c00da2ebc958a73c12e4eca0c39306)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-asset@12.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-application@7.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + + expo-asset@12.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@expo/image-utils': 0.8.12 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-constants: 18.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-constants: 18.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - supports-color - expo-blur@15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-blur@15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-build-properties@1.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-build-properties@1.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: ajv: 8.20.0 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) semver: 7.8.0 - expo-camera@17.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-camera@17.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) invariant: 2.2.4 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) optionalDependencies: react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - expo-clipboard@8.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-clipboard@8.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-constants@18.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-constants@18.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: '@expo/config': 12.0.13 '@expo/env': 2.0.11 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - supports-color - expo-contacts@15.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-contacts@15.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-dev-client@6.0.21(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-dev-client@6.0.21(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-dev-launcher: 6.0.21(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-dev-menu: 7.0.19(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-dev-menu-interface: 2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-manifests: 1.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-updates-interface: 2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-dev-launcher: 6.0.21(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-dev-menu: 7.0.19(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-dev-menu-interface: 2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-manifests: 1.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-updates-interface: 2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) transitivePeerDependencies: - supports-color - expo-dev-launcher@6.0.21(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-dev-launcher@6.0.21(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: ajv: 8.20.0 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-dev-menu: 7.0.19(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-manifests: 1.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-dev-menu: 7.0.19(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-manifests: 1.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) transitivePeerDependencies: - supports-color - expo-dev-menu-interface@2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-dev-menu-interface@2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-dev-menu@7.0.19(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-dev-menu@7.0.19(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-dev-menu-interface: 2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-dev-menu-interface: 2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-device@8.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-device@8.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) ua-parser-js: 0.7.41 expo-eas-client@1.0.8: {} - expo-file-system@19.0.22(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-file-system@19.0.22(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-font@14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-file-system@19.0.23(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + + expo-font@14.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) fontfaceobserver: 2.3.0 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-glass-effect@55.0.8(patch_hash=6c9fa5b104e53b87df4e17b320acb3b94d12ac90c0101190045dd620681efff0)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-font@14.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + fontfaceobserver: 2.3.0 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-haptics@15.0.8(patch_hash=b33910ba2753c4eccdc885b449e6e33aa90b9cefa75ca8639762a26013141410)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-glass-effect@0.1.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - - expo-image-loader@6.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): - dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - - expo-image-manipulator@14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): - dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-image-loader: 6.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - - expo-image-picker@17.0.11(patch_hash=47b28f6ddb8bcaa6483f8714c82daaa0001122f2b0dac6c05d19e98a61a6ceab)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): - dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-image-loader: 6.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - - expo-image@3.0.11(patch_hash=6d46ffac33426c5285777da5bf5f88c68c8ce27290595dfa65f38c478930c2c4)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): - dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + + expo-haptics@15.0.8(patch_hash=b33910ba2753c4eccdc885b449e6e33aa90b9cefa75ca8639762a26013141410)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + + expo-image-loader@6.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + + expo-image-manipulator@14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-image-loader: 6.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + + expo-image-picker@17.0.11(patch_hash=47b28f6ddb8bcaa6483f8714c82daaa0001122f2b0dac6c05d19e98a61a6ceab)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-image-loader: 6.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + + expo-image@3.0.11(patch_hash=6d46ffac33426c5285777da5bf5f88c68c8ce27290595dfa65f38c478930c2c4)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) optionalDependencies: react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - expo-intent-launcher@13.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-intent-launcher@13.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-json-utils@0.15.0: {} - expo-keep-awake@15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0): + expo-keep-awake@15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - expo-linear-gradient@15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-linear-gradient@15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-linking@8.0.12(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-linking@8.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo-constants: 18.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + expo-constants: 18.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) invariant: 2.2.4 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - expo - supports-color - expo-localization@17.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0): + expo-localization@17.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 rtl-detect: 1.1.2 - expo-location@19.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-location@19.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-manifests@1.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-manifests@1.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: '@expo/config': 12.0.13 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-json-utils: 0.15.0 transitivePeerDependencies: - supports-color - expo-media-library@18.2.1(patch_hash=2b84c17999bb0c977eaef7fa8ac297f7074d91c94fb63726b42d2a277b26b39a)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-media-library@18.2.1(patch_hash=2b84c17999bb0c977eaef7fa8ac297f7074d91c94fb63726b42d2a277b26b39a)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-modules-autolinking@3.0.25: + expo-modules-autolinking@3.0.26: dependencies: '@expo/spawn-async': 1.7.2 chalk: 4.1.2 @@ -14364,87 +14666,87 @@ snapshots: require-from-string: 2.0.2 resolve-from: 5.0.0 - expo-modules-core@3.0.30(patch_hash=952fb1c8cb6dc8a0d8ef4e1114942a341d89b025e011f1acfff788929997346e)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-modules-core@3.0.30(patch_hash=952fb1c8cb6dc8a0d8ef4e1114942a341d89b025e011f1acfff788929997346e)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: invariant: 2.2.4 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-notifications@0.32.17(patch_hash=a45a8dcf3d8c4b5df4ee0e62bc79b755fcf9d28ca51a6f685b85830bf4afc2e5)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-notifications@0.32.17(patch_hash=a45a8dcf3d8c4b5df4ee0e62bc79b755fcf9d28ca51a6f685b85830bf4afc2e5)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@expo/image-utils': 0.8.12 '@ide/backoff': 1.0.0 abort-controller: 3.0.0 assert: 2.1.0 badgin: 1.2.3 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-application: 7.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-constants: 18.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-application: 7.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-constants: 18.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - supports-color - expo-paste-input@0.2.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-paste-input@0.2.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-privacy-sensitive@0.1.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-privacy-sensitive@0.2.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-pwa@0.0.127(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-pwa@0.0.127(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: '@expo/image-utils': 0.8.12 chalk: 4.1.2 commander: 2.20.0 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) update-check: 1.5.3 - expo-screen-orientation@9.0.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-screen-orientation@9.0.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-server@1.0.6: {} + expo-server@1.0.7: {} - expo-sharing@14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-sharing@14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-sms@14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-sms@14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-splash-screen@31.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-splash-screen@31.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - '@expo/prebuild-config': 54.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@expo/prebuild-config': 54.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - supports-color expo-structured-headers@5.0.0: {} - expo-system-ui@6.0.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-system-ui@6.0.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: '@react-native/normalize-colors': 0.81.5 debug: 4.4.3 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) optionalDependencies: react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - supports-color - expo-updates-interface@2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-updates-interface@2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-updates@29.0.17(patch_hash=04f28cb005b770e9ae8f0065eab96e43cbb1e58107f5f6ad1bdd18f6deb66487)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-updates@29.0.17(patch_hash=04f28cb005b770e9ae8f0065eab96e43cbb1e58107f5f6ad1bdd18f6deb66487)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@expo/code-signing-certificates': 0.0.6 '@expo/plist': 0.4.8 @@ -14452,62 +14754,62 @@ snapshots: arg: 4.1.0 chalk: 4.1.2 debug: 4.4.3 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-eas-client: 1.0.8 - expo-manifests: 1.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-manifests: 1.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-structured-headers: 5.0.0 - expo-updates-interface: 2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-updates-interface: 2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) getenv: 2.0.0 glob: 13.0.6 ignore: 5.3.2 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) resolve-from: 5.0.0 transitivePeerDependencies: - supports-color - expo-video-thumbnails@10.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-video-thumbnails@10.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-video@3.0.16(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-video@3.0.16(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-web-browser@15.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-web-browser@15.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@babel/runtime': 7.29.2 - '@expo/cli': 54.0.24(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + '@expo/cli': 54.0.25(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) '@expo/config': 12.0.13 '@expo/config-plugins': 54.0.4 - '@expo/devtools': 0.1.8(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@expo/devtools': 0.1.8(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@expo/fingerprint': 0.15.5 '@expo/metro': 54.2.0 - '@expo/metro-config': 54.0.15(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - '@expo/vector-icons': 15.1.1(expo-font@14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@expo/metro-config': 54.0.16(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + '@expo/vector-icons': 15.1.1(expo-font@14.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@ungap/structured-clone': 1.3.1 - babel-preset-expo: 54.0.10(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2) - expo-asset: 12.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-constants: 18.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) - expo-file-system: 19.0.22(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) - expo-font: 14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-keep-awake: 15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) - expo-modules-autolinking: 3.0.25 - expo-modules-core: 3.0.30(patch_hash=952fb1c8cb6dc8a0d8ef4e1114942a341d89b025e011f1acfff788929997346e)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + babel-preset-expo: 54.0.12(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2) + expo-asset: 12.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-constants: 18.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) + expo-file-system: 19.0.23(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) + expo-font: 14.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-keep-awake: 15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) + expo-modules-autolinking: 3.0.26 + expo-modules-core: 3.0.30(patch_hash=952fb1c8cb6dc8a0d8ef4e1114942a341d89b025e011f1acfff788929997346e)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) pretty-format: 29.7.0 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-refresh: 0.14.2 whatwg-url-without-unicode: 8.0.0-3 optionalDependencies: - react-native-webview: 13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-webview: 13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - '@babel/core' - bufferutil @@ -14888,6 +15190,10 @@ snapshots: hermes-estree@0.32.0: {} + hermes-estree@0.35.0: {} + + hermes-estree@0.36.0: {} + hermes-parser@0.25.1: dependencies: hermes-estree: 0.25.1 @@ -14900,6 +15206,14 @@ snapshots: dependencies: hermes-estree: 0.32.0 + hermes-parser@0.35.0: + dependencies: + hermes-estree: 0.35.0 + + hermes-parser@0.36.0: + dependencies: + hermes-estree: 0.36.0 + hls.js@1.6.16: {} hoist-non-react-statics@3.3.2: @@ -15455,21 +15769,21 @@ snapshots: jest-mock: 29.7.0 jest-util: 29.7.0 - jest-expo@54.0.17(@babel/core@7.29.0)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + jest-expo@54.0.17(@babel/core@7.29.0)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@expo/config': 12.0.13 '@expo/json-file': 10.0.14 '@jest/create-cache-key-function': 29.7.0 '@jest/globals': 29.7.0 babel-jest: 29.7.0(@babel/core@7.29.0) - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) jest-environment-jsdom: 29.7.0 jest-snapshot: 29.7.0 jest-watch-select-projects: 2.0.0 jest-watch-typeahead: 2.2.1(jest@29.7.0(@types/node@24.12.4)) json5: 2.2.3 lodash: 4.18.1 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-test-renderer: 19.1.0(react@19.1.0) server-only: 0.0.1 stacktrace-js: 2.0.2 @@ -15538,18 +15852,39 @@ snapshots: slash: 3.0.0 stack-utils: 2.0.6 + jest-message-util@30.4.1: + dependencies: + '@babel/code-frame': 7.29.0 + '@jest/types': 30.4.1 + '@types/stack-utils': 2.0.3 + chalk: 4.1.2 + graceful-fs: 4.2.11 + jest-util: 30.4.1 + picomatch: 4.0.4 + pretty-format: 30.4.1 + slash: 3.0.0 + stack-utils: 2.0.6 + jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/node': 24.12.4 jest-util: 29.7.0 + jest-mock@30.4.1: + dependencies: + '@jest/types': 30.4.1 + '@types/node': 24.12.4 + jest-util: 30.4.1 + jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): optionalDependencies: jest-resolve: 29.7.0 jest-regex-util@29.6.3: {} + jest-regex-util@30.4.0: {} + jest-resolve-dependencies@29.7.0: dependencies: jest-regex-util: 29.6.3 @@ -15656,6 +15991,15 @@ snapshots: graceful-fs: 4.2.11 picomatch: 2.3.2 + jest-util@30.4.1: + dependencies: + '@jest/types': 30.4.1 + '@types/node': 24.12.4 + chalk: 4.1.2 + ci-info: 4.4.0 + graceful-fs: 4.2.11 + picomatch: 4.0.4 + jest-validate@29.7.0: dependencies: '@jest/types': 29.6.3 @@ -16048,10 +16392,24 @@ snapshots: transitivePeerDependencies: - supports-color + metro-babel-transformer@0.84.4: + dependencies: + '@babel/core': 7.29.0 + flow-enums-runtime: 0.0.6 + hermes-parser: 0.35.0 + metro-cache-key: 0.84.4 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + metro-cache-key@0.83.3: dependencies: flow-enums-runtime: 0.0.6 + metro-cache-key@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + metro-cache@0.83.3: dependencies: exponential-backoff: 3.1.3 @@ -16061,6 +16419,15 @@ snapshots: transitivePeerDependencies: - supports-color + metro-cache@0.84.4: + dependencies: + exponential-backoff: 3.1.3 + flow-enums-runtime: 0.0.6 + https-proxy-agent: 7.0.6 + metro-core: 0.84.4 + transitivePeerDependencies: + - supports-color + metro-config@0.83.3: dependencies: connect: 3.7.0 @@ -16076,12 +16443,33 @@ snapshots: - supports-color - utf-8-validate + metro-config@0.84.4: + dependencies: + connect: 3.7.0 + flow-enums-runtime: 0.0.6 + jest-validate: 29.7.0 + metro: 0.84.4 + metro-cache: 0.84.4 + metro-core: 0.84.4 + metro-runtime: 0.84.4 + yaml: 2.9.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + metro-core@0.83.3: dependencies: flow-enums-runtime: 0.0.6 lodash.throttle: 4.1.1 metro-resolver: 0.83.3 + metro-core@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + lodash.throttle: 4.1.1 + metro-resolver: 0.84.4 + metro-file-map@0.83.3: dependencies: debug: 4.4.3 @@ -16096,20 +16484,48 @@ snapshots: transitivePeerDependencies: - supports-color + metro-file-map@0.84.4: + dependencies: + debug: 4.4.3 + fb-watchman: 2.0.2 + flow-enums-runtime: 0.0.6 + graceful-fs: 4.2.11 + invariant: 2.2.4 + jest-worker: 29.7.0 + micromatch: 4.0.8 + nullthrows: 1.1.1 + walker: 1.0.8 + transitivePeerDependencies: + - supports-color + metro-minify-terser@0.83.3: dependencies: flow-enums-runtime: 0.0.6 terser: 5.47.1 + metro-minify-terser@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + terser: 5.47.1 + metro-resolver@0.83.3: dependencies: flow-enums-runtime: 0.0.6 + metro-resolver@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + metro-runtime@0.83.3: dependencies: '@babel/runtime': 7.29.2 flow-enums-runtime: 0.0.6 + metro-runtime@0.84.4: + dependencies: + '@babel/runtime': 7.29.2 + flow-enums-runtime: 0.0.6 + metro-source-map@0.83.3: dependencies: '@babel/traverse': 7.29.0 @@ -16125,6 +16541,20 @@ snapshots: transitivePeerDependencies: - supports-color + metro-source-map@0.84.4: + dependencies: + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + metro-symbolicate: 0.84.4 + nullthrows: 1.1.1 + ob1: 0.84.4 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + metro-symbolicate@0.83.3: dependencies: flow-enums-runtime: 0.0.6 @@ -16136,6 +16566,17 @@ snapshots: transitivePeerDependencies: - supports-color + metro-symbolicate@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + metro-source-map: 0.84.4 + nullthrows: 1.1.1 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + metro-transform-plugins@0.83.3: dependencies: '@babel/core': 7.29.0 @@ -16147,6 +16588,17 @@ snapshots: transitivePeerDependencies: - supports-color + metro-transform-plugins@0.84.4: + dependencies: + '@babel/core': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + flow-enums-runtime: 0.0.6 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + metro-transform-worker@0.83.3: dependencies: '@babel/core': 7.29.0 @@ -16167,6 +16619,26 @@ snapshots: - supports-color - utf-8-validate + metro-transform-worker@0.84.4: + dependencies: + '@babel/core': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/parser': 7.29.3 + '@babel/types': 7.29.0 + flow-enums-runtime: 0.0.6 + metro: 0.84.4 + metro-babel-transformer: 0.84.4 + metro-cache: 0.84.4 + metro-cache-key: 0.84.4 + metro-minify-terser: 0.84.4 + metro-source-map: 0.84.4 + metro-transform-plugins: 0.84.4 + nullthrows: 1.1.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + metro@0.83.3: dependencies: '@babel/code-frame': 7.29.0 @@ -16214,6 +16686,52 @@ snapshots: - supports-color - utf-8-validate + metro@0.84.4: + dependencies: + '@babel/code-frame': 7.29.0 + '@babel/core': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/parser': 7.29.3 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + accepts: 2.0.0 + ci-info: 2.0.0 + connect: 3.7.0 + debug: 4.4.3 + error-stack-parser: 2.1.4 + flow-enums-runtime: 0.0.6 + graceful-fs: 4.2.11 + hermes-parser: 0.35.0 + image-size: 1.2.1 + invariant: 2.2.4 + jest-worker: 29.7.0 + jsc-safe-url: 0.2.4 + lodash.throttle: 4.1.1 + metro-babel-transformer: 0.84.4 + metro-cache: 0.84.4 + metro-cache-key: 0.84.4 + metro-config: 0.84.4 + metro-core: 0.84.4 + metro-file-map: 0.84.4 + metro-resolver: 0.84.4 + metro-runtime: 0.84.4 + metro-source-map: 0.84.4 + metro-symbolicate: 0.84.4 + metro-transform-plugins: 0.84.4 + metro-transform-worker: 0.84.4 + mime-types: 3.0.2 + nullthrows: 1.1.1 + serialize-error: 2.1.0 + source-map: 0.5.7 + throat: 5.0.0 + ws: 7.5.10 + yargs: 17.7.2 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + micromatch@4.0.8: dependencies: braces: 3.0.3 @@ -16227,6 +16745,10 @@ snapshots: dependencies: mime-db: 1.52.0 + mime-types@3.0.2: + dependencies: + mime-db: 1.54.0 + mime@1.6.0: {} mimic-fn@1.2.0: {} @@ -16304,6 +16826,8 @@ snapshots: negotiator@0.6.4: {} + negotiator@1.0.0: {} + neo-async@2.6.2: {} nested-error-stacks@2.0.1: {} @@ -16359,6 +16883,10 @@ snapshots: dependencies: flow-enums-runtime: 0.0.6 + ob1@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + object-assign@4.1.1: {} object-inspect@1.13.4: {} @@ -17135,136 +17663,124 @@ snapshots: react: 19.1.0 react-is: 19.2.6 - react-native-compressor@1.13.0(patch_hash=58379dfaace6ced8590cb341c77f2ca8099dfa8f7df6297032ec51de767a9925)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-compressor@1.13.0(patch_hash=58379dfaace6ced8590cb341c77f2ca8099dfa8f7df6297032ec51de767a9925)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-date-picker@5.0.13(patch_hash=f2a6697da7a7ca79b4f39efda142eee1b82db6de3aa5010ad4bd59df41fe2ce1)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-date-picker@5.0.13(patch_hash=92943fb79d17d7342a29bbb12b0d8ee3cf6f7bca12ed322dc8d124a3e9fb75bd)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-device-attest@0.1.6(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-device-attest@0.1.6(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-native-dotenv@3.4.11(@babel/runtime@7.29.2): dependencies: '@babel/runtime': 7.29.2 dotenv: 16.6.1 - react-native-drawer-layout@4.2.3(patch_hash=74f2c043cc22ab87054f219e7c7373a509b779b18bfa79d27e7d051d73355130)(react-native-gesture-handler@2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-drawer-layout@4.2.3(patch_hash=74f2c043cc22ab87054f219e7c7373a509b779b18bfa79d27e7d051d73355130)(e24fb32bf68bffe2eac7bf9484330e37): dependencies: color: 4.2.3 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-gesture-handler: 2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-reanimated: 3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-gesture-handler: 2.30.1(patch_hash=39b9e51b3977fae8ff61764b8c32934fe3fbddaf21587b4661fd73b7c6dd325b)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-reanimated: 4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) use-latest-callback: 0.2.6(react@19.1.0) - react-native-edge-to-edge@1.8.1(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-edge-to-edge@1.8.1(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-gesture-handler@2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-gesture-handler@2.30.1(patch_hash=39b9e51b3977fae8ff61764b8c32934fe3fbddaf21587b4661fd73b7c6dd325b)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@egjs/hammerjs': 2.0.17 hoist-non-react-statics: 3.3.2 invariant: 2.2.4 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-is-edge-to-edge@1.1.7(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-is-edge-to-edge@1.3.1(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-is-edge-to-edge@1.3.1(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-keyboard-controller@1.21.8(patch_hash=ac52bf7502ff3ad34a8594b5e1a916b96bf87a2523b6abc87c31f03607d52271)(react-native-reanimated@4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-is-edge-to-edge: 1.3.1(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-reanimated: 4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-keyboard-controller@1.21.8(patch_hash=ac52bf7502ff3ad34a8594b5e1a916b96bf87a2523b6abc87c31f03607d52271)(react-native-reanimated@3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-mmkv@3.3.3(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-is-edge-to-edge: 1.3.1(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-reanimated: 3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-pager-view@6.8.0(patch_hash=0979d6fe1e2fa43b2784cc0b5e0ff0117d53b53423e85ee5855eefdc41a00108)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-pager-view@6.8.0(patch_hash=c8316acd33c9aef6531e8c272c2bfab7bd02af1255969eeaab2bad5ab48531cc)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-progress@https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + react-native-progress@https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: prop-types: 15.8.1 - react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-qrcode-styled@0.3.3(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-qrcode-styled@0.3.3(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: qrcode: 1.5.4 react: 19.1.0 react-fast-compare: 3.2.2 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-reanimated@3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): - dependencies: - '@babel/core': 7.29.0 - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.29.0) - '@babel/plugin-transform-class-properties': 7.28.6(@babel/core@7.29.0) - '@babel/plugin-transform-classes': 7.28.6(@babel/core@7.29.0) - '@babel/plugin-transform-nullish-coalescing-operator': 7.28.6(@babel/core@7.29.0) - '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.29.0) - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.29.0) - '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.29.0) - '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0) - '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0) - convert-source-map: 2.0.0 - invariant: 2.2.4 - react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-is-edge-to-edge: 1.1.7(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - transitivePeerDependencies: - - supports-color - - react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-reanimated@4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-is-edge-to-edge: 1.3.1(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-worklets: 0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + semver: 7.8.0 - react-native-screens@4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + dependencies: + react: 19.1.0 + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + + react-native-screens@4.24.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 react-freeze: 1.0.4(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) warn-once: 0.1.1 - react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: css-select: 5.2.2 css-tree: 1.1.3 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) warn-once: 0.1.1 - react-native-uitextview@1.4.0(patch_hash=62de26caadfc39d1bdff204cdc03a705c0cd343999825e06d8c0c120de06cc99)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-uitextview@2.2.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-native-uuid@2.0.4: {} - react-native-view-shot@4.0.3(patch_hash=a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-view-shot@4.0.3(patch_hash=a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: html2canvas: 1.4.1 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-native-web-webview@1.0.2(file-loader@6.2.0(webpack@5.106.2(postcss@8.5.14)))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)): dependencies: @@ -17287,23 +17803,43 @@ snapshots: transitivePeerDependencies: - encoding - react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: escape-string-regexp: 4.0.0 invariant: 2.2.4 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0): + react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + dependencies: + '@babel/core': 7.29.0 + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-class-properties': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-classes': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-nullish-coalescing-operator': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0) + '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0) + '@react-native/metro-config': 0.86.0(@babel/core@7.29.0) + convert-source-map: 2.0.0 + react: 19.1.0 + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + semver: 7.8.0 + transitivePeerDependencies: + - supports-color + + react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native/assets-registry': 0.81.5 '@react-native/codegen': 0.81.5(@babel/core@7.29.0) - '@react-native/community-cli-plugin': 0.81.5 + '@react-native/community-cli-plugin': 0.81.5(@react-native/metro-config@0.86.0(@babel/core@7.29.0)) '@react-native/gradle-plugin': 0.81.5 '@react-native/js-polyfills': 0.81.5 '@react-native/normalize-colors': 0.81.5 - '@react-native/virtualized-lists': 0.81.5(@types/react@19.1.17)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@react-native/virtualized-lists': 0.81.5(@types/react@19.1.17)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -17795,15 +18331,15 @@ snapshots: uuid: 8.3.2 websocket-driver: 0.7.4 - sonner-native@0.21.0(patch_hash=4bcd0da0fec32e943460e6e788a9e4adf601b507d2dfd0c8246a6c8c74d8f638)(0ed429160839218d22ac63d892397351): + sonner-native@0.21.0(patch_hash=4bcd0da0fec32e943460e6e788a9e4adf601b507d2dfd0c8246a6c8c74d8f638)(0b56ace567b3b81579dd1ca8846cda60): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-gesture-handler: 2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-reanimated: 3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-screens: 4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-gesture-handler: 2.30.1(patch_hash=39b9e51b3977fae8ff61764b8c32934fe3fbddaf21587b4661fd73b7c6dd325b)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-reanimated: 4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-screens: 4.24.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) sonner@2.0.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index a90336d4b1..1afb2a5b75 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -9,7 +9,8 @@ overrides: '@expo/image-utils': '0.8.12' '@types/estree': '1.0.6' 'react-native-compressor': '1.13.0' - 'react-native-reanimated': '3.19.1' + 'react-native-reanimated': '4.3.2' + 'react-native-worklets': '0.8.3' 'psl': '1.9.0' '@types/psl': '1.1.1' 'react-native-screens': '4.24.0' @@ -20,8 +21,7 @@ allowBuilds: 'unrs-resolver': true patchedDependencies: '@sentry/expo-upload-sourcemaps@8.18.0': patches/@sentry__expo-upload-sourcemaps@8.18.0.patch - expo-age-range@0.2.18: patches/expo-age-range@0.2.18.patch - 'expo-glass-effect@55.0.8': patches/expo-glass-effect@55.0.8.patch + 'expo-age-range@0.2.18': patches/expo-age-range@0.2.18.patch 'expo-haptics@15.0.8': patches/expo-haptics@15.0.8.patch 'expo-image-picker@17.0.11': patches/expo-image-picker@17.0.11.patch 'expo-image@3.0.11': patches/expo-image@3.0.11.patch @@ -32,11 +32,11 @@ patchedDependencies: 'react-native-compressor@1.13.0': patches/react-native-compressor@1.13.0.patch 'react-native-date-picker@5.0.13': patches/react-native-date-picker@5.0.13.patch 'react-native-drawer-layout@4.2.3': patches/react-native-drawer-layout@4.2.3.patch + 'react-native-gesture-handler': patches/react-native-gesture-handler.patch 'react-native-keyboard-controller@1.21.8': patches/react-native-keyboard-controller@1.21.8.patch 'react-native-pager-view@6.8.0': patches/react-native-pager-view@6.8.0.patch - 'react-native-reanimated@3.19.1': patches/react-native-reanimated@3.19.1.patch + 'react-native-reanimated@4.3.2': patches/react-native-reanimated@4.3.2.patch 'react-native-svg@15.12.1': patches/react-native-svg@15.12.1.patch - 'react-native-uitextview@1.4.0': patches/react-native-uitextview@1.4.0.patch 'react-native-view-shot@4.0.3': patches/react-native-view-shot@4.0.3.patch 'react-native@0.81.5': patches/react-native@0.81.5.patch 'sonner-native@0.21.0': patches/sonner-native@0.21.0.patch diff --git a/scripts/buildAndroidRelease.sh b/scripts/buildAndroidRelease.sh new file mode 100755 index 0000000000..0d5d0698a8 --- /dev/null +++ b/scripts/buildAndroidRelease.sh @@ -0,0 +1,67 @@ +#!/bin/bash +set -o errexit +set -o pipefail +set -o nounset +set -o xtrace + +# Resolve paths relative to the repo root, regardless of where this is run from. +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" +ANDROID_DIR="$REPO_ROOT/android" +APK_OUTPUT_DIR="$ANDROID_DIR/app/build/outputs/apk/release" +SETTINGS_GRADLE="$ANDROID_DIR/settings.gradle" + +# Guard against building with the wrong app identity. The New Arch build must +# use a distinct rootProject.name so it installs alongside the store app rather +# than overwriting it. +EXPECTED_APP_NAME="rootProject.name = 'Bluesky (New Arch)'" +if ! grep -qF "$EXPECTED_APP_NAME" "$SETTINGS_GRADLE"; then + echo "Error: expected \"$EXPECTED_APP_NAME\" in $SETTINGS_GRADLE" >&2 + echo "(Set the app name in settings.gradle before building the New Arch release.)" >&2 + exit 1 +fi + +BRANCH_NAME="$(git -C "$REPO_ROOT" rev-parse --abbrev-ref HEAD)" +COMMIT_HASH="$(git -C "$REPO_ROOT" rev-parse --short=6 HEAD)" + +# Sanitize the branch name so it is safe to use in a filename (e.g. ob/new-arch -> ob-new-arch). +SAFE_BRANCH="$(echo "$BRANCH_NAME" | tr '/ ' '-')" + +echo "Building Android release APK..." +echo " branch: $BRANCH_NAME" +echo " commit: $COMMIT_HASH" + +# Marker used to detect which APK was produced by THIS build. Anything with an +# older mtime (e.g. a stale app-release.apk from a prior or interrupted run) is +# ignored, so we never mislabel it with the current commit. +BUILD_MARKER="$(mktemp)" +trap 'rm -f "$BUILD_MARKER"' EXIT + +# Make sure the bundled JS ships with up-to-date compiled translations. +pnpm intl:compile + +cd "$ANDROID_DIR" +# Build only arm64: Apple Silicon Macs run arm64 emulator images and all modern +# devices are arm64, so the other three ABIs just quadruple the NDK compile. +./gradlew assembleRelease --max-workers=2 --no-daemon -PreactNativeArchitectures=arm64-v8a + +# Grab the freshly built APK: not an already-renamed bsky-* file, and newer than +# the marker so it is guaranteed to be this run's output. There are no ABI splits +# or flavors, so expect a single file. +APK_PATH="$(find "$APK_OUTPUT_DIR" -maxdepth 1 -name '*.apk' -not -name 'bsky-*' -newer "$BUILD_MARKER" | head -n 1)" + +if [ -z "$APK_PATH" ]; then + echo "Error: no freshly built APK found in $APK_OUTPUT_DIR" >&2 + echo "(Gradle may have been up-to-date and produced no new APK - run a clean build.)" >&2 + exit 1 +fi + +PREV_NAME="$(basename "$APK_PATH" .apk)" +NEW_NAME="bsky-${PREV_NAME}-${SAFE_BRANCH}-${COMMIT_HASH}.apk" +NEW_PATH="$APK_OUTPUT_DIR/$NEW_NAME" + +mv "$APK_PATH" "$NEW_PATH" + +echo "Renamed APK:" +echo " $APK_PATH" +echo " -> $NEW_PATH" diff --git a/src/Splash.tsx b/src/Splash.tsx index b453cb4292..8ef6b4cf7c 100644 --- a/src/Splash.tsx +++ b/src/Splash.tsx @@ -72,21 +72,26 @@ export function Splash(props: React.PropsWithChildren) { const isDarkMode = colorScheme === 'dark' const logoAnimation = useAnimatedStyle(() => { + const introScale = interpolate(intro.get(), [0, 1], [0.8, 1], 'clamp') + const outroScale = + reduceMotion === true + ? 1 + : interpolate(outroLogo.get(), [0, 0.08, 1], [1, 0.8, 500], 'clamp') + + const introOpacity = interpolate(intro.get(), [0, 1], [0, 1], 'clamp') + const outroOpacity = interpolate( + outroAppOpacity.get(), + [0, 0.1, 0.2, 1], + [1, 1, 0, 0], + 'clamp', + ) + return { + opacity: introOpacity * outroOpacity, transform: [ - { - scale: interpolate(intro.get(), [0, 1], [0.8, 1], 'clamp'), - }, - { - scale: interpolate( - outroLogo.get(), - [0, 0.08, 1], - [1, 0.8, 500], - 'clamp', - ), - }, + {translateY: -(insets.top / 2)}, + {scale: 0.1 * outroScale * introScale}, ], - opacity: interpolate(intro.get(), [0, 1], [0, 1], 'clamp'), } }) const bottomLogoAnimation = useAnimatedStyle(() => { @@ -94,27 +99,6 @@ export function Splash(props: React.PropsWithChildren) { opacity: interpolate(intro.get(), [0, 1], [0, 1], 'clamp'), } }) - const reducedLogoAnimation = useAnimatedStyle(() => { - return { - transform: [ - { - scale: interpolate(intro.get(), [0, 1], [0.8, 1], 'clamp'), - }, - ], - opacity: interpolate(intro.get(), [0, 1], [0, 1], 'clamp'), - } - }) - - const logoWrapperAnimation = useAnimatedStyle(() => { - return { - opacity: interpolate( - outroAppOpacity.get(), - [0, 0.1, 0.2, 1], - [1, 1, 0, 0], - 'clamp', - ), - } - }) const appAnimation = useAnimatedStyle(() => { return { @@ -126,7 +110,7 @@ export function Splash(props: React.PropsWithChildren) { opacity: interpolate( outroAppOpacity.get(), [0, 0.1, 0.2, 1], - [0, 0, 1, 1], + [0.02, 0.02, 1, 1], // first two values cant be 0 for the iOS blur/glass effects to work, the values obtained by trial and error 'clamp', ), } @@ -180,8 +164,6 @@ export function Splash(props: React.PropsWithChildren) { AccessibilityInfo.isReduceMotionEnabled().then(setReduceMotion) }, []) - const logoAnimations = - reduceMotion === true ? reducedLogoAnimation : logoAnimation // special off-spec color for dark mode const logoBg = isDarkMode ? '#0F1824' : '#fff' @@ -224,17 +206,14 @@ export function Splash(props: React.PropsWithChildren) { - - - + )} diff --git a/src/analytics/features/index.ts b/src/analytics/features/index.ts index 6afd2f91b4..67ea7bb4ad 100644 --- a/src/analytics/features/index.ts +++ b/src/analytics/features/index.ts @@ -1,4 +1,4 @@ -import {MMKV} from '@bsky.app/react-native-mmkv' +import {MMKV} from 'react-native-mmkv' import {setPolyfills} from '@growthbook/growthbook' import {GrowthBook} from '@growthbook/growthbook-react' import {type I18n} from '@lingui/core' diff --git a/src/components/ContextMenu/index.tsx b/src/components/ContextMenu/index.tsx index b1eb873216..fdb4fa194d 100644 --- a/src/components/ContextMenu/index.tsx +++ b/src/components/ContextMenu/index.tsx @@ -89,14 +89,12 @@ const SPRING_IN: WithSpringConfig = { mass: 0.75, damping: 300, stiffness: 1200, - restDisplacementThreshold: 0.01, } const SPRING_OUT: WithSpringConfig = { mass: IS_IOS ? 1.25 : 0.75, damping: 150, stiffness: 1000, - restDisplacementThreshold: 0.01, } /** diff --git a/src/components/DraggableList/index.tsx b/src/components/DraggableList/index.tsx index 08676bd172..812e364f50 100644 --- a/src/components/DraggableList/index.tsx +++ b/src/components/DraggableList/index.tsx @@ -3,6 +3,7 @@ import {Gesture, GestureDetector} from 'react-native-gesture-handler' import Animated, { type AnimatedRef, measure, + Reanimated3DefaultSpringConfig, runOnJS, scrollTo, type SharedValue, @@ -237,8 +238,8 @@ function SortableItem({ itemKey: string itemCount: number itemHeight: number - state: Animated.SharedValue - dragY: Animated.SharedValue + state: SharedValue + dragY: SharedValue scrollCompensation: SharedValue isGestureActive: SharedValue measureDone: SharedValue @@ -370,18 +371,18 @@ function SortableItem({ return { transform: [ {translateY: s.dragStartSlot * itemHeight + dragY.get()}, - {scale: withSpring(1.03)}, + {scale: withSpring(1.03, Reanimated3DefaultSpringConfig)}, ], zIndex: 999, ...(IS_IOS ? { shadowColor: '#000', shadowOffset: {width: 0, height: 1}, - shadowOpacity: withSpring(0.08), - shadowRadius: withSpring(4), + shadowOpacity: withSpring(0.08, Reanimated3DefaultSpringConfig), + shadowRadius: withSpring(4, Reanimated3DefaultSpringConfig), } : { - elevation: withSpring(3), + elevation: withSpring(3, Reanimated3DefaultSpringConfig), }), } } @@ -391,11 +392,11 @@ function SortableItem({ const inactive = { ...(IS_IOS ? { - shadowOpacity: withSpring(0), - shadowRadius: withSpring(0), + shadowOpacity: withSpring(0, Reanimated3DefaultSpringConfig), + shadowRadius: withSpring(0, Reanimated3DefaultSpringConfig), } : { - elevation: withSpring(0), + elevation: withSpring(0, Reanimated3DefaultSpringConfig), }), } @@ -425,7 +426,7 @@ function SortableItem({ return { transform: [ {translateY: withTiming(baseY + offset, {duration: 200})}, - {scale: withSpring(1)}, + {scale: withSpring(1, Reanimated3DefaultSpringConfig)}, ], zIndex: 0, ...inactive, diff --git a/src/components/GlassView.tsx b/src/components/GlassView.tsx index a695a0678a..cac5bd268d 100644 --- a/src/components/GlassView.tsx +++ b/src/components/GlassView.tsx @@ -15,6 +15,8 @@ export const IS_GLASS_AVAILABLE = * Liquid Glass View that uses `expo-glass-effect` * * If unavailable, falls back to a regular `View`. Use `fallbackStyle` to customize the fallback appearance. + * Note: Setting opacity to 0 on Expo GlassView or any of its parent views causes the glass effect to not render at all. https://docs.expo.dev/versions/v56.0.0/sdk/glass-effect/#known-issues + * If animating the opacity of a parent view, start from a non-zero opacity to avoid this issue. */ export const GlassView = IS_GLASS_AVAILABLE ? InnerGlassView : FallbackView diff --git a/src/components/InterestTabs.tsx b/src/components/InterestTabs.tsx index 41638184f9..5df1fb62e3 100644 --- a/src/components/InterestTabs.tsx +++ b/src/components/InterestTabs.tsx @@ -10,6 +10,7 @@ import {useLingui} from '@lingui/react' import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import {DraggableScrollView} from '#/view/com/pager/DraggableScrollView' +import {BlockDrawerGesture} from '#/view/shell/BlockDrawerGesture' import {atoms as a, tokens, useTheme, web} from '#/alf' import {transparentifyColor} from '#/alf/util/colorGeneration' import {Button, ButtonIcon} from '#/components/Button' @@ -200,42 +201,44 @@ export function InterestTabs({ return ( - !!o).length === interests.length - ? tabOffsets.map(o => o.x - tokens.space.xl) - : undefined - } - onLayout={evt => setTotalWidth(evt.nativeEvent.layout.width)} - onContentSizeChange={width => setContentWidth(width)} - onScroll={evt => { - const newScrollX = evt.nativeEvent.contentOffset.x - setScrollX(newScrollX) - }} - scrollEventThrottle={16}> - {interests.map((interest, i) => { - const active = interest === selectedInterest && !disabled - return ( - - ) - })} - + + !!o).length === interests.length + ? tabOffsets.map(o => o.x - tokens.space.xl) + : undefined + } + onLayout={evt => setTotalWidth(evt.nativeEvent.layout.width)} + onContentSizeChange={width => setContentWidth(width)} + onScroll={evt => { + const newScrollX = evt.nativeEvent.contentOffset.x + setScrollX(newScrollX) + }} + scrollEventThrottle={16}> + {interests.map((interest, i) => { + const active = interest === selectedInterest && !disabled + return ( + + ) + })} + + {IS_WEB && canScrollLeft && ( contentContainerStyle?: StyleProp ignoreTabletLayoutOffset?: boolean + ref?: AnimatedRef } /** * Default scroll view for simple pages */ -export const Content = memo( - forwardRef(function Content( - { - children, - style, - contentContainerStyle, - ignoreTabletLayoutOffset, - ...props - }, - ref, - ) { - const t = useTheme() - const {footerHeight} = useShellLayout() - const {isWithinSplitView} = useIsWithinSplitView() +export const Content = memo(function Content({ + children, + style, + contentContainerStyle, + ignoreTabletLayoutOffset, + ref, + ...props +}: ContentProps) { + const t = useTheme() + const {footerHeight} = useShellLayout() + const {isWithinSplitView} = useIsWithinSplitView() - // note - if we ever make the footer transparent in any way, - // we'll need to change this to use contentInsets/scrollIndicatorInsets - // on iOS and contentContainerStyle padding on Android -sfn - const animatedStyle = useAnimatedStyle(() => { - return { - marginBottom: footerHeight.get(), - } - }) + // note - if we ever make the footer transparent in any way, + // we'll need to change this to use contentInsets/scrollIndicatorInsets + // on iOS and contentContainerStyle padding on Android -sfn + const animatedStyle = useAnimatedStyle(() => { + return { + marginBottom: footerHeight.get(), + } + }) - return ( - - {IS_WEB ? ( -
- {/* @ts-expect-error web only -esb */} - {children} -
- ) : ( - children - )} -
- ) - }), -) + return ( + + {IS_WEB ? ( +
+ {/* @ts-expect-error web only -esb */} + {children} +
+ ) : ( + children + )} +
+ ) +}) /** * Utility component to center content within the screen diff --git a/src/components/Lightbox/pager/ImageItem/ImageItem.android.tsx b/src/components/Lightbox/pager/ImageItem/ImageItem.android.tsx index 62e28523a7..b27e2d9aba 100644 --- a/src/components/Lightbox/pager/ImageItem/ImageItem.android.tsx +++ b/src/components/Lightbox/pager/ImageItem/ImageItem.android.tsx @@ -7,6 +7,7 @@ import { } from 'react-native-gesture-handler' import Animated, { type AnimatableValue, + Reanimated3DefaultSpringConfig, runOnJS, type SharedValue, useAnimatedReaction, @@ -463,7 +464,10 @@ function clampTranslation( function withClampedSpring(value: T): T { 'worklet' - return withSpring(value, {overshootClamping: true}) + return withSpring(value, { + ...Reanimated3DefaultSpringConfig, + overshootClamping: true, + }) } export default memo(ImageItem) diff --git a/src/components/Lightbox/pager/ImageItem/ImageItem.ios.tsx b/src/components/Lightbox/pager/ImageItem/ImageItem.ios.tsx index 19373cbe1a..216ac176c0 100644 --- a/src/components/Lightbox/pager/ImageItem/ImageItem.ios.tsx +++ b/src/components/Lightbox/pager/ImageItem/ImageItem.ios.tsx @@ -170,8 +170,6 @@ const ImageItem = ({ width: screenSize.width, maxHeight: screenSize.height, alignSelf: 'center', - aspectRatio: imageAspect ?? 1 /* force onLoad */, - opacity: imageAspect === undefined ? 0 : 1, } }) @@ -180,11 +178,19 @@ const ImageItem = ({ return { transform: cropContentTransform, width: '100%', - aspectRatio: imageAspect ?? 1 /* force onLoad */, - opacity: imageAspect === undefined ? 0 : 1, } }) + /* + * When the aspect ratio is unknown until onLoad fires, these layout props + * change after mount. They must be applied via a React render rather than + * useAnimatedStyle + */ + const imageLayoutStyle = { + aspectRatio: imageAspect ?? 1 /* force onLoad */, + opacity: imageAspect === undefined ? 0 : 1, + } + const [showLoader, setShowLoader] = useState(false) const [hasLoaded, setHasLoaded] = useState(false) useAnimatedReaction( @@ -225,8 +231,8 @@ const ImageItem = ({ {showLoader && ( )} - - + + | null + thumbRef?: AnimatedRef | null thumbBorderRadius?: number alt?: string type: 'image' | 'circle-avi' | 'rect-avi' diff --git a/src/components/Pills.tsx b/src/components/Pills.tsx index d2b5eb51c6..c24e51047c 100644 --- a/src/components/Pills.tsx +++ b/src/components/Pills.tsx @@ -177,6 +177,7 @@ export function LabelBase({ text, a.font_semi_bold, a.leading_tight, + a.flex_shrink, t.atoms.text_contrast_medium, {paddingRight: 3}, ]}> diff --git a/src/components/Post/Embed/ImageEmbed.tsx b/src/components/Post/Embed/ImageEmbed.tsx index 235a82ebaf..073c47fbb1 100644 --- a/src/components/Post/Embed/ImageEmbed.tsx +++ b/src/components/Post/Embed/ImageEmbed.tsx @@ -59,7 +59,7 @@ export function ImageEmbed({ // Captured from AutoSizedImage so the peek-commit handler can reuse the same // ref + dims that a tap would — keeps the lightbox's return animation intact. - const singleContainerRef = useRef | null>(null) + const singleContainerRef = useRef(null) const singleDimsRef = useRef(null) if (images.length > 0) { @@ -71,7 +71,7 @@ export function ImageEmbed({ })) const onPress = ( index: number, - refs: AnimatedRef[], + refs: AnimatedRef[], fetchedDims: (Dimensions | null)[], ) => { if (postContext) { diff --git a/src/components/ProgressGuide/Toast.tsx b/src/components/ProgressGuide/Toast.tsx index e1e36e4502..5f509f89a1 100644 --- a/src/components/ProgressGuide/Toast.tsx +++ b/src/components/ProgressGuide/Toast.tsx @@ -119,7 +119,8 @@ export const ProgressGuideToast = forwardRef< left = right = (winDim.width - 380) / 2 } return { - position: IS_WEB ? 'fixed' : 'absolute', + // position: fixed is web only + position: (IS_WEB ? 'fixed' : 'absolute') as 'absolute', top: 0, left, right, @@ -134,12 +135,7 @@ export const ProgressGuideToast = forwardRef< return ( isOpen && ( - + - style?: StyleProp + style?: AnimatedStyle }) { const {t: l} = useLingui() const t = useTheme() diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx index daa85c23ef..108a4916ea 100644 --- a/src/components/forms/TextField.tsx +++ b/src/components/forms/TextField.tsx @@ -12,7 +12,6 @@ import { import {HITSLOP_20} from '#/lib/constants' import {mergeRefs} from '#/lib/merge-refs' import { - android, applyFonts, atoms as a, platform, @@ -223,10 +222,6 @@ export function createInput(Component: typeof TextInput) { paddingTop: 13, paddingBottom: 13, }, - android({ - paddingTop: 8, - paddingBottom: 9, - }), /* * Margins are needed here to avoid autofill background overlapping the * top and bottom borders - esb diff --git a/src/lib/__tests__/persisted-query-storage.test.ts b/src/lib/__tests__/persisted-query-storage.test.ts index fe6a61884b..126c99153c 100644 --- a/src/lib/__tests__/persisted-query-storage.test.ts +++ b/src/lib/__tests__/persisted-query-storage.test.ts @@ -1,6 +1,6 @@ import {beforeEach, describe, expect, it, jest} from '@jest/globals' -jest.mock('@bsky.app/react-native-mmkv', () => ({ +jest.mock('react-native-mmkv', () => ({ MMKV: class MMKVMock { _store = new Map() diff --git a/src/lib/custom-animations/LikeIcon.tsx b/src/lib/custom-animations/LikeIcon.tsx index 223f8e9f18..4ab9582aae 100644 --- a/src/lib/custom-animations/LikeIcon.tsx +++ b/src/lib/custom-animations/LikeIcon.tsx @@ -107,6 +107,7 @@ export function AnimatedLikeIcon({ zIndex: -1, pointerEvents: 'none', borderRadius: size / 2, + opacity: 0, }} /> diff --git a/src/screens/Messages/components/MessagesList.tsx b/src/screens/Messages/components/MessagesList.tsx index 794740d0b8..3890979543 100644 --- a/src/screens/Messages/components/MessagesList.tsx +++ b/src/screens/Messages/components/MessagesList.tsx @@ -13,7 +13,6 @@ import { KeyboardGestureArea, } from 'react-native-keyboard-controller' import Animated, { - FadeIn, runOnJS, type ScrollEvent, type SharedValue, @@ -187,6 +186,14 @@ export function MessagesList({ } }, [hasScrolled, listOpacity]) + // Recreate FadeIn for the footer with a shared value so we can start from a + // non-zero opacity instead of fully transparent. (Needed for GlassView to work properly) + const footerOpacity = useSharedValue(0.05) + + useEffect(() => { + footerOpacity.set(withTiming(1, {duration: 200})) + }, [footerOpacity]) + const inputHeightUI = useSharedValue(0) const [inputHeightJS, setInputHeightJS] = useState(0) @@ -753,6 +760,10 @@ export function MessagesList({ opacity: listOpacity.get(), })) + const animatedFooterStyle = useAnimatedStyle(() => ({ + opacity: footerOpacity.get(), + })) + return ( @@ -841,7 +852,7 @@ export function MessagesList({ opened: 0, }}> {footer ?? ( - + diff --git a/src/screens/Profile/Sections/Feed.tsx b/src/screens/Profile/Sections/Feed.tsx index 1f6863ff36..c830963922 100644 --- a/src/screens/Profile/Sections/Feed.tsx +++ b/src/screens/Profile/Sections/Feed.tsx @@ -11,7 +11,7 @@ import { RQKEY as FEED_RQKEY, } from '#/state/queries/post-feed' import {truncateAndInvalidate} from '#/state/queries/util' -import {PostFeed} from '#/view/com/posts/PostFeed' +import {PostFeed, type PostFeedRef} from '#/view/com/posts/PostFeed' import { EmptyState, type EmptyStateButtonProps, @@ -36,6 +36,7 @@ interface FeedSectionProps { emptyStateMessage?: string emptyStateButton?: EmptyStateButtonProps emptyStateIcon?: React.ComponentType | React.ReactElement + postFeedRef?: React.Ref } export function ProfileFeedSection({ @@ -49,6 +50,7 @@ export function ProfileFeedSection({ emptyStateMessage, emptyStateButton, emptyStateIcon, + postFeedRef, }: FeedSectionProps) { const {_} = useLingui() const queryClient = useQueryClient() @@ -111,6 +113,7 @@ export function ProfileFeedSection({ shouldUseAdjustedNumToRender ? adjustedInitialNumToRender : undefined } isVideoFeed={isVideoFeed} + ref={postFeedRef} /> {(isScrolledDown || hasNew) && ( - { - ax.metric('explore:suggestedAccounts:tabPressed', {tab: tab}) - onSelectInterest(tab === 'all' ? null : tab) - }} - interestsDisplayNames={ - hideDefaultTab - ? interestsDisplayNames - : { - all: defaultTabLabel || _(msg`For You`), - ...interestsDisplayNames, - } - } - /> - + { + ax.metric('explore:suggestedAccounts:tabPressed', {tab: tab}) + onSelectInterest(tab === 'all' ? null : tab) + }} + interestsDisplayNames={ + hideDefaultTab + ? interestsDisplayNames + : { + all: defaultTabLabel || _(msg`For You`), + ...interestsDisplayNames, + } + } + /> ) } diff --git a/src/screens/Settings/AppearanceSettings.tsx b/src/screens/Settings/AppearanceSettings.tsx index 6d4c03de0b..d9fe0f863b 100644 --- a/src/screens/Settings/AppearanceSettings.tsx +++ b/src/screens/Settings/AppearanceSettings.tsx @@ -14,7 +14,6 @@ import { type NativeStackScreenProps, } from '#/lib/routes/types' import {useSetThemePrefs, useThemePrefs} from '#/state/shell' -import {SettingsListItem as AppIconSettingsListItem} from '#/screens/Settings/AppIconSettings/SettingsListItem' import {type Alf, atoms as a, native, useAlf, useTheme} from '#/alf' import * as SegmentedControl from '#/components/forms/SegmentedControl' import {type Props as SVGIconProps} from '#/components/icons/common' @@ -24,7 +23,6 @@ import {TextSize_Stroke2_Corner0_Rounded as TextSize} from '#/components/icons/T import {TitleCase_Stroke2_Corner0_Rounded as Aa} from '#/components/icons/TitleCase' import * as Layout from '#/components/Layout' import {Text} from '#/components/Typography' -import {IS_INTERNAL, IS_NATIVE} from '#/env' import * as SettingsList from './components/SettingsList' type Props = NativeStackScreenProps @@ -165,12 +163,12 @@ export function AppearanceSettingsScreen({}: Props) { onChange={onChangeFontScale} /> - {IS_NATIVE && IS_INTERNAL && ( + {/*{IS_NATIVE && IS_INTERNAL && ( <> - )} + )}*/} diff --git a/src/state/shell/minimal-mode.tsx b/src/state/shell/minimal-mode.tsx index 2572ccc719..2309b6fa1b 100644 --- a/src/state/shell/minimal-mode.tsx +++ b/src/state/shell/minimal-mode.tsx @@ -7,6 +7,7 @@ import { useRef, } from 'react' import { + Reanimated3DefaultSpringConfig, type SharedValue, useSharedValue, withSpring, @@ -34,6 +35,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { 'worklet' footerMode.set(() => withSpring(v ? 1 : 0, { + ...Reanimated3DefaultSpringConfig, overshootClamping: true, }), ) diff --git a/src/storage/__tests__/index.test.ts b/src/storage/__tests__/index.test.ts index 0b57d365ff..e11affa7a8 100644 --- a/src/storage/__tests__/index.test.ts +++ b/src/storage/__tests__/index.test.ts @@ -2,7 +2,7 @@ import {beforeEach, expect, jest, test} from '@jest/globals' import {Storage} from '#/storage' -jest.mock('@bsky.app/react-native-mmkv', () => ({ +jest.mock('react-native-mmkv', () => ({ MMKV: class MMKVMock { _store = new Map() diff --git a/src/storage/archive/db/index.ts b/src/storage/archive/db/index.ts index f554d5f5c0..05fa8eed47 100644 --- a/src/storage/archive/db/index.ts +++ b/src/storage/archive/db/index.ts @@ -1,4 +1,4 @@ -import {MMKV} from '@bsky.app/react-native-mmkv' +import {MMKV} from 'react-native-mmkv' import {type DB} from '#/storage/archive/db/types' diff --git a/src/storage/index.ts b/src/storage/index.ts index 3ae4577295..4c42005104 100644 --- a/src/storage/index.ts +++ b/src/storage/index.ts @@ -1,5 +1,5 @@ import {useCallback, useEffect, useState} from 'react' -import {MMKV} from '@bsky.app/react-native-mmkv' +import {MMKV} from 'react-native-mmkv' import {type Account, type Device} from '#/storage/schema' diff --git a/src/view/com/auth/SplashScreen.tsx b/src/view/com/auth/SplashScreen.tsx index 54867aedc7..581f7bd2e4 100644 --- a/src/view/com/auth/SplashScreen.tsx +++ b/src/view/com/auth/SplashScreen.tsx @@ -39,9 +39,9 @@ export const SplashScreen = ({ logoFill, logoShadow: isDarkMode ? [ - t.atoms.shadow_md, { shadowColor: logoFill, + shadowRadius: 8, shadowOpacity: 0.5, shadowOffset: { width: 0, @@ -93,13 +93,15 @@ export const SplashScreen = ({ size="large" color={isDarkMode ? 'secondary_inverted' : 'secondary'} style={[ - t.atoms.shadow_md, { + shadowColor: t.palette.black, + shadowRadius: 8, shadowOpacity: 0.1, shadowOffset: { width: 0, height: 5, }, + elevation: 16, }, ]}> diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index a09aaab8c1..ce6b17b8cb 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -25,6 +25,7 @@ import {KeyboardAvoidingView} from 'react-native-keyboard-controller' import ProgressCircle from 'react-native-progress/Circle' import Animated, { type AnimatedRef, + type AnimatedStyle, Easing, FadeIn, FadeOut, @@ -1794,7 +1795,7 @@ function ComposerTopBar({ isEditingDraft: boolean canSaveDraft: boolean textLength: number - topBarAnimatedStyle: StyleProp + topBarAnimatedStyle: AnimatedStyle children?: React.ReactNode }) { const t = useTheme() @@ -2029,7 +2030,7 @@ function ComposerPills({ thread: ThreadDraft post: PostDraft dispatch: (action: ComposerAction) => void - bottomBarAnimatedStyle: StyleProp + bottomBarAnimatedStyle: AnimatedStyle }) { const t = useTheme() const media = post.embed.media diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index d40e06a215..4c293154af 100644 --- a/src/view/com/composer/text-input/TextInput.tsx +++ b/src/view/com/composer/text-input/TextInput.tsx @@ -227,7 +227,6 @@ export function TextInput({ allowFontScaling multiline scrollEnabled={false} - numberOfLines={2} // Note: should be the default value, but as of v1.104 // it switched to "none" on Android autoCapitalize="sentences" diff --git a/src/view/com/posts/PostFeed.tsx b/src/view/com/posts/PostFeed.tsx index bc40880bf4..f67e6a26a3 100644 --- a/src/view/com/posts/PostFeed.tsx +++ b/src/view/com/posts/PostFeed.tsx @@ -1,4 +1,12 @@ -import {memo, useCallback, useEffect, useMemo, useRef, useState} from 'react' +import { + memo, + useCallback, + useEffect, + useImperativeHandle, + useMemo, + useRef, + useState, +} from 'react' import { ActivityIndicator, AppState, @@ -195,6 +203,10 @@ export function getItemsForFeedback(feedRow: FeedRow): { } } +export type PostFeedRef = { + refreshFeed: () => Promise +} + // DISABLED need to check if this is causing random feed refreshes -prf // const REFRESH_AFTER = STALE.HOURS.ONE const CHECK_LATEST_AFTER = STALE.SECONDS.THIRTY @@ -222,6 +234,7 @@ let PostFeed = ({ savedFeedConfig, initialNumToRender: initialNumToRenderOverride, isVideoFeed = false, + ref, }: { feed: FeedDescriptor description?: RichTextType @@ -246,6 +259,7 @@ let PostFeed = ({ initialNumToRender?: number isVideoFeed?: boolean lastFetchDate?: () => number + ref?: React.Ref }): React.ReactNode => { const ax = useAnalytics() const t = useTheme() @@ -725,8 +739,9 @@ let PostFeed = ({ // events // = + // - const onRefresh = useCallback(async () => { + const refreshFeed = async () => { if (!enabled) return ax.metric('feed:refresh', { @@ -734,24 +749,23 @@ let PostFeed = ({ feedUrl: feed, reason: 'pull-to-refresh', }) - setIsPTRing(true) try { await truncateAndInvalidate(queryClient, RQKEY(feed, feedParams)) onHasNew?.(false) } catch (err) { logger.error('Failed to refresh posts feed', {message: err}) } + } + + const onRefresh = async () => { + setIsPTRing(true) + await refreshFeed() setIsPTRing(false) - }, [ - ax, - queryClient, - setIsPTRing, - onHasNew, - feed, - feedParams, - feedType, - enabled, - ]) + } + + useImperativeHandle(ref, () => ({ + refreshFeed, + })) const onEndReached = useCallback(async () => { if (isFetching || !hasNextPage || isError) return diff --git a/src/view/com/util/MainScrollProvider.tsx b/src/view/com/util/MainScrollProvider.tsx index 1a0580ea4e..ccab7cb992 100644 --- a/src/view/com/util/MainScrollProvider.tsx +++ b/src/view/com/util/MainScrollProvider.tsx @@ -3,6 +3,7 @@ import {type NativeScrollEvent} from 'react-native' import { clamp, interpolate, + Reanimated3DefaultSpringConfig, type SharedValue, useAnimatedStyle, useSharedValue, @@ -105,6 +106,7 @@ export function MainScrollProvider({children}: {children: React.ReactNode}) { 'worklet' headerMode.set(() => withSpring(v ? 1 : 0, { + ...Reanimated3DefaultSpringConfig, overshootClamping: true, }), ) diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx index eeb77e64b0..d3495bbd04 100644 --- a/src/view/screens/Home.tsx +++ b/src/view/screens/Home.tsx @@ -1,6 +1,9 @@ import {useCallback, useEffect, useLayoutEffect, useMemo, useRef} from 'react' import {ActivityIndicator, StyleSheet} from 'react-native' -import {withSpring} from 'react-native-reanimated' +import { + Reanimated3DefaultSpringConfig, + withSpring, +} from 'react-native-reanimated' import {useFocusEffect} from '@react-navigation/native' import {PROD_DEFAULT_FEED} from '#/lib/constants' @@ -147,7 +150,12 @@ function HomeScreenReady({ const headerMode = useHomeHeaderMode() const showHeader = useCallback(() => { 'worklet' - headerMode.set(() => withSpring(0, {overshootClamping: true})) + headerMode.set(() => + withSpring(0, { + ...Reanimated3DefaultSpringConfig, + overshootClamping: true, + }), + ) }, [headerMode]) useFocusEffect( diff --git a/src/view/screens/Profile.tsx b/src/view/screens/Profile.tsx index 35718b9589..c31bb885fa 100644 --- a/src/view/screens/Profile.tsx +++ b/src/view/screens/Profile.tsx @@ -1,6 +1,7 @@ import {useCallback, useEffect, useMemo, useRef, useState} from 'react' import {StyleSheet} from 'react-native' import {SafeAreaView} from 'react-native-safe-area-context' +import {ScrollForwarderView} from 'react-native-scroll-forwarder/src' import { type AppBskyActorDefs, moderateProfile, @@ -36,6 +37,7 @@ import {useAgent, useSession} from '#/state/session' import {ProfileFeedgens} from '#/view/com/feeds/ProfileFeedgens' import {ProfileLists} from '#/view/com/lists/ProfileLists' import {PagerWithHeader} from '#/view/com/pager/PagerWithHeader' +import {type PostFeedRef} from '#/view/com/posts/PostFeed' import {ErrorScreen} from '#/view/com/util/error/ErrorScreen' import {FAB} from '#/view/com/util/fab/FAB' import {type ListRef} from '#/view/com/util/List' @@ -53,7 +55,6 @@ import * as Layout from '#/components/Layout' import {ScreenHider} from '#/components/moderation/ScreenHider' import {ProfileStarterPacks} from '#/components/StarterPack/ProfileStarterPacks' import {navigate} from '#/Navigation' -import {ExpoScrollForwarderView} from '../../../modules/expo-scroll-forwarder' interface SectionRef { scrollToTop: () => void @@ -187,6 +188,7 @@ function ProfileScreenLoaded({ enabled: !!profile.associated?.labeler, }) const [currentPage, setCurrentPage] = useState(0) + const [isRefreshing, setIsRefreshing] = useState(false) const {_} = useLingui() const [scrollViewTag, setScrollViewTag] = useState(null) @@ -353,6 +355,14 @@ function ProfileScreenLoaded({ ], }) + const postFeedRef = useRef(null) + + const onRefresh = async () => { + setIsRefreshing(true) + await postFeedRef.current?.refreshFeed() + setIsRefreshing(false) + } + // rendering // = @@ -362,7 +372,10 @@ function ProfileScreenLoaded({ setMinimumHeight: (height: number) => void }) => { return ( - + - + ) } @@ -440,6 +453,7 @@ function ProfileScreenLoaded({ } : undefined } + postFeedRef={postFeedRef} /> ) : null} diff --git a/src/view/shell/BlockDrawerGesture.tsx b/src/view/shell/BlockDrawerGesture.tsx index 93ef18cfae..b29de0c155 100644 --- a/src/view/shell/BlockDrawerGesture.tsx +++ b/src/view/shell/BlockDrawerGesture.tsx @@ -2,6 +2,11 @@ import {useContext} from 'react' import {DrawerGestureContext} from 'react-native-drawer-layout' import {Gesture, GestureDetector} from 'react-native-gesture-handler' +/** + * BlockDrawerGesture must wrap the ScrollView directly - Gesture.Native() + * only works when attached to the natively scrollable view. On the new + * arch (Android), attaching it to a wrapper view breaks scrolling. + */ export function BlockDrawerGesture({children}: {children: React.ReactNode}) { const drawerGesture = useContext(DrawerGestureContext) ?? Gesture.Native() // noop for web let scrollGesture = Gesture.Native() From 10b027c35b094ec58fcb89cb05f28ef05fc5ee84 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Thu, 23 Jul 2026 09:02:35 -0700 Subject: [PATCH 02/53] Sort follows and following behind gate (#11237) --- oxlint-suppressions.json | 10 ------ package.json | 2 +- pnpm-lock.yaml | 10 +++--- src/analytics/features/types.ts | 1 + src/analytics/metrics/types.ts | 5 +++ src/components/ProgressGuide/List.tsx | 16 ++++----- src/state/queries/profile-followers.ts | 25 ++++++++++++-- src/state/queries/profile-follows.ts | 22 +++++++++--- src/view/com/profile/ProfileFollowers.tsx | 42 +++++++++++++++-------- src/view/com/profile/ProfileFollows.tsx | 42 +++++++++++++++-------- 10 files changed, 114 insertions(+), 61 deletions(-) diff --git a/oxlint-suppressions.json b/oxlint-suppressions.json index ddcd835fb7..0a3da7641f 100644 --- a/oxlint-suppressions.json +++ b/oxlint-suppressions.json @@ -1736,16 +1736,6 @@ "count": 9 } }, - "src/view/com/profile/ProfileFollowers.tsx": { - "typescript/no-misused-promises": { - "count": 2 - } - }, - "src/view/com/profile/ProfileFollows.tsx": { - "typescript/no-misused-promises": { - "count": 2 - } - }, "src/view/com/util/EmptyState.tsx": { "typescript/no-explicit-any": { "count": 1 diff --git a/package.json b/package.json index edfec97c0f..199a7cb1d8 100644 --- a/package.json +++ b/package.json @@ -96,7 +96,7 @@ "prettier": "prettier --check ." }, "dependencies": { - "@atproto/api": "0.20.31", + "@atproto/api": "0.20.32", "@atproto/common-web": "0.5.6", "@atproto/syntax": "0.7.2", "@bitdrift/react-native": "^0.6.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index face60e04b..1b937313bd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -242,8 +242,8 @@ importers: .: dependencies: '@atproto/api': - specifier: 0.20.31 - version: 0.20.31 + specifier: 0.20.32 + version: 0.20.32 '@atproto/common-web': specifier: 0.5.6 version: 0.5.6 @@ -871,8 +871,8 @@ packages: graphql: optional: true - '@atproto/api@0.20.31': - resolution: {integrity: sha512-TovCQLQv5ti1jqh8UH6jJ0EFuWRjGdUtFyFR5xYC/IkIulwHDuyrVaXdCv7VLWiHftp92DevtZnFRm+BZsZZdw==} + '@atproto/api@0.20.32': + resolution: {integrity: sha512-P6Lh6+PR+x0/HHdEbmwZ5e2uvrzViEeobHWHoEc7KTaKJ/bQQu39z2wfBrG4dOTEC/OcOhFYhAhepo0VGIOeAQ==} engines: {node: '>=22'} '@atproto/common-web@0.5.6': @@ -9389,7 +9389,7 @@ snapshots: '@0no-co/graphql.web@1.2.0': {} - '@atproto/api@0.20.31': + '@atproto/api@0.20.32': dependencies: '@atproto/common-web': 0.5.6 '@atproto/lexicon': 0.7.7 diff --git a/src/analytics/features/types.ts b/src/analytics/features/types.ts index c48cdb90df..16cbe3a105 100644 --- a/src/analytics/features/types.ts +++ b/src/analytics/features/types.ts @@ -20,6 +20,7 @@ export enum Features { PostThreadKnownLikersFetchEnable = 'post_thread:known_likers:fetch:enable', CustomLogoJapanEnable = 'custom_logo:japan:enable', SearchStarterPacksV2Enable = 'search_starter_packs_v2:enable', + FollowSortEnable = 'follow_sort:enable', AATest = 'aa-test', } diff --git a/src/analytics/metrics/types.ts b/src/analytics/metrics/types.ts index b0445db587..1d1c88baca 100644 --- a/src/analytics/metrics/types.ts +++ b/src/analytics/metrics/types.ts @@ -475,25 +475,30 @@ export type Events = { 'profile:followers:view': { contextProfileDid: string isOwnProfile: boolean + sort?: 'latest' | 'top' } 'profile:followers:paginate': { contextProfileDid: string itemCount: number page: number + sort?: 'latest' | 'top' } 'profile:following:view': { contextProfileDid: string isOwnProfile: boolean + sort?: 'latest' | 'top' } 'profile:following:paginate': { contextProfileDid: string itemCount: number page: number + sort?: 'latest' | 'top' } 'profileCard:seen': { contextProfileDid?: string profileDid: string position?: number + sort?: 'latest' | 'top' } 'profile:mute': {} 'profile:unmute': {} diff --git a/src/components/ProgressGuide/List.tsx b/src/components/ProgressGuide/List.tsx index d6b0480443..71372a23ae 100644 --- a/src/components/ProgressGuide/List.tsx +++ b/src/components/ProgressGuide/List.tsx @@ -5,9 +5,7 @@ import { View, type ViewStyle, } from 'react-native' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' -import {Trans} from '@lingui/react/macro' +import {Trans, useLingui} from '@lingui/react/macro' import {useProfileFollowsQuery} from '#/state/queries/profile-follows' import {useSession} from '#/state/session' @@ -29,7 +27,7 @@ const TOTAL_AVATARS = 10 export function ProgressGuideList({style}: {style?: StyleProp}) { const t = useTheme() - const {_} = useLingui() + const {t: l} = useLingui() const {gtPhone} = useBreakpoints() const {rightNavVisible} = useLayoutBreakpoints() const {currentAccount} = useSession() @@ -79,7 +77,7 @@ export function ProgressGuideList({style}: {style?: StyleProp}) { size="tiny" color="secondary" shape="round" - label={_(msg`Dismiss getting started guide`)} + label={l`Dismiss getting started guide`} onPress={endProgressGuide} style={[a.bg_transparent, {marginTop: -6, marginRight: -6}]}> @@ -107,14 +105,14 @@ export function ProgressGuideList({style}: {style?: StyleProp}) { )} diff --git a/src/state/queries/profile-followers.ts b/src/state/queries/profile-followers.ts index 9c4c5182a1..62968af2d8 100644 --- a/src/state/queries/profile-followers.ts +++ b/src/state/queries/profile-followers.ts @@ -10,15 +10,33 @@ import { } from '@tanstack/react-query' import {useAgent} from '#/state/session' +import {useAnalytics} from '#/analytics' +const DEFAULT_SORT = 'latest' const PAGE_SIZE = 30 type RQPageParam = string | undefined const RQKEY_ROOT = 'profile-followers' -export const RQKEY = (did: string) => [RQKEY_ROOT, did] +export const RQKEY = (did: string, sort: 'latest' | 'top' = DEFAULT_SORT) => [ + RQKEY_ROOT, + did, + sort, +] -export function useProfileFollowersQuery(did: string | undefined) { +export function useProfileFollowersQuery( + did?: string, + { + sort, + }: { + sort?: 'latest' | 'top' + } = {}, +) { + const ax = useAnalytics() + const isSortEnabled = ax.features.enabled(ax.features.FollowSortEnable) const agent = useAgent() + + const sortParam = isSortEnabled ? sort || DEFAULT_SORT : undefined + return useInfiniteQuery< AppBskyGraphGetFollowers.OutputSchema, Error, @@ -26,12 +44,13 @@ export function useProfileFollowersQuery(did: string | undefined) { QueryKey, RQPageParam >({ - queryKey: RQKEY(did || ''), + queryKey: RQKEY(did || '', sortParam), async queryFn({pageParam}: {pageParam: RQPageParam}) { const res = await agent.app.bsky.graph.getFollowers({ actor: did || '', limit: PAGE_SIZE, cursor: pageParam, + sort: sortParam, }) return res.data }, diff --git a/src/state/queries/profile-follows.ts b/src/state/queries/profile-follows.ts index 1b154793d4..1c4d5dc69c 100644 --- a/src/state/queries/profile-follows.ts +++ b/src/state/queries/profile-follows.ts @@ -8,25 +8,36 @@ import { import {STALE} from '#/state/queries' import {useAgent} from '#/state/session' +import {useAnalytics} from '#/analytics' +const DEFAULT_SORT = 'latest' const PAGE_SIZE = 30 type RQPageParam = string | undefined // TODO refactor invalidate on mutate? const RQKEY_ROOT = 'profile-follows' -export const RQKEY = (did: string) => [RQKEY_ROOT, did] +export const RQKEY = (did: string, sort: 'latest' | 'top' = DEFAULT_SORT) => [ + RQKEY_ROOT, + did, + sort, +] export function useProfileFollowsQuery( did: string | undefined, { limit, + sort, }: { limit?: number - } = { - limit: PAGE_SIZE, - }, + sort?: 'latest' | 'top' + } = {}, ) { + const ax = useAnalytics() + const isSortEnabled = ax.features.enabled(ax.features.FollowSortEnable) const agent = useAgent() + + const sortParam = isSortEnabled ? sort || DEFAULT_SORT : undefined + return useInfiniteQuery< AppBskyGraphGetFollows.OutputSchema, Error, @@ -35,12 +46,13 @@ export function useProfileFollowsQuery( RQPageParam >({ staleTime: STALE.MINUTES.ONE, - queryKey: RQKEY(did || ''), + queryKey: RQKEY(did || '', sortParam), async queryFn({pageParam}: {pageParam: RQPageParam}) { const res = await agent.app.bsky.graph.getFollows({ actor: did || '', limit: limit || PAGE_SIZE, cursor: pageParam, + sort: sortParam, }) return res.data }, diff --git a/src/view/com/profile/ProfileFollowers.tsx b/src/view/com/profile/ProfileFollowers.tsx index 07092caed6..b5040aae9d 100644 --- a/src/view/com/profile/ProfileFollowers.tsx +++ b/src/view/com/profile/ProfileFollowers.tsx @@ -1,7 +1,6 @@ import {useCallback, useEffect, useMemo, useRef, useState} from 'react' import {type AppBskyActorDefs as ActorDefs} from '@atproto/api' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' +import {useLingui} from '@lingui/react/macro' import {useNavigation} from '@react-navigation/native' import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' @@ -48,18 +47,22 @@ function keyExtractor(item: ActorDefs.ProfileView) { } export function ProfileFollowers({name}: {name: string}) { - const {_} = useLingui() + const {t: l} = useLingui() const ax = useAnalytics() const navigation = useNavigation() const initialNumToRender = useInitialNumToRender() const {currentAccount} = useSession() + const isSortEnabled = ax.features.enabled(ax.features.FollowSortEnable) + const [isPTRing, setIsPTRing] = useState(false) const { data: resolvedDid, isLoading: isDidLoading, error: resolveError, } = useResolveDidQuery(name) + const isMe = resolvedDid === currentAccount?.did + const sort = isMe ? 'latest' : 'top' const { data, isLoading: isFollowersLoading, @@ -68,10 +71,11 @@ export function ProfileFollowers({name}: {name: string}) { fetchNextPage, error, refetch, - } = useProfileFollowersQuery(resolvedDid) + } = useProfileFollowersQuery(resolvedDid, { + sort, + }) const isError = !!resolveError || !!error - const isMe = resolvedDid === currentAccount?.did const followers = useMemo(() => { if (data?.pages) { @@ -101,10 +105,18 @@ export function ProfileFollowers({name}: {name: string}) { contextProfileDid: resolvedDid, itemCount: followers.length, page: currentPageCount, + sort: isSortEnabled ? sort : undefined, }) } paginationTrackingRef.current.page = currentPageCount - }, [ax, data?.pages?.length, resolvedDid, followers.length]) + }, [ + ax, + data?.pages?.length, + resolvedDid, + followers.length, + sort, + isSortEnabled, + ]) const onRefresh = useCallback(async () => { setIsPTRing(true) @@ -137,9 +149,10 @@ export function ProfileFollowers({name}: {name: string}) { ax.metric('profile:followers:view', { contextProfileDid: resolvedDid, isOwnProfile: isMe, + sort: isSortEnabled ? sort : undefined, }) } - }, [ax, resolvedDid, isMe]) + }, [ax, resolvedDid, isMe, sort, isSortEnabled]) // track seen items const seenItemsRef = useRef>(new Set()) @@ -160,9 +173,10 @@ export function ProfileFollowers({name}: {name: string}) { profileDid: item.did, position, ...(resolvedDid !== undefined && {contextProfileDid: resolvedDid}), + sort: isSortEnabled ? sort : undefined, }) }, - [ax, followers, resolvedDid], + [ax, followers, resolvedDid, sort, isSortEnabled], ) const [followersPromoDismissed, setFollowersPromoDismissed] = @@ -199,8 +213,8 @@ export function ProfileFollowers({name}: {name: string}) { emptyType="results" emptyMessage={ isMe - ? _(msg`No followers yet`) - : _(msg`This user doesn't have any followers.`) + ? l`No followers yet` + : l`This user doesn't have any followers.` } errorMessage={cleanError(resolveError || error)} onRetry={isError ? refetch : undefined} @@ -208,8 +222,8 @@ export function ProfileFollowers({name}: {name: string}) { useEmptyState={true} emptyStateIcon={PeopleRemoveIcon} emptyStateButton={{ - label: _(msg`Go back`), - text: _(msg`Go back`), + label: l`Go back`, + text: l`Go back`, color: 'secondary', size: 'small', onPress: () => navigation.goBack(), @@ -221,8 +235,8 @@ export function ProfileFollowers({name}: {name: string}) { renderItem={renderItemWithContext} keyExtractor={keyExtractor} refreshing={isPTRing} - onRefresh={onRefresh} - onEndReached={onEndReached} + onRefresh={() => void onRefresh()} + onEndReached={() => void onEndReached()} onEndReachedThreshold={4} onItemSeen={onItemSeen} ListFooterComponent={ diff --git a/src/view/com/profile/ProfileFollows.tsx b/src/view/com/profile/ProfileFollows.tsx index 9371038aa6..b72161187c 100644 --- a/src/view/com/profile/ProfileFollows.tsx +++ b/src/view/com/profile/ProfileFollows.tsx @@ -1,7 +1,6 @@ import {useCallback, useEffect, useMemo, useRef, useState} from 'react' import {type AppBskyActorDefs as ActorDefs} from '@atproto/api' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' +import {useLingui} from '@lingui/react/macro' import {useNavigation} from '@react-navigation/native' import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' @@ -44,12 +43,14 @@ function keyExtractor(item: ActorDefs.ProfileView) { } export function ProfileFollows({name}: {name: string}) { - const {_} = useLingui() + const {t: l} = useLingui() const ax = useAnalytics() const initialNumToRender = useInitialNumToRender() const {currentAccount} = useSession() const navigation = useNavigation() + const isSortEnabled = ax.features.enabled(ax.features.FollowSortEnable) + const onPressFindAccounts = useCallback(() => { if (IS_WEB) { navigation.navigate('Search', {}) @@ -65,6 +66,8 @@ export function ProfileFollows({name}: {name: string}) { isLoading: isDidLoading, error: resolveError, } = useResolveDidQuery(name) + const isMe = resolvedDid === currentAccount?.did + const sort = isMe ? 'latest' : 'top' const { data, isLoading: isFollowsLoading, @@ -73,10 +76,11 @@ export function ProfileFollows({name}: {name: string}) { fetchNextPage, error, refetch, - } = useProfileFollowsQuery(resolvedDid) + } = useProfileFollowsQuery(resolvedDid, { + sort, + }) const isError = !!resolveError || !!error - const isMe = resolvedDid === currentAccount?.did const follows = useMemo(() => { if (data?.pages) { @@ -106,10 +110,18 @@ export function ProfileFollows({name}: {name: string}) { contextProfileDid: resolvedDid, itemCount: follows.length, page: currentPageCount, + sort: isSortEnabled ? sort : undefined, }) } paginationTrackingRef.current.page = currentPageCount - }, [ax, data?.pages?.length, resolvedDid, follows.length]) + }, [ + ax, + data?.pages?.length, + resolvedDid, + follows.length, + sort, + isSortEnabled, + ]) const onRefresh = useCallback(async () => { setIsPTRing(true) @@ -142,9 +154,10 @@ export function ProfileFollows({name}: {name: string}) { ax.metric('profile:following:view', { contextProfileDid: resolvedDid, isOwnProfile: isMe, + sort: isSortEnabled ? sort : undefined, }) } - }, [ax, resolvedDid, isMe]) + }, [ax, resolvedDid, isMe, sort, isSortEnabled]) // track seen items const seenItemsRef = useRef>(new Set()) @@ -165,9 +178,10 @@ export function ProfileFollows({name}: {name: string}) { profileDid: item.did, position, ...(resolvedDid !== undefined && {contextProfileDid: resolvedDid}), + sort: isSortEnabled ? sort : undefined, }) }, - [ax, follows, resolvedDid], + [ax, follows, resolvedDid, sort, isSortEnabled], ) if (follows.length < 1) { @@ -178,8 +192,8 @@ export function ProfileFollows({name}: {name: string}) { emptyType="results" emptyMessage={ isMe - ? _(msg`You are not following anyone yet`) - : _(msg`This user isn't following anyone.`) + ? l`You are not following anyone yet` + : l`This user isn't following anyone.` } errorMessage={cleanError(resolveError || error)} onRetry={isError ? refetch : undefined} @@ -187,8 +201,8 @@ export function ProfileFollows({name}: {name: string}) { useEmptyState={true} emptyStateIcon={PeopleRemoveIcon} emptyStateButton={{ - label: _(msg`See suggested accounts`), - text: _(msg`See suggested accounts`), + label: l`See suggested accounts`, + text: l`See suggested accounts`, onPress: onPressFindAccounts, size: 'tiny', color: 'primary', @@ -203,8 +217,8 @@ export function ProfileFollows({name}: {name: string}) { renderItem={renderItemWithContext} keyExtractor={keyExtractor} refreshing={isPTRing} - onRefresh={onRefresh} - onEndReached={onEndReached} + onRefresh={() => void onRefresh()} + onEndReached={() => void onEndReached()} onEndReachedThreshold={4} onItemSeen={onItemSeen} ListHeaderComponent={} From 325246ec6ca052ae38a6aa40e64af3f344e36ed5 Mon Sep 17 00:00:00 2001 From: Spence Pope Date: Thu, 23 Jul 2026 12:52:47 -0400 Subject: [PATCH 03/53] Stub RN codegen native component on web (#11240) --- src/lib/web-shims/codegenNativeComponent.js | 17 +++++++++++++++++ webpack.config.js | 10 ++++++++++ 2 files changed, 27 insertions(+) create mode 100644 src/lib/web-shims/codegenNativeComponent.js diff --git a/src/lib/web-shims/codegenNativeComponent.js b/src/lib/web-shims/codegenNativeComponent.js new file mode 100644 index 0000000000..4c50f5cd87 --- /dev/null +++ b/src/lib/web-shims/codegenNativeComponent.js @@ -0,0 +1,17 @@ +/* + * Web stub for `react-native/Libraries/Utilities/codegenNativeComponent`. + * + * Deep `react-native/*` imports bypass the `react-native$ -> react-native-web` + * alias and drag RN core into the web bundle, where its platform-extension + * modules (e.g. Libraries/Utilities/Platform.js) resolve to themselves and + * throw a TDZ error at startup. Packages that import codegen specs + * unconditionally (react-native-uitextview) guard the native component behind + * a `Platform.OS === 'ios'` check, so nothing ever renders this on web. + */ +module.exports = function codegenNativeComponent(componentName) { + return function UnimplementedNativeComponent() { + throw new Error( + `Native component "${componentName}" was rendered on web. It has no web implementation.`, + ) + } +} diff --git a/webpack.config.js b/webpack.config.js index 889a2cb83f..69a7adaab1 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -62,6 +62,16 @@ module.exports = async function (env, argv) { } config = withAlias(config, { 'react-native$': 'react-native-web', + /* + * Codegen specs import this via a deep `react-native/*` path, which skips + * the exact-match alias above and pulls RN core into the web bundle. RN + * core's platform-extension modules have no `.web` variant, so they + * resolve to themselves and blow up with a TDZ error on startup. + */ + 'react-native/Libraries/Utilities/codegenNativeComponent$': path.join( + __dirname, + 'src/lib/web-shims/codegenNativeComponent.js', + ), 'react-native-webview': 'react-native-web-webview', 'react-native-gesture-handler': false, // RNGH should not be used on web, so let's cause a build error if it sneaks in '@sentry-internal/replay': false, // not used, ~300kb of dead weight From 723a60e979f002eac0e2e8babc6b97d13afb3fe0 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Thu, 23 Jul 2026 10:26:47 -0700 Subject: [PATCH 04/53] Display post counts greater than 1,000 (#11242) --- src/components/interstitials/FeedTrendingTopics.tsx | 12 ++++-------- src/screens/Search/modules/ExploreTrendingTopics.tsx | 12 ++++-------- 2 files changed, 8 insertions(+), 16 deletions(-) diff --git a/src/components/interstitials/FeedTrendingTopics.tsx b/src/components/interstitials/FeedTrendingTopics.tsx index a9666a82be..80080c1fbb 100644 --- a/src/components/interstitials/FeedTrendingTopics.tsx +++ b/src/components/interstitials/FeedTrendingTopics.tsx @@ -215,14 +215,10 @@ function TrendRow({ - {trend.postCount >= 1000 ? ( - 1K+ posts - ) : ( - - {formatCount(i18n, trend.postCount)}{' '} - {plural(trend.postCount, {one: 'post', other: 'posts'})} - - )} + + {formatCount(i18n, trend.postCount)}{' '} + {plural(trend.postCount, {one: 'post', other: 'posts'})} +
diff --git a/src/screens/Search/modules/ExploreTrendingTopics.tsx b/src/screens/Search/modules/ExploreTrendingTopics.tsx index eea857bc8b..0b422d162b 100644 --- a/src/screens/Search/modules/ExploreTrendingTopics.tsx +++ b/src/screens/Search/modules/ExploreTrendingTopics.tsx @@ -145,14 +145,10 @@ export function TrendRow({ - {trend.postCount >= 1000 ? ( - 1K+ posts - ) : ( - - {formatCount(i18n, trend.postCount)}{' '} - {plural(trend.postCount, {one: 'post', other: 'posts'})} - - )} + + {formatCount(i18n, trend.postCount)}{' '} + {plural(trend.postCount, {one: 'post', other: 'posts'})} + From 4e3d1704a6817babaa99327bed5881228cb315ac Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 23 Jul 2026 21:17:36 +0300 Subject: [PATCH 05/53] Fix scroll forwarder web entrypoint (#11245) --- modules/react-native-scroll-forwarder/src/index.web.tsx | 1 + src/view/screens/Profile.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 modules/react-native-scroll-forwarder/src/index.web.tsx diff --git a/modules/react-native-scroll-forwarder/src/index.web.tsx b/modules/react-native-scroll-forwarder/src/index.web.tsx new file mode 100644 index 0000000000..4b68b8fd04 --- /dev/null +++ b/modules/react-native-scroll-forwarder/src/index.web.tsx @@ -0,0 +1 @@ +export {ScrollForwarderView} from './ScrollForwarderView' diff --git a/src/view/screens/Profile.tsx b/src/view/screens/Profile.tsx index c31bb885fa..ead74bae94 100644 --- a/src/view/screens/Profile.tsx +++ b/src/view/screens/Profile.tsx @@ -1,7 +1,7 @@ import {useCallback, useEffect, useMemo, useRef, useState} from 'react' import {StyleSheet} from 'react-native' import {SafeAreaView} from 'react-native-safe-area-context' -import {ScrollForwarderView} from 'react-native-scroll-forwarder/src' +import {ScrollForwarderView} from 'react-native-scroll-forwarder' import { type AppBskyActorDefs, moderateProfile, From a53df16e8261293808aff373f29f6e2cf54af878 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 23 Jul 2026 14:15:09 -0500 Subject: [PATCH 06/53] Update API package and filter AA configs by platform (#11244) --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- src/ageAssurance/const.ts | 19 ++++++++++++++++++- src/ageAssurance/debug.ts | 5 +++-- src/ageAssurance/util.test.ts | 31 +++++++++++++++++++++++++++++++ src/ageAssurance/util.ts | 6 ++++++ 6 files changed, 64 insertions(+), 9 deletions(-) create mode 100644 src/ageAssurance/util.test.ts diff --git a/package.json b/package.json index 199a7cb1d8..14e5d356f3 100644 --- a/package.json +++ b/package.json @@ -96,7 +96,7 @@ "prettier": "prettier --check ." }, "dependencies": { - "@atproto/api": "0.20.32", + "@atproto/api": "0.20.33", "@atproto/common-web": "0.5.6", "@atproto/syntax": "0.7.2", "@bitdrift/react-native": "^0.6.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1b937313bd..0319db85dd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -242,8 +242,8 @@ importers: .: dependencies: '@atproto/api': - specifier: 0.20.32 - version: 0.20.32 + specifier: 0.20.33 + version: 0.20.33 '@atproto/common-web': specifier: 0.5.6 version: 0.5.6 @@ -871,8 +871,8 @@ packages: graphql: optional: true - '@atproto/api@0.20.32': - resolution: {integrity: sha512-P6Lh6+PR+x0/HHdEbmwZ5e2uvrzViEeobHWHoEc7KTaKJ/bQQu39z2wfBrG4dOTEC/OcOhFYhAhepo0VGIOeAQ==} + '@atproto/api@0.20.33': + resolution: {integrity: sha512-3YpnBVMieQFWetLvqibn2yG6vhNZ7ozSi/EUujuGcvYXt9g/NrvmHufaUtrXCasp2mHDI7t7UG5sLEBg6YNEJw==} engines: {node: '>=22'} '@atproto/common-web@0.5.6': @@ -9389,7 +9389,7 @@ snapshots: '@0no-co/graphql.web@1.2.0': {} - '@atproto/api@0.20.32': + '@atproto/api@0.20.33': dependencies: '@atproto/common-web': 0.5.6 '@atproto/lexicon': 0.7.7 diff --git a/src/ageAssurance/const.ts b/src/ageAssurance/const.ts index f410d63489..326552681c 100644 --- a/src/ageAssurance/const.ts +++ b/src/ageAssurance/const.ts @@ -4,13 +4,30 @@ import { } from '@atproto/api' import {AgeAssuranceAccess} from '#/ageAssurance/types' -import {ANDROID_API_LEVEL, IOS_MAJOR_VERSION, IS_ANDROID, IS_IOS} from '#/env' +import { + ANDROID_API_LEVEL, + IOS_MAJOR_VERSION, + IS_ANDROID, + IS_IOS, + IS_WEB, +} from '#/env' /** * Minimum age required to access the app at all. */ export const MIN_ACCESS_AGE = 13 +/** + * The identifier for the current platform, matching the `knownValues` of the + * `platforms` property on `app.bsky.ageassurance.defs#configRegion`. Used to + * filter out region configs that don't apply to this platform. + */ +export const AGE_ASSURANCE_PLATFORM: 'web' | 'ios' | 'android' = IS_WEB + ? 'web' + : IS_IOS + ? 'ios' + : 'android' + /** * Whether the current device can provide the native on-device age signals we * use for age assurance (via `expo-age-range`). We gate on OS version because diff --git a/src/ageAssurance/debug.ts b/src/ageAssurance/debug.ts index 8a828a00e0..74121976ca 100644 --- a/src/ageAssurance/debug.ts +++ b/src/ageAssurance/debug.ts @@ -59,9 +59,10 @@ export const config: AppBskyAgeassuranceDefs.Config = { ], }, { - // On-device verification region. KWS is included as a fallback for - // platforms without the native age API (e.g. web) or when the device + // On-device verification region, native-only (web users in TX are not + // age assured). KWS is included as a fallback for when the device // result is insufficient. + platforms: ['ios', 'android'], countryCode: 'US', regionCode: 'TX', minAccessAge: 18, diff --git a/src/ageAssurance/util.test.ts b/src/ageAssurance/util.test.ts new file mode 100644 index 0000000000..1da131b920 --- /dev/null +++ b/src/ageAssurance/util.test.ts @@ -0,0 +1,31 @@ +import {getAgeAssuranceRegionConfig} from '@atproto/api' + +import {getAgeAssuranceRegionConfigForGeolocation} from '#/ageAssurance/util' + +jest.mock('#/ageAssurance/data') +jest.mock('@atproto/api', () => ({ + ...jest.requireActual('@atproto/api'), + getAgeAssuranceRegionConfig: jest.fn(), +})) + +/* + * Platform-based region filtering itself is implemented and tested in + * `@atproto/api` (see `getAgeAssuranceRegionConfig`). What we own - and test + * here - is that region resolution passes the current platform through. The + * jest preset is `jest-expo/ios`, so `AGE_ASSURANCE_PLATFORM` resolves to + * `ios` in these tests. + */ +describe('getAgeAssuranceRegionConfigForGeolocation', () => { + it('passes the current platform to the SDK region matcher', () => { + const config = {regions: []} + getAgeAssuranceRegionConfigForGeolocation(config, { + countryCode: 'US', + regionCode: 'TX', + }) + expect(getAgeAssuranceRegionConfig).toHaveBeenCalledWith(config, { + countryCode: 'US', + regionCode: 'TX', + platform: 'ios', + }) + }) +}) diff --git a/src/ageAssurance/util.ts b/src/ageAssurance/util.ts index ecd6468339..2bceab4d16 100644 --- a/src/ageAssurance/util.ts +++ b/src/ageAssurance/util.ts @@ -11,6 +11,7 @@ import {getAge} from '#/lib/strings/time' import {regionName} from '#/locale/helpers' import {DEFAULT_LOGGED_OUT_LABEL_PREFERENCES} from '#/state/queries/preferences/const' import { + AGE_ASSURANCE_PLATFORM, DEVICE_SIGNALS_SUPPORTED, FALLBACK_REGION_CONFIG, MIN_ACCESS_AGE, @@ -29,6 +30,10 @@ import {USRegionNameToRegionCode} from '#/geolocation/util' * Resolves a geolocation to its matched age assurance region config, or * undefined when the geolocation matches no AA region. * + * Regions scoped to other platforms via `platforms` are passed over entirely, + * as if they weren't in the config - a later region matching the same + * geolocation can still apply. + * * This is the single source of truth for geolocation -> region resolution. * Device signals are written and read back under a key derived from the * matched region (see `createRegionKey`), so every site that resolves a region @@ -42,6 +47,7 @@ export function getAgeAssuranceRegionConfigForGeolocation( return getAgeAssuranceRegionConfig(config, { countryCode: geolocation.countryCode ?? '', regionCode: geolocation.regionCode, + platform: AGE_ASSURANCE_PLATFORM, }) } From a9df815bd0d8435125e057e4a38ad56492c12474 Mon Sep 17 00:00:00 2001 From: pfrazee <1270099+pfrazee@users.noreply.github.com> Date: Fri, 24 Jul 2026 03:10:54 +0000 Subject: [PATCH 07/53] Nightly source-language update --- src/locale/locales/en/messages.po | 383 +++++++++++++++--------------- 1 file changed, 188 insertions(+), 195 deletions(-) diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index 51d10b8cf8..5e8d35e2ef 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -14,12 +14,12 @@ msgstr "" "Plural-Forms: \n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blocked message hidden)" @@ -34,7 +34,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(deleted message)" @@ -49,7 +49,7 @@ msgid "(invalid chat invite link)" msgstr "(invalid chat invite link)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(message sent before you joined)" @@ -135,7 +135,7 @@ msgstr "{0, plural, one {# new join request} other {# new join requests}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# person} other {# people}} reacted – {1}" @@ -193,9 +193,9 @@ msgstr "" #. placeholder {0}: profile.postsCount || 0 #. placeholder {0}: trend.postCount -#: src/components/interstitials/FeedTrendingTopics.tsx:223 +#: src/components/interstitials/FeedTrendingTopics.tsx:220 #: src/screens/Profile/Header/Metrics.tsx:58 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:153 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:150 msgid "{0, plural, one {post} other {posts}}" msgstr "" @@ -230,10 +230,10 @@ msgstr "" #. '{postCount} {posts}', e.g., '1.2K posts' #. '{postCount} {posts}', e.g., '1.2K posts' #. placeholder {0}: formatCount(i18n, trend.postCount) -#. placeholder {1}: import {useMemo} from 'react' import {Pressable, View} from 'react-native' import {Image} from 'expo-image' import { type AppBskyUnspeccedDefs, moderateProfile, RichText as RichTextApi, } from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useTrendingSettings} from '#/state/preferences/trending' import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {formatCount} from '#/view/com/util/numeric/format' import {atoms as a, useGutters, useTheme, type ViewStyleProp} from '#/alf' import {AvatarStack} from '#/components/AvatarStack' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import {Link} from '#/components/Link' import {RichText} from '#/components/RichText' import {SubtleHover} from '#/components/SubtleHover' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' import * as ModuleHeader from '../components/ModuleHeader' const TOPIC_COUNT = 5 const IMAGE_SIZE = 56 export function ExploreTrendingTopics() { const {enabled} = useTrendingConfig() const {trendingDisabled} = useTrendingSettings() return enabled && !trendingDisabled ? : null } function Inner() { const ax = useAnalytics() const {data: trending, error, isLoading, isRefetching} = useGetTrendsQuery() const noTopics = !isLoading && !error && !trending?.trends?.length const showLoading = isLoading || isRefetching if (!showLoading && (error || !trending?.trends || noTopics)) return null return ( Trending {showLoading ? Array.from({length: TOPIC_COUNT}).map((__, i) => ( )) : trending?.trends.map((trend, index) => ( { ax.metric('trendingTopic:click', { context: 'explore', recId: trending.recId, }) }} /> ))} ) } export function TrendRow({ trend, rank, children, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number children?: React.ReactNode onPress?: () => void }) { const t = useTheme() const {t: l, i18n} = useLingui() const gutters = useGutters([0, 'base']) const actors = useModerateTrendingActors(trend.actors) const description = useMemo(() => { if (!trend.description) return const rt = new RichTextApi({text: trend.description}) rt.detectFacetsWithoutResolution() return rt }, [trend.description]) let imageUrl = null // TODO Image URL goes here when available. -dsb return ( {({hovered, pressed}) => ( <> {rank}. {trend.displayName} {description ? ( ) : null} {actors.length > 0 ? ( ) : null} {trend.postCount >= 1000 ? ( 1K+ posts ) : ( {formatCount(i18n, trend.postCount)}{' '} {plural(trend.postCount, {one: 'post', other: 'posts'})} )} {imageUrl ? ( {trend.topic} ) : null} {children} )} ) } // Unused atm, but leaving here so we don't lose localization. -dsb export function useCategoryDisplayName( category: AppBskyUnspeccedDefs.TrendView['category'], ) { const {t: l} = useLingui() switch (category) { case 'sports': return l`Sports` case 'politics': return l`Politics` case 'video-games': return l`Video Games` case 'pop-culture': return l`Entertainment` case 'news': return l`News` case 'other': default: return null } } export function TrendingTopicRowSkeleton() { const t = useTheme() const gutters = useGutters([0, 'base']) return ( {/* TODO Image placeholder goes here when images are available. -dsb */} ) } function useModerateTrendingActors( actors: AppBskyUnspeccedDefs.TrendView['actors'], ) { const moderationOpts = useModerationOpts() return useMemo(() => { if (!moderationOpts) return [] return actors .filter(actor => { const decision = moderateProfile(actor, moderationOpts) return !decision.ui('avatar').filter && !decision.ui('avatar').blur }) .slice(0, 3) }, [actors, moderationOpts]) } -#. placeholder {1}: import {useMemo} from 'react' import {Pressable, View} from 'react-native' import {LinearGradient} from 'expo-linear-gradient' import {type AppBskyUnspeccedDefs, moderateProfile} from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useTrendingSettings} from '#/state/preferences/trending' import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {formatCount} from '#/view/com/util/numeric/format' import { atoms as a, useGutters, useLayoutBreakpoints, useTheme, type ViewStyleProp, } from '#/alf' import {alpha} from '#/alf/utils' import {AvatarStack} from '#/components/AvatarStack' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import {Link} from '#/components/Link' import {SubtleHover} from '#/components/SubtleHover' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' const TOPIC_COUNT = 3 export function FeedTrendingTopicsInterstitial() { const {enabled} = useTrendingConfig() const {trendingDisabled} = useTrendingSettings() const {rightNavVisible} = useLayoutBreakpoints() return enabled && !trendingDisabled && !rightNavVisible ? : null } function Inner() { const t = useTheme() const {t: l} = useLingui() const gutters = useGutters([0, 'base']) const ax = useAnalytics() const { data: trending, error, isLoading, isRefetching, } = useGetTrendsQuery({limit: TOPIC_COUNT}) const noTopics = !isLoading && !error && !trending?.trends?.length const shadowColor = alpha(t.palette.primary_100, 0.5) const gradient = { values: [ [0, t.atoms.bg.backgroundColor], [0.1, t.palette.primary_25], [0.9, t.palette.primary_25], [1, t.atoms.bg.backgroundColor], ], hover_value: t.palette.white, } if (error || noTopics) { return null } return ( c[1]) as [string, string, ...string[]]} locations={ gradient.values.map(c => c[0]) as [number, number, ...number[]] } style={[a.absolute, a.inset_0]} /> Trending See more {isLoading || isRefetching ? Array.from({length: TOPIC_COUNT}).map((_, i) => ( )) : trending?.trends?.map((trend, index) => ( { ax.metric('trendingTopic:click', {context: 'interstitial'}) }} /> ))} ) } function TrendRow({ trend, rank, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number children?: React.ReactNode onPress?: () => void }) { const t = useTheme() const {t: l, i18n} = useLingui() const actors = useModerateTrendingActors(trend.actors) return ( {({hovered, pressed}) => ( <> {rank}. {trend.displayName} {actors.length > 0 ? ( ) : null} {trend.postCount >= 1000 ? ( 1K+ posts ) : ( {formatCount(i18n, trend.postCount)}{' '} {plural(trend.postCount, {one: 'post', other: 'posts'})} )} )} ) } function TrendingTopicRowSkeleton({rank}: {rank: number}) { const t = useTheme() return ( ) } function useModerateTrendingActors( actors: AppBskyUnspeccedDefs.TrendView['actors'], ) { const moderationOpts = useModerationOpts() return useMemo(() => { if (!moderationOpts) return [] return actors .filter(actor => { const decision = moderateProfile(actor, moderationOpts) return !decision.ui('avatar').filter && !decision.ui('avatar').blur }) .slice(0, 3) }, [actors, moderationOpts]) } -#: src/components/interstitials/FeedTrendingTopics.tsx:221 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:151 +#. placeholder {1}: import {useMemo} from 'react' import {Pressable, View} from 'react-native' import {Image} from 'expo-image' import { type AppBskyUnspeccedDefs, moderateProfile, RichText as RichTextApi, } from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useTrendingSettings} from '#/state/preferences/trending' import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {formatCount} from '#/view/com/util/numeric/format' import {atoms as a, useGutters, useTheme, type ViewStyleProp} from '#/alf' import {AvatarStack} from '#/components/AvatarStack' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import {Link} from '#/components/Link' import {RichText} from '#/components/RichText' import {SubtleHover} from '#/components/SubtleHover' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' import * as ModuleHeader from '../components/ModuleHeader' const TOPIC_COUNT = 5 const IMAGE_SIZE = 56 export function ExploreTrendingTopics() { const {enabled} = useTrendingConfig() const {trendingDisabled} = useTrendingSettings() return enabled && !trendingDisabled ? : null } function Inner() { const ax = useAnalytics() const {data: trending, error, isLoading, isRefetching} = useGetTrendsQuery() const noTopics = !isLoading && !error && !trending?.trends?.length const showLoading = isLoading || isRefetching if (!showLoading && (error || !trending?.trends || noTopics)) return null return ( Trending {showLoading ? Array.from({length: TOPIC_COUNT}).map((__, i) => ( )) : trending?.trends.map((trend, index) => ( { ax.metric('trendingTopic:click', { context: 'explore', recId: trending.recId, }) }} /> ))} ) } export function TrendRow({ trend, rank, children, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number children?: React.ReactNode onPress?: () => void }) { const t = useTheme() const {t: l, i18n} = useLingui() const gutters = useGutters([0, 'base']) const actors = useModerateTrendingActors(trend.actors) const description = useMemo(() => { if (!trend.description) return const rt = new RichTextApi({text: trend.description}) rt.detectFacetsWithoutResolution() return rt }, [trend.description]) let imageUrl = null // TODO Image URL goes here when available. -dsb return ( {({hovered, pressed}) => ( <> {rank}. {trend.displayName} {description ? ( ) : null} {actors.length > 0 ? ( ) : null} {formatCount(i18n, trend.postCount)}{' '} {plural(trend.postCount, {one: 'post', other: 'posts'})} {imageUrl ? ( {trend.topic} ) : null} {children} )} ) } // Unused atm, but leaving here so we don't lose localization. -dsb export function useCategoryDisplayName( category: AppBskyUnspeccedDefs.TrendView['category'], ) { const {t: l} = useLingui() switch (category) { case 'sports': return l`Sports` case 'politics': return l`Politics` case 'video-games': return l`Video Games` case 'pop-culture': return l`Entertainment` case 'news': return l`News` case 'other': default: return null } } export function TrendingTopicRowSkeleton() { const t = useTheme() const gutters = useGutters([0, 'base']) return ( {/* TODO Image placeholder goes here when images are available. -dsb */} ) } function useModerateTrendingActors( actors: AppBskyUnspeccedDefs.TrendView['actors'], ) { const moderationOpts = useModerationOpts() return useMemo(() => { if (!moderationOpts) return [] return actors .filter(actor => { const decision = moderateProfile(actor, moderationOpts) return !decision.ui('avatar').filter && !decision.ui('avatar').blur }) .slice(0, 3) }, [actors, moderationOpts]) } +#. placeholder {1}: import {useMemo} from 'react' import {Pressable, View} from 'react-native' import {LinearGradient} from 'expo-linear-gradient' import {type AppBskyUnspeccedDefs, moderateProfile} from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useTrendingSettings} from '#/state/preferences/trending' import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {formatCount} from '#/view/com/util/numeric/format' import { atoms as a, useGutters, useLayoutBreakpoints, useTheme, type ViewStyleProp, } from '#/alf' import {alpha} from '#/alf/utils' import {AvatarStack} from '#/components/AvatarStack' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import {Link} from '#/components/Link' import {SubtleHover} from '#/components/SubtleHover' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' const TOPIC_COUNT = 3 export function FeedTrendingTopicsInterstitial() { const {enabled} = useTrendingConfig() const {trendingDisabled} = useTrendingSettings() const {rightNavVisible} = useLayoutBreakpoints() return enabled && !trendingDisabled && !rightNavVisible ? : null } function Inner() { const t = useTheme() const {t: l} = useLingui() const gutters = useGutters([0, 'base']) const ax = useAnalytics() const { data: trending, error, isLoading, isRefetching, } = useGetTrendsQuery({limit: TOPIC_COUNT}) const noTopics = !isLoading && !error && !trending?.trends?.length const shadowColor = alpha(t.palette.primary_100, 0.5) const gradient = { values: [ [0, t.atoms.bg.backgroundColor], [0.1, t.palette.primary_25], [0.9, t.palette.primary_25], [1, t.atoms.bg.backgroundColor], ], hover_value: t.palette.white, } if (error || noTopics) { return null } return ( c[1]) as [string, string, ...string[]]} locations={ gradient.values.map(c => c[0]) as [number, number, ...number[]] } style={[a.absolute, a.inset_0]} /> Trending See more {isLoading || isRefetching ? Array.from({length: TOPIC_COUNT}).map((_, i) => ( )) : trending?.trends?.map((trend, index) => ( { ax.metric('trendingTopic:click', {context: 'interstitial'}) }} /> ))} ) } function TrendRow({ trend, rank, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number children?: React.ReactNode onPress?: () => void }) { const t = useTheme() const {t: l, i18n} = useLingui() const actors = useModerateTrendingActors(trend.actors) return ( {({hovered, pressed}) => ( <> {rank}. {trend.displayName} {actors.length > 0 ? ( ) : null} {formatCount(i18n, trend.postCount)}{' '} {plural(trend.postCount, {one: 'post', other: 'posts'})} )} ) } function TrendingTopicRowSkeleton({rank}: {rank: number}) { const t = useTheme() return ( ) } function useModerateTrendingActors( actors: AppBskyUnspeccedDefs.TrendView['actors'], ) { const moderationOpts = useModerationOpts() return useMemo(() => { if (!moderationOpts) return [] return actors .filter(actor => { const decision = moderateProfile(actor, moderationOpts) return !decision.ui('avatar').filter && !decision.ui('avatar').blur }) .slice(0, 3) }, [actors, moderationOpts]) } +#: src/components/interstitials/FeedTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 msgid "{0} {1}" msgstr "{0} {1}" @@ -266,7 +266,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} is blocking you" @@ -324,7 +324,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -758,15 +758,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, one {# character remaining} other {# characters remaining}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} replied" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} replied to {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} replied to you" @@ -903,13 +903,6 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "" -#. Over 1,000 posts -#. Over 1,000 posts -#: src/components/interstitials/FeedTrendingTopics.tsx:219 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:149 -msgid "1K+ posts" -msgstr "1K+ posts" - #: src/components/dialogs/MutedWords.tsx:202 #: src/components/dialogs/MutedWords.tsx:551 #: src/components/dialogs/MutedWords.tsx:554 @@ -967,7 +960,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "A reply to a message sent before you joined" @@ -1191,11 +1184,11 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1602 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2268 msgid "Add another post to thread" msgstr "" @@ -1858,7 +1851,7 @@ msgid "Appeal this label" msgstr "Appeal this label" #: src/Navigation.tsx:398 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1946,7 +1939,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Are you sure you want to rescind your request to join {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1738 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2087,7 +2080,7 @@ msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 #: src/components/StarterPack/ProfileStarterPacks.tsx:267 #: src/components/StarterPack/ProfileStarterPacks.tsx:277 -#: src/view/screens/Profile.tsx:350 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2303,7 +2296,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2539,8 +2532,8 @@ msgstr "Camera access needed" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1816 +#: src/view/com/composer/Composer.tsx:1826 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2941,7 +2934,7 @@ msgstr "Click here to view the invite link for this group chat" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3073,7 +3066,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1824 msgid "Closes post composer and discards post draft" msgstr "" @@ -3090,7 +3083,7 @@ msgid "Color" msgstr "Color" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3127,7 +3120,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1700 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3135,11 +3128,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2672 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2674 msgid "Compressing video..." msgstr "" @@ -3601,8 +3594,8 @@ msgstr "" msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" @@ -3614,7 +3607,7 @@ msgstr "" #: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 #: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3741,8 +3734,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3751,7 +3744,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3785,7 +3778,7 @@ msgstr "Decline this language suggestion" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3865,7 +3858,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1712 msgid "Delete post" msgstr "" @@ -3959,7 +3952,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "Dialog: Set search filters" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4016,9 +4009,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1492 +#: src/view/com/composer/Composer.tsx:1536 +#: src/view/com/composer/Composer.tsx:1745 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4029,14 +4022,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1490 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1507 +#: src/view/com/composer/Composer.tsx:1737 msgid "Discard post?" msgstr "" @@ -4074,11 +4067,11 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2593 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" @@ -4187,7 +4180,7 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" @@ -4559,7 +4552,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:132 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4628,11 +4621,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2692 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -5075,7 +5068,7 @@ msgstr "Failed to rescind your request. Please try again." msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:726 msgid "Failed to save draft" msgstr "" @@ -5221,7 +5214,7 @@ msgstr "" #: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5428,11 +5421,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5558,16 +5551,16 @@ msgstr "" msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5587,13 +5580,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5776,7 +5769,7 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2697 msgid "GIF uploaded" msgstr "" @@ -5802,8 +5795,8 @@ msgstr "" #: src/screens/VideoFeed/index.tsx:1239 #: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -6752,7 +6745,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2612 msgid "Job ID: {0}" msgstr "" @@ -6792,8 +6785,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1550 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6816,7 +6809,7 @@ msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6850,7 +6843,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -7033,7 +7026,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7052,7 +7045,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7115,7 +7108,7 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 #: src/screens/Settings/NotificationSettings/index.tsx:159 #: src/screens/Settings/NotificationSettings/index.tsx:314 -#: src/view/screens/Profile.tsx:238 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" @@ -7226,8 +7219,8 @@ msgstr "" #: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7287,7 +7280,7 @@ msgid "Load new notifications" msgstr "" #: src/screens/Profile/ProfileFeed/index.tsx:208 -#: src/screens/Profile/Sections/Feed.tsx:118 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7455,7 +7448,7 @@ msgid "Me" msgstr "Me" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7534,7 +7527,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Message failed to send." @@ -7565,11 +7558,11 @@ msgstr "" msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Messages from this person are hidden while they are blocking you." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Messages from this person are hidden while you are blocking them." @@ -7984,7 +7977,7 @@ msgstr "" #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8022,7 +8015,7 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "News" msgstr "" @@ -8095,7 +8088,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8115,7 +8108,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8132,7 +8125,7 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8181,8 +8174,8 @@ msgstr "No one can send messages" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:82 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" @@ -8199,7 +8192,7 @@ msgstr "No recent GIFs yet. Pick one to see it here." msgid "No replies" msgstr "No replies" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8249,7 +8242,7 @@ msgstr "No results found for your query with advanced search filters applied." msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8262,7 +8255,7 @@ msgstr "" msgid "No translation received from your device." msgstr "No translation received from your device." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8318,7 +8311,7 @@ msgid "Not followed by anyone you’re following" msgstr "Not followed by anyone you’re following" #: src/Navigation.tsx:169 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8407,7 +8400,7 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 #: src/components/dms/InitiateChatFlow.tsx:838 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 #: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" @@ -8442,11 +8435,11 @@ msgstr "One of the selected recipients does not allow group chats." msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "One of the selected recipients has blocked you and cannot be messaged." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:934 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:931 msgid "One or more images is missing alt text." msgstr "" @@ -8458,11 +8451,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:737 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:941 msgid "One or more videos is missing alt text." msgstr "" @@ -8475,7 +8468,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" @@ -8540,7 +8533,7 @@ msgstr "Oops, this profile doesn't exist. Try scanning another one." #: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8579,7 +8572,7 @@ msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2245 msgid "Open emoji picker" msgstr "" @@ -8736,7 +8729,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -9266,7 +9259,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 msgid "Politics" msgstr "" @@ -9274,7 +9267,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1890 msgctxt "action" msgid "Post" msgstr "" @@ -9284,22 +9277,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1888 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1549 msgid "Post anyway" msgstr "Post anyway" @@ -9384,7 +9377,7 @@ msgstr "" #: src/screens/ProfileList/index.tsx:167 #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" @@ -9482,11 +9475,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2686 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2688 msgid "Processing video..." msgstr "" @@ -9533,22 +9526,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1869 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1858 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish reply" msgstr "" @@ -10006,15 +9999,15 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Replied-to message from {senderName}, tap to scroll to it" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Replied-to message was sent before you joined" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Replied-to message, tap to scroll to it" @@ -10024,7 +10017,7 @@ msgstr "Replied-to message, tap to scroll to it" #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 #: src/screens/Settings/NotificationSettings/index.tsx:181 #: src/screens/Settings/NotificationSettings/index.tsx:330 -#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10041,7 +10034,7 @@ msgstr "" msgid "Reply" msgstr "Reply" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1886 msgctxt "action" msgid "Reply" msgstr "" @@ -10450,22 +10443,22 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1530 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1502 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1530 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1504 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" @@ -10547,15 +10540,15 @@ msgstr "Scan QR code" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Scroll to the message this is replying to" @@ -10725,8 +10718,8 @@ msgstr "" msgid "See more trending topics" msgstr "See more trending topics" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10740,7 +10733,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -11370,8 +11363,8 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 #: src/screens/Search/SearchResults.tsx:413 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11480,7 +11473,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1547 msgid "Skip empty posts?" msgstr "Skip empty posts?" @@ -11498,7 +11491,7 @@ msgstr "" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11556,7 +11549,7 @@ msgid "Someone left the group" msgstr "Someone left the group" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11565,7 +11558,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "Someone reacted {0} to {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Someone replied" @@ -11661,7 +11654,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:192 msgid "Sports" msgstr "" @@ -11731,7 +11724,7 @@ msgid "Starter packs" msgstr "Starter packs" #: src/screens/Search/Explore.tsx:661 -#: src/view/screens/Profile.tsx:240 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" @@ -11743,7 +11736,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11938,8 +11931,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11962,7 +11955,7 @@ msgstr "Take the conversation private." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tap for details" @@ -11993,7 +11986,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "Tap to copy this invite link" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12020,7 +12013,7 @@ msgstr "Tap to remove your {0} reaction" msgid "Tap to request access to join this group chat" msgstr "Tap to request access to join this group chat" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tap to retry" @@ -12033,7 +12026,7 @@ msgstr "Tap to show {0} reactions" msgid "Tap to show all reactions" msgstr "Tap to show all reactions" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tap to view reactions" @@ -12049,7 +12042,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12233,7 +12226,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12255,7 +12248,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12301,7 +12294,7 @@ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" #: src/screens/Search/Explore.tsx:1015 -#: src/view/com/posts/PostFeed.tsx:808 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12638,13 +12631,13 @@ msgstr "" msgid "This message is hidden" msgstr "This message is hidden" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "This message is hidden because this user is blocking you." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "This message is hidden because you are blocking this user." @@ -12678,7 +12671,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1122 msgid "This post's author has disabled quote posts." msgstr "" @@ -12715,7 +12708,7 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" @@ -12752,7 +12745,7 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" @@ -13047,7 +13040,7 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/moderation/BlockDialog.tsx:187 @@ -13285,7 +13278,7 @@ msgstr "" msgid "Unsupported clipboard content" msgstr "Unsupported clipboard content" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1639 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13378,7 +13371,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2679 msgid "Uploading GIF..." msgstr "" @@ -13392,7 +13385,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2681 msgid "Uploading video..." msgstr "" @@ -13431,7 +13424,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "user" @@ -13656,7 +13649,7 @@ msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Video Games" msgstr "" @@ -13676,7 +13669,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2699 msgid "Video uploaded" msgstr "" @@ -13685,17 +13678,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1229 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13784,7 +13777,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1224 msgid "View post" msgstr "" @@ -14103,7 +14096,7 @@ msgstr "We’re sorry, but your search could not be completed. Please try again msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1120 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14159,7 +14152,7 @@ msgid "what’s up" msgstr "what’s up" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1603 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14245,21 +14238,21 @@ msgstr "Would you like to block this user and/or leave this conversation?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1518 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1699 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1601 msgid "Write your reply" msgstr "" @@ -14325,7 +14318,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "You are blocking {0}" @@ -14367,7 +14360,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14431,11 +14424,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1523 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14581,7 +14574,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1513 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14679,7 +14672,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14693,15 +14686,15 @@ msgstr "You reacted {0} to {target}" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "You replied" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "You replied to {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "You replied to yourself" @@ -14817,7 +14810,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:724 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14993,11 +14986,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1220 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1217 msgid "Your posts were sent" msgstr "" @@ -15018,7 +15011,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1219 msgid "Your reply was sent" msgstr "" @@ -15031,7 +15024,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1548 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." From 22a495832167638d141b30b352945c10be342ec9 Mon Sep 17 00:00:00 2001 From: Tomasz Zawadzki Date: Fri, 24 Jul 2026 06:09:01 +0200 Subject: [PATCH 08/53] Migrate `useScrollViewOffset` to `useScrollOffset` (#11250) --- src/components/DraggableList/index.tsx | 2 +- src/components/DraggableList/index.web.tsx | 2 +- src/screens/SavedFeeds.tsx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/DraggableList/index.tsx b/src/components/DraggableList/index.tsx index 812e364f50..7e70e2f07d 100644 --- a/src/components/DraggableList/index.tsx +++ b/src/components/DraggableList/index.tsx @@ -42,7 +42,7 @@ interface SortableListProps { itemHeight: number /** Ref to the parent Animated.ScrollView for auto-scroll. */ scrollRef?: AnimatedRef - /** Scroll offset shared value from useScrollViewOffset. */ + /** Scroll offset shared value from useScrollOffset. */ scrollOffset?: SharedValue } diff --git a/src/components/DraggableList/index.web.tsx b/src/components/DraggableList/index.web.tsx index 7dd02cb76c..e5a158b57a 100644 --- a/src/components/DraggableList/index.web.tsx +++ b/src/components/DraggableList/index.web.tsx @@ -22,7 +22,7 @@ interface SortableListProps { itemHeight: number /** Ref to the parent Animated.ScrollView for auto-scroll. Ignored on web. */ scrollRef?: AnimatedRef - /** Scroll offset shared value from useScrollViewOffset. Ignored on web. */ + /** Scroll offset shared value from useScrollOffset. Ignored on web. */ scrollOffset?: SharedValue } diff --git a/src/screens/SavedFeeds.tsx b/src/screens/SavedFeeds.tsx index 2f3718735b..db574318f3 100644 --- a/src/screens/SavedFeeds.tsx +++ b/src/screens/SavedFeeds.tsx @@ -1,7 +1,7 @@ import {useState} from 'react' import {View} from 'react-native' import type Animated from 'react-native-reanimated' -import {useAnimatedRef, useScrollViewOffset} from 'react-native-reanimated' +import {useAnimatedRef, useScrollOffset} from 'react-native-reanimated' import {type AppBskyActorDefs} from '@atproto/api' import {TID} from '@atproto/common-web' import {msg} from '@lingui/core/macro' @@ -69,7 +69,7 @@ function SavedFeedsInner({ useOverwriteSavedFeedsMutation() const navigation = useNavigation() const scrollRef = useAnimatedRef() - const scrollOffset = useScrollViewOffset(scrollRef) + const scrollOffset = useScrollOffset(scrollRef) /* * Use optimistic data if exists and no error, otherwise fallback to remote From 97169dbc35b8777ad5b46cea405a1d0521c9b685 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Fri, 24 Jul 2026 03:29:55 -0700 Subject: [PATCH 09/53] Tweak appearance of trending topics (#11253) --- .../interstitials/FeedTrendingTopics.tsx | 48 +++++++------------ 1 file changed, 17 insertions(+), 31 deletions(-) diff --git a/src/components/interstitials/FeedTrendingTopics.tsx b/src/components/interstitials/FeedTrendingTopics.tsx index 80080c1fbb..8f3baab6e5 100644 --- a/src/components/interstitials/FeedTrendingTopics.tsx +++ b/src/components/interstitials/FeedTrendingTopics.tsx @@ -1,6 +1,5 @@ import {useMemo} from 'react' import {Pressable, View} from 'react-native' -import {LinearGradient} from 'expo-linear-gradient' import {type AppBskyUnspeccedDefs, moderateProfile} from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' @@ -51,16 +50,6 @@ function Inner() { const shadowColor = alpha(t.palette.primary_100, 0.5) - const gradient = { - values: [ - [0, t.atoms.bg.backgroundColor], - [0.1, t.palette.primary_25], - [0.9, t.palette.primary_25], - [1, t.atoms.bg.backgroundColor], - ], - hover_value: t.palette.white, - } - if (error || noTopics) { return null } @@ -75,13 +64,6 @@ function Inner() { a.border_t, t.atoms.border_contrast_low, ]}> - c[1]) as [string, string, ...string[]]} - locations={ - gradient.values.map(c => c[0]) as [number, number, ...number[]] - } - style={[a.absolute, a.inset_0]} - /> - + Trending - - See more - + {({hovered, pressed}) => ( + + See more + + )} Date: Fri, 24 Jul 2026 13:30:10 +0300 Subject: [PATCH 10/53] Fix Maestro E2E runtime environment (#11247) --- .github/scripts/run-nightly-e2e.sh | 2 +- .github/workflows/nightly-e2e.yml | 4 ++-- babel.config.js | 24 +++++++++++++----------- eas.json | 2 +- package.json | 6 +++--- 5 files changed, 20 insertions(+), 18 deletions(-) diff --git a/.github/scripts/run-nightly-e2e.sh b/.github/scripts/run-nightly-e2e.sh index fe4fb7e355..e2c9942884 100755 --- a/.github/scripts/run-nightly-e2e.sh +++ b/.github/scripts/run-nightly-e2e.sh @@ -136,7 +136,7 @@ wait_for_port 1986 "the E2E mock-server manager" phase "Starting Metro" EXPO_PUBLIC_ENV=e2e \ - NODE_ENV=test \ + NODE_ENV=development \ RN_SRC_EXT=e2e.ts,e2e.tsx \ pnpm exec expo start --dev-client --clear --port 8081 \ >"$artifact_dir/metro.log" 2>&1 & diff --git a/.github/workflows/nightly-e2e.yml b/.github/workflows/nightly-e2e.yml index 1b2a5282a5..c6ed99e8d8 100644 --- a/.github/workflows/nightly-e2e.yml +++ b/.github/workflows/nightly-e2e.yml @@ -42,7 +42,7 @@ jobs: run: | mkdir -p artifacts/ios echo "Installing dependencies" > artifacts/ios/phase.txt - cp .env.example .env.test + cp .env.example .env.development cp google-services.json.example google-services.json - name: Set up Expo project @@ -167,7 +167,7 @@ jobs: run: | mkdir -p artifacts/android echo "Installing dependencies" > artifacts/android/phase.txt - cp .env.example .env.test + cp .env.example .env.development cp google-services.json.example google-services.json - name: Set up Expo project diff --git a/babel.config.js b/babel.config.js index 1a11b2cb1f..c29a1d2e44 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,6 +1,8 @@ +/** + * @param {import("@babel/core").ConfigAPI} api + * @returns {import("@babel/core").InputOptions} + */ module.exports = function (api) { - api.cache(true) - const isTestEnv = process.env.NODE_ENV === 'test' return { presets: [ [ @@ -10,7 +12,7 @@ module.exports = function (api) { native: { // Disable ESM -> CJS compilation because Metro takes care of it. // However, we need it in Jest tests since those run without Metro. - disableImportExportTransform: !isTestEnv, + disableImportExportTransform: !api.env('test'), }, }, ], @@ -29,15 +31,15 @@ module.exports = function (api) { }, }, ], + + // cannot use `env` field because it will put them after + // the `react-native-worklets/plugin` plugin + ...(api.env('test') + ? ['@babel/plugin-transform-class-static-block'] + : []), + ...(api.env('production') ? ['transform-remove-console'] : []), + 'react-native-worklets/plugin', // NOTE: this plugin MUST be last ], - env: { - production: { - plugins: ['transform-remove-console'], - }, - test: { - plugins: ['@babel/plugin-transform-class-static-block'], - }, - }, } } diff --git a/eas.json b/eas.json index 5bf4e25513..996b0512d6 100644 --- a/eas.json +++ b/eas.json @@ -28,7 +28,7 @@ }, "env": { "EXPO_PUBLIC_ENV": "e2e", - "NODE_ENV": "test", + "NODE_ENV": "development", "RN_SRC_EXT": "e2e.ts,e2e.tsx" } }, diff --git a/package.json b/package.json index 14e5d356f3..3c85f00f56 100644 --- a/package.json +++ b/package.json @@ -67,9 +67,9 @@ "typecheck:android": "tsc --project ./tsconfig.check.android.json", "typecheck:web": "tsc --project ./tsconfig.check.web.json", "e2e:mock-server": "cd dev-env && pnpm start", - "e2e:build": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:ios", - "e2e:build-android": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:android", - "e2e:start": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo start -c", + "e2e:build": "EXPO_PUBLIC_ENV=e2e NODE_ENV=development RN_SRC_EXT=e2e.ts,e2e.tsx expo run:ios", + "e2e:build-android": "EXPO_PUBLIC_ENV=e2e NODE_ENV=development RN_SRC_EXT=e2e.ts,e2e.tsx expo run:android", + "e2e:start": "EXPO_PUBLIC_ENV=e2e NODE_ENV=development RN_SRC_EXT=e2e.ts,e2e.tsx expo start -c", "e2e:run": "maestro test", "perf:test": "NODE_ENV=test maestro test", "perf:test:run": "NODE_ENV=test maestro test __e2e__/perf-test.yml", From 63b284030aa144f4ebd5339e7ca1c08099031114 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 24 Jul 2026 13:48:03 +0300 Subject: [PATCH 11/53] Fix Maestro E2E regressions on iOS and Android (#11258) --- src/components/Dialog/index.tsx | 20 ++----------- src/components/Dialog/index.web.tsx | 3 ++ .../Onboarding/StepProfile/AvatarCircle.tsx | 7 ++--- .../StepProfile/AvatarCreatorItems.tsx | 10 +++---- src/screens/Onboarding/StepProfile/index.tsx | 30 +++++++++---------- src/view/com/composer/Composer.tsx | 5 ++++ 6 files changed, 31 insertions(+), 44 deletions(-) diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index c9f23175de..74b0c8a81c 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -197,24 +197,8 @@ export function Outer({ /** * @deprecated use `Dialog.ScrollableInner` instead */ -export function Inner({children, style, header}: DialogInnerProps) { - const insets = useSafeAreaInsets() - return ( - <> - {header} - - {children} - - - ) +export function Inner(props: DialogInnerProps) { + return } export const ScrollableInner = forwardRef( diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx index 3bb9e478a7..5363fbf1bd 100644 --- a/src/components/Dialog/index.web.tsx +++ b/src/components/Dialog/index.web.tsx @@ -165,6 +165,9 @@ export function Outer({ ) } +/** + * @deprecated use `Dialog.ScrollableInner` instead + */ export function Inner({ children, style, diff --git a/src/screens/Onboarding/StepProfile/AvatarCircle.tsx b/src/screens/Onboarding/StepProfile/AvatarCircle.tsx index 8cb3da9f1d..64fb26ee7d 100644 --- a/src/screens/Onboarding/StepProfile/AvatarCircle.tsx +++ b/src/screens/Onboarding/StepProfile/AvatarCircle.tsx @@ -1,8 +1,7 @@ import {useMemo} from 'react' import {View} from 'react-native' import {Image as ExpoImage} from 'expo-image' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' +import {useLingui} from '@lingui/react/macro' import {AvatarCreatorCircle} from '#/screens/Onboarding/StepProfile/AvatarCreatorCircle' import {useAvatar} from '#/screens/Onboarding/StepProfile/index' @@ -18,7 +17,7 @@ export function AvatarCircle({ openLibrary: () => unknown openCreator: () => unknown }) { - const {_} = useLingui() + const {t: l} = useLingui() const t = useTheme() const {avatar} = useAvatar() @@ -63,7 +62,7 @@ export function AvatarCircle({ )} - + - ) diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index ce6b17b8cb..8a2f3b7162 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -713,6 +713,11 @@ export const ComposePost = ({ const [publishOnUpload, setPublishOnUpload] = useState(false) const onClose = useCallback(() => { + // HACKFIX: Android keyboard doesn't consistently dismiss IME + // TODO: investigate the root cause and fix properly -sfn + if (IS_ANDROID) { + Keyboard.dismiss() + } closeComposer() clearThumbnailCache(queryClient) revokeAllMediaUrls() From 07a810945df4a1953e4a41ff3e6b675b3f118957 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 03:48:39 -0700 Subject: [PATCH 12/53] Bump github.com/hashicorp/go-retryablehttp from 0.7.5 to 0.7.7 in /bskyweb (#11257) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- bskyweb/go.mod | 2 +- bskyweb/go.sum | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/bskyweb/go.mod b/bskyweb/go.mod index 5c475202ca..618ee2108a 100644 --- a/bskyweb/go.mod +++ b/bskyweb/go.mod @@ -29,7 +29,7 @@ require ( github.com/gogo/protobuf v1.3.2 // indirect github.com/google/uuid v1.4.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect - github.com/hashicorp/go-retryablehttp v0.7.5 // indirect + github.com/hashicorp/go-retryablehttp v0.7.7 // indirect github.com/hashicorp/golang-lru v1.0.2 // indirect github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect github.com/ipfs/bbloom v0.0.4 // indirect diff --git a/bskyweb/go.sum b/bskyweb/go.sum index 711cea77bb..9fd27eafef 100644 --- a/bskyweb/go.sum +++ b/bskyweb/go.sum @@ -17,6 +17,8 @@ github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etly github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= github.com/earthboundkid/versioninfo/v2 v2.24.1 h1:SJTMHaoUx3GzjjnUO1QzP3ZXK6Ee/nbWyCm58eY3oUg= github.com/earthboundkid/versioninfo/v2 v2.24.1/go.mod h1:VcWEooDEuyUJnMfbdTh0uFN4cfEIg+kHMuWB2CDCLjw= +github.com/fatih/color v1.16.0 h1:zmkK9Ngbjj+K0yRhTVONQh1p/HknKYSlNT+vZCzyokM= +github.com/fatih/color v1.16.0/go.mod h1:fL2Sau1YI5c0pdGEVCbKQbLXB6edEj1ZgiY4NijnWvE= github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/flosch/pongo2/v6 v6.0.0 h1:lsGru8IAzHgIAw6H2m4PCyleO58I40ow6apih0WprMU= @@ -40,10 +42,10 @@ github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGa github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= -github.com/hashicorp/go-hclog v0.9.2 h1:CG6TE5H9/JXsFWJCfoIVpKFIkFe6ysEuHirp4DxCsHI= -github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= -github.com/hashicorp/go-retryablehttp v0.7.5 h1:bJj+Pj19UZMIweq/iie+1u5YCdGrnxCT9yvm0e+Nd5M= -github.com/hashicorp/go-retryablehttp v0.7.5/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= +github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= +github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= +github.com/hashicorp/go-retryablehttp v0.7.7 h1:C8hUCYzor8PIfXHa4UrZkU4VvK8o9ISHxT2Q8+VepXU= +github.com/hashicorp/go-retryablehttp v0.7.7/go.mod h1:pkQpWZeYWskR+D1tR2O5OcBFOxfA7DoAO6xtkuQnHTk= github.com/hashicorp/golang-lru v1.0.2 h1:dV3g9Z/unq5DpblPpw+Oqcv4dU/1omnb4Ok8iPY6p1c= github.com/hashicorp/golang-lru v1.0.2/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= github.com/hashicorp/golang-lru/v2 v2.0.7 h1:a+bsQ5rvGLjzHuww6tVxozPZFVghXaHOwFs4luLUK2k= @@ -186,7 +188,6 @@ github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2 github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= From 7bd27e418014a7b172dd9d4f6df5314d055b151a Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 24 Jul 2026 05:48:55 -0500 Subject: [PATCH 13/53] Add intl note on OTA flow (#11241) --- docs/deploy-ota.md | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/docs/deploy-ota.md b/docs/deploy-ota.md index fce864c761..83323859e5 100644 --- a/docs/deploy-ota.md +++ b/docs/deploy-ota.md @@ -52,7 +52,18 @@ have already been deployed for this release, incremement the branch name e.g. Cherry pick in the commits that need to be deployed on top of the most recent release or OTA. -### 5. Manually set build numbers +### 5. Pull translations + +Since translators may have added new strings, and positions within the code may +have shifted, it's typically best to pull the latest translations. + +Run this and commit the result as the last commit on the OTA branch. + +```sh +pnpm intl:release +``` + +### 6. Manually set build numbers Log in to the EAS CLI with `eas login` and manually set the build numbers to the values you found in **Step 1**. @@ -75,7 +86,7 @@ values you found in **Step 1**. 👉 **Save the previous values,** in this case `1011` and `641`, so you can reset them after the OTA completes. -### 6. Run the GitHub actions +### 7. Run the GitHub actions You'll need to run two separate actions: one to deploy the iOS/Android OTA itself, and one to build the web Docker container. @@ -102,13 +113,13 @@ and run the action. | ----- | --- | | Select your OTA branch `1.x.0-ota-x` and click "Run workflow" | ![workflow](./img/web_action.png) | -### 7. Deploy web +### 8. Deploy web Once the web Docker container build finishes, go to your `1.x.0-ota-x` branch, copy the most recent commit hash. Post this hash in `#ops-deploys` and request someone with web deploy access deploy the built container. -### 8. Confirm successful deployment +### 9. Confirm successful deployment In about five minutes, the new deployment should be deployed and devices will begin downloading and installing in the background. @@ -119,7 +130,7 @@ build from your device and re-install from the App Store. Then, you'll need to: - Quit and reopen the app - Check the `Settings > About` page and confirm the hash matches the most recent hash on your OTA branch -### 9. Reset build numbers +### 10. Reset build numbers Grab the build numbers you saved in **Step 5** and reverse the EAS CLI commands to reset the build numbers. From fbb0ee38c22cf9e3611e4beb0e82550abed561c5 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 24 Jul 2026 15:44:45 +0300 Subject: [PATCH 14/53] Add hitslop to switch account ... menu (#11262) --- .gitignore | 3 +++ src/screens/Settings/Settings.tsx | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4ce9e397dc..8a38445859 100644 --- a/.gitignore +++ b/.gitignore @@ -134,3 +134,6 @@ bskyweb/static/media/*.svg # superpowers plugin plans/specs — local-only workspace docs/superpowers/ .claude/worktrees + +# pnpm +.pnpm-store/ diff --git a/src/screens/Settings/Settings.tsx b/src/screens/Settings/Settings.tsx index 405f1136e6..a1234a27ec 100644 --- a/src/screens/Settings/Settings.tsx +++ b/src/screens/Settings/Settings.tsx @@ -6,7 +6,7 @@ import {Trans, useLingui} from '@lingui/react/macro' import {useNavigation} from '@react-navigation/native' import {type NativeStackScreenProps} from '@react-navigation/native-stack' -import {HELP_DESK_URL} from '#/lib/constants' +import {HELP_DESK_URL, HITSLOP_10} from '#/lib/constants' import {useAccountSwitcher} from '#/lib/hooks/useAccountSwitcher' import {useApplyPullRequestOTAUpdate} from '#/lib/hooks/useOTAUpdates' import { @@ -647,6 +647,7 @@ function AccountRow({ {({props, state}) => ( Date: Fri, 24 Jul 2026 08:46:59 -0400 Subject: [PATCH 15/53] Fix native signup captcha interactions (#11263) --- src/screens/Signup/index.tsx | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index c7f9d11327..4404384fb5 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -1,4 +1,4 @@ -import {useEffect, useReducer, useState} from 'react' +import {type PropsWithChildren, useEffect, useReducer, useState} from 'react' import {AppState, type AppStateStatus, View} from 'react-native' import ReactNativeDeviceAttest from 'react-native-device-attest' import {KeyboardAvoidingView} from 'react-native-keyboard-controller' @@ -132,10 +132,8 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { return ( - + void}) { - + ) } + +function SignupKeyboardAvoidingView({ + children, + enabled, +}: PropsWithChildren<{enabled: boolean}>) { + if (!enabled) { + return {children} + } + + return ( + + {children} + + ) +} From 19b0d8931300c32bf7da0d43be8f2c83d62b10ca Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 24 Jul 2026 17:40:46 +0300 Subject: [PATCH 16/53] Update `react-native-uitextview` (#11264) --- package.json | 2 +- pnpm-lock.yaml | 28 ++++++++++----------- src/alf/typography.tsx | 2 +- src/components/Typography.tsx | 2 +- src/lib/web-shims/codegenNativeComponent.js | 17 ------------- src/view/com/util/text/Text.tsx | 2 +- webpack.config.js | 10 -------- 7 files changed, 18 insertions(+), 45 deletions(-) delete mode 100644 src/lib/web-shims/codegenNativeComponent.js diff --git a/package.json b/package.json index 3c85f00f56..89e5d77537 100644 --- a/package.json +++ b/package.json @@ -108,6 +108,7 @@ "@bsky.app/expo-scroll-edge-effect": "^0.1.9", "@bsky.app/expo-translate-text": "^0.2.9", "@bsky.app/peek-menu": "^0.3.1", + "@bsky.app/react-native-uitextview": "^2.4.1", "@bsky.app/sift": "^0.3.9", "@bsky.app/tapper": "^0.6.1", "@bsky.app/video": "0.3.6", @@ -237,7 +238,6 @@ "react-native-screens": "4.24.0", "react-native-scroll-forwarder": "link:./modules/react-native-scroll-forwarder", "react-native-svg": "15.12.1", - "react-native-uitextview": "^2.2.0", "react-native-uuid": "^2.0.3", "react-native-view-shot": "^4.0.3", "react-native-web": "^0.21.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0319db85dd..5edf239650 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -277,6 +277,9 @@ importers: '@bsky.app/peek-menu': specifier: ^0.3.1 version: 0.3.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@bsky.app/react-native-uitextview': + specifier: ^2.4.1 + version: 2.4.1(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/sift': specifier: ^0.3.9 version: 0.3.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) @@ -664,9 +667,6 @@ importers: react-native-svg: specifier: 15.12.1 version: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-uitextview: - specifier: ^2.2.0 - version: 2.2.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-uuid: specifier: ^2.0.3 version: 2.0.4 @@ -1660,6 +1660,12 @@ packages: react: '*' react-native: '*' + '@bsky.app/react-native-uitextview@2.4.1': + resolution: {integrity: sha512-NM6h9m3YXPnL7Sc7dZAA/UQLbHgBR0sMf5nBSkq0DgS1+t1TpZ8/WahsdDa8//OEkP1P2RBNPoWFLtNE555wCg==} + peerDependencies: + react: '*' + react-native: '>=0.81.5' + '@bsky.app/sift@0.3.9': resolution: {integrity: sha512-EmwK6EGtxl6Mz4Z96J2EFi5aeiKeGiqueVCQHVms9C6ms6wMS0/HcqC/48RgFN+nSsM7Wr8sFCg1EcNnWyOQMQ==} peerDependencies: @@ -8031,12 +8037,6 @@ packages: react: '*' react-native: '*' - react-native-uitextview@2.2.0: - resolution: {integrity: sha512-Vbv3cTAuyfkYrfsR2YKFsOd9OYgfys+IX5yvvYY7Wd6TrOd6FSGrX93xtQHjeLXV1ds6fDJcFJsuLi3S4Ypr8A==} - peerDependencies: - react: '*' - react-native: '*' - react-native-uuid@2.0.4: resolution: {integrity: sha512-LSJNeh559qC17fgVPBsWuTSW/OygFp2dwTcf94IQBLYft5FzIQS9pCsuT36OPvyvDOMb6yiGr6TafaJDnz9PPQ==} engines: {node: '>=18.0.0', npm: '>=9.0.0'} @@ -10381,6 +10381,11 @@ snapshots: react: 19.1.0 react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + '@bsky.app/react-native-uitextview@2.4.1(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + dependencies: + react: 19.1.0 + react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + '@bsky.app/sift@0.3.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) @@ -17769,11 +17774,6 @@ snapshots: react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) warn-once: 0.1.1 - react-native-uitextview@2.2.0(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): - dependencies: - react: 19.1.0 - react-native: 0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-uuid@2.0.4: {} react-native-view-shot@4.0.3(patch_hash=a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268)(react-native@0.81.5(patch_hash=0a4b515f22d157816048e3181dd18fb83b1679a90fca50f715c55483aabdced4)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): diff --git a/src/alf/typography.tsx b/src/alf/typography.tsx index 9b750f1537..d1e9f96e99 100644 --- a/src/alf/typography.tsx +++ b/src/alf/typography.tsx @@ -4,7 +4,7 @@ import { type TextProps as RNTextProps, type TextStyle, } from 'react-native' -import {UITextView} from 'react-native-uitextview' +import {UITextView} from '@bsky.app/react-native-uitextview' import createEmojiRegex from 'emoji-regex' import {type Alf, applyFonts, atoms, flatten} from '#/alf' diff --git a/src/components/Typography.tsx b/src/components/Typography.tsx index b105ffbb8c..aab4751020 100644 --- a/src/components/Typography.tsx +++ b/src/components/Typography.tsx @@ -1,4 +1,4 @@ -import {UITextView} from 'react-native-uitextview' +import {UITextView} from '@bsky.app/react-native-uitextview' import {logger} from '#/logger' import {atoms as a, type TextStyleProp, useAlf, useTheme, web} from '#/alf' diff --git a/src/lib/web-shims/codegenNativeComponent.js b/src/lib/web-shims/codegenNativeComponent.js deleted file mode 100644 index 4c50f5cd87..0000000000 --- a/src/lib/web-shims/codegenNativeComponent.js +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Web stub for `react-native/Libraries/Utilities/codegenNativeComponent`. - * - * Deep `react-native/*` imports bypass the `react-native$ -> react-native-web` - * alias and drag RN core into the web bundle, where its platform-extension - * modules (e.g. Libraries/Utilities/Platform.js) resolve to themselves and - * throw a TDZ error at startup. Packages that import codegen specs - * unconditionally (react-native-uitextview) guard the native component behind - * a `Platform.OS === 'ios'` check, so nothing ever renders this on web. - */ -module.exports = function codegenNativeComponent(componentName) { - return function UnimplementedNativeComponent() { - throw new Error( - `Native component "${componentName}" was rendered on web. It has no web implementation.`, - ) - } -} diff --git a/src/view/com/util/text/Text.tsx b/src/view/com/util/text/Text.tsx index 88682d9172..b703efa405 100644 --- a/src/view/com/util/text/Text.tsx +++ b/src/view/com/util/text/Text.tsx @@ -1,6 +1,6 @@ import {useMemo} from 'react' import {StyleSheet, type TextProps} from 'react-native' -import {UITextView} from 'react-native-uitextview' +import {UITextView} from '@bsky.app/react-native-uitextview' import {lh, s} from '#/lib/styles' import {type TypographyVariant, useTheme} from '#/lib/ThemeContext' diff --git a/webpack.config.js b/webpack.config.js index 69a7adaab1..889a2cb83f 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -62,16 +62,6 @@ module.exports = async function (env, argv) { } config = withAlias(config, { 'react-native$': 'react-native-web', - /* - * Codegen specs import this via a deep `react-native/*` path, which skips - * the exact-match alias above and pulls RN core into the web bundle. RN - * core's platform-extension modules have no `.web` variant, so they - * resolve to themselves and blow up with a TDZ error on startup. - */ - 'react-native/Libraries/Utilities/codegenNativeComponent$': path.join( - __dirname, - 'src/lib/web-shims/codegenNativeComponent.js', - ), 'react-native-webview': 'react-native-web-webview', 'react-native-gesture-handler': false, // RNGH should not be used on web, so let's cause a build error if it sneaks in '@sentry-internal/replay': false, // not used, ~300kb of dead weight From 74a89832a339629e1dd1ebfda7e47c5d3c9a74dc Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 24 Jul 2026 19:43:38 +0300 Subject: [PATCH 17/53] v1.129.0 release prep (#11265) --- crowdin.yml | 4 +- .../interstitials/FeedTrendingTopics.tsx | 12 +- src/locale/locales/an/messages.po | 1680 +- src/locale/locales/ar/messages.po | 1702 +- src/locale/locales/ast/messages.po | 1680 +- src/locale/locales/az/messages.po | 1704 +- src/locale/locales/bn/messages.po | 1704 +- src/locale/locales/br/messages.po | 1704 +- src/locale/locales/ca/messages.po | 1806 +- src/locale/locales/cs/messages.po | 1710 +- src/locale/locales/cy/messages.po | 1884 +- src/locale/locales/da/messages.po | 1680 +- src/locale/locales/de/messages.po | 1728 +- src/locale/locales/el/messages.po | 1680 +- src/locale/locales/en-CA/messages.po | 15041 ++++++++++++++++ src/locale/locales/en-GB/messages.po | 1678 +- src/locale/locales/en/messages.po | 240 +- src/locale/locales/eo/messages.po | 1698 +- src/locale/locales/es/messages.po | 1680 +- src/locale/locales/eu/messages.po | 1712 +- src/locale/locales/fi/messages.po | 1680 +- src/locale/locales/fr-CA/messages.po | 15041 ++++++++++++++++ src/locale/locales/fr/messages.po | 1676 +- src/locale/locales/fy/messages.po | 1680 +- src/locale/locales/ga/messages.po | 1680 +- src/locale/locales/gd/messages.po | 1680 +- src/locale/locales/gl/messages.po | 1680 +- src/locale/locales/haw/messages.po | 1704 +- src/locale/locales/hi/messages.po | 1680 +- src/locale/locales/hu/messages.po | 1758 +- src/locale/locales/ia/messages.po | 1678 +- src/locale/locales/id/messages.po | 1680 +- src/locale/locales/it/messages.po | 1688 +- src/locale/locales/ja/messages.po | 1678 +- src/locale/locales/kab/messages.po | 1704 +- src/locale/locales/km/messages.po | 1680 +- src/locale/locales/ko/messages.po | 1682 +- src/locale/locales/kw/messages.po | 15041 ++++++++++++++++ src/locale/locales/lt/messages.po | 1704 +- src/locale/locales/lv/messages.po | 1704 +- src/locale/locales/ne/messages.po | 1680 +- src/locale/locales/nl/messages.po | 1680 +- src/locale/locales/pl/messages.po | 1680 +- src/locale/locales/pt-BR/messages.po | 1752 +- src/locale/locales/pt-PT/messages.po | 1714 +- src/locale/locales/ro/messages.po | 1678 +- src/locale/locales/ru/messages.po | 1680 +- src/locale/locales/sv/messages.po | 1694 +- src/locale/locales/th/messages.po | 1680 +- src/locale/locales/tr/messages.po | 1682 +- src/locale/locales/uk/messages.po | 1680 +- src/locale/locales/vi/messages.po | 1680 +- src/locale/locales/zh-CN/messages.po | 1962 +- src/locale/locales/zh-HK/messages.po | 1838 +- src/locale/locales/zh-TW/messages.po | 1806 +- .../Search/modules/ExploreTrendingTopics.tsx | 12 +- 56 files changed, 87666 insertions(+), 41457 deletions(-) create mode 100644 src/locale/locales/en-CA/messages.po create mode 100644 src/locale/locales/fr-CA/messages.po create mode 100644 src/locale/locales/kw/messages.po diff --git a/crowdin.yml b/crowdin.yml index e1f07515d1..beea10dc8c 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -11,7 +11,9 @@ "two_letters_code": { "pt": "pt-PT", "pt-BR": "pt-BR", + "en-CA": "en-CA", "en-GB": "en-GB", + "fr-CA": "fr-CA", "zh-CN": "zh-CN", "zh-TW": "zh-TW", "zh-HK": "zh-HK" @@ -19,4 +21,4 @@ } } ] -} \ No newline at end of file +} diff --git a/src/components/interstitials/FeedTrendingTopics.tsx b/src/components/interstitials/FeedTrendingTopics.tsx index 8f3baab6e5..0816dad8c0 100644 --- a/src/components/interstitials/FeedTrendingTopics.tsx +++ b/src/components/interstitials/FeedTrendingTopics.tsx @@ -1,8 +1,7 @@ import {useMemo} from 'react' import {Pressable, View} from 'react-native' import {type AppBskyUnspeccedDefs, moderateProfile} from '@atproto/api' -import {plural} from '@lingui/core/macro' -import {Trans, useLingui} from '@lingui/react/macro' +import {Plural, Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useTrendingSettings} from '#/state/preferences/trending' @@ -149,6 +148,7 @@ function TrendRow({ const {t: l, i18n} = useLingui() const actors = useModerateTrendingActors(trend.actors) + const formattedPostCount = formatCount(i18n, trend.postCount) return ( - {formatCount(i18n, trend.postCount)}{' '} - {plural(trend.postCount, {one: 'post', other: 'posts'})} + {formattedPostCount}{' '} + diff --git a/src/locale/locales/an/messages.po b/src/locale/locales/an/messages.po index 088cd770ee..6756cd7004 100644 --- a/src/locale/locales/an/messages.po +++ b/src/locale/locales/an/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: an\n" +"Language: an_ES\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Aragonese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(tien conteniu incrustau)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# me-fa-goyo} other {# me-fa-goyos}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} seguindo" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "No se puede ninviar mensaches a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# elemento no leyiu} other {# elementos msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {citas}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicación} other {republicacions}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 días" msgid "7 days" msgstr "7 días" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Accesibilidat" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Achustes d'accesibilidat" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Cuenta silenciada per lista" msgid "Account options" msgstr "Opcions de cuenta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Cuenta sacada de l'acceso rápido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Anyadir texto alternativo (opcional)" msgid "Add another account" msgstr "Anyadir una atra cuenta" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Anyadir una atra publicación" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Anyade esta canal a las tuyas canals" msgid "Add to lists" msgstr "Anyadir a listas" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Adulto" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permitir acceso a mensaches directos" msgid "Already have a code?" msgstr "Ya tiens un codigo?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "Un codigo de verificación s'ha ninviau a {0}. Escribe aquí ixe codigo. msgid "An error has occurred" msgstr "I ha habiu una error" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "I ha habiu una error" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "I ha habiu una error en chenerar lo suyo paquet d'inicio. Quiers intentar-lo de nuevo?" @@ -1640,11 +1600,11 @@ msgstr "I ha habiu una error en chenerar lo suyo paquet d'inicio. Quiers intenta msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "I ha habiu una error en cargar lo video. Per favor torne a intentar-lo." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "I ha habiu una error mientres cargaba lo video. Per favor torne a intentar-lo." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Un problema no incluyiu en estas opcions" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "I ha habiu un problema mientres intentaba ubrir lo chat." +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Las claus d'aplicación han de tener a lo menos 4 carácters" msgid "App passwords" msgstr "Claus d'aplicación" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Claus de l'app" @@ -1891,8 +1849,8 @@ msgstr "Apelar esta decisión" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archivau dende {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publicación archivada" @@ -1980,7 +1938,7 @@ msgstr "Yes seguro que deseyas sacar esto d'as tuyas canals?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Seguro que quiers eliminar esta publicación?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Autorreproducir videos y GIFs" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Antes de crear un paquet d'inicio has de verificar lo tuyo correu." @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Aniversario" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blocau" msgid "Blocked accounts" msgstr "Cuentas blocadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuentas blocadas" @@ -2282,7 +2250,7 @@ msgstr "Las cuentas blocadas no podrán responder en os tuyos filos, mencionar-t 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 "Las cuentas blocadas no podrán responder en os tuyos filos, mencionar-te ni interactuar con tu de garra traza. No veyerás lo suyo conteniu y no podrán veyer lo tuyo." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Si blocas un etiquetador encara podrán seguir aplicando etiquetas a la tuya cuenta." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no puede confirmar l'autenticidat d'a data declarada." @@ -2330,7 +2299,7 @@ msgstr "Bluesky ye un ret ubierto an que puez triar lo furnidor d'aloch. Si yes msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky ye un ret ubierto an que puez trigar lo tuyo propio proveidor. Si yes nuevo aquí, te recomendamos que te quedes con a opción per defecto Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky ye millor con amigos!" @@ -2358,7 +2327,7 @@ msgstr "Condicions d'o servicio de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky triará un conchunto de cuentas recomendadas de personas en o suyo ret." @@ -2425,24 +2394,25 @@ msgstr "Explora mas sucherencias" msgid "Browse other feeds" msgstr "Explorar atras canals" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Explora las publicacions sobre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Explora les publicacions etiquetades amb {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Explora lo paquet d'inicio {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Explorar las publicacions d'o tema {displayName}" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Per {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Per <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "En crear una cuenta, aceptas los <0>Termins de Servicio y la <1>Poli msgid "By creating an account you agree to the <0>Terms of Service." msgstr "En crear una cuenta, acceptas los <0>Termins de Servicio." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camera" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Cancelar la reactivación y zarrar la sesión" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelar busqueda" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat silenciau" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Achustes de chat" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat no silenciau" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "Triar un metodo de verificación de dominio" msgid "Choose Feeds" msgstr "Triar canals" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Triar pa yo" @@ -2854,7 +2825,7 @@ msgstr "Tríar chent" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Tría esta color como lo tuyo avatar" @@ -2879,7 +2850,7 @@ msgstr "Tría la tuya propia linia temporal! Las canals creadas per la comunidat msgid "Choose your password" msgstr "Tría la tuya clau" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Lo tuyo identificador" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Fe clic pa reintentar mensache fallido" @@ -3003,7 +2974,7 @@ msgstr "Fe clic pa reintentar mensache fallido" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Fe clic pa reintentar mensache fallido" msgid "Close" msgstr "Zarrar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Zarrar dialogo activo" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Zarrar este dialogo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Zarra l'alerta d'actualización de clau" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modo de color" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Historietas" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrices d'a comunidat" @@ -3141,7 +3112,7 @@ msgstr "Directrices d'a comunidat" msgid "Complete onboarding and start using your account" msgstr "Completa la incorporación y prencipia a usar la tuya cuenta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa lo desafío" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Redactar una nueva publicación" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "Redactar la respuesta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimindo video..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contactar con soporte" @@ -3253,7 +3224,7 @@ msgstr "Conteniu y multimedia" msgid "Content and media" msgstr "Conteniu y multimedia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Conteniu y multimedia" @@ -3265,10 +3236,6 @@ msgstr "Conteniu Blocau" msgid "Content filters" msgstr "Filtros de conteniu" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Conteniu de tot lo ret que te podría fer goyo." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Advertencia de conteniu" msgid "Content warnings" msgstr "Advertencias de conteniu" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fondo d'o menú contextual, faga clic pa zarrar lo menú." @@ -3302,7 +3269,7 @@ msgstr "Fondo d'o menú contextual, faga clic pa zarrar lo menú." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Continar filo..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Versión de compilación copiada a lo portafuellas" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copiar clau d'aplicación" msgid "Copy at:// URI" msgstr "Copiar at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiar DID de l'autor" @@ -3449,10 +3416,10 @@ msgstr "Copiar vinclo" msgid "Copy link to list" msgstr "Copia lo vinclo a la lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar lo vinclo a la publicación" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "Copiar texto d'o mensache" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiar at:// URI d'a publicación" @@ -3490,7 +3457,7 @@ msgstr "Copiar valor de rechistro TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica de dreitos d'autor" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "No s'ha puesto salir d'este chat " -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "No s'ha puesto cargar esta canal" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "No s'ha puesto silenciar lo chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crear" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Crear un codigo QR pa pack d'inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crea un paquet d'inicio" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea un paquet d'inicio pa yo" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Crear cuenta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crea una cuenta" @@ -3666,15 +3633,15 @@ msgstr "Crea una cuenta" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crea-ne unatro" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Fosco" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Fosco" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema fosco" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Per Defecto" @@ -3894,7 +3861,7 @@ msgstr "Borrar la mía cuenta" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Borrar una publicación" @@ -3988,7 +3955,7 @@ msgstr "Achustar quí puede interactuar con esta publicación" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Tenue" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Desactivau" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar cambios?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Descartar borrador?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Descartar la publicación?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Privar que las aplicacions amuestren la mía cuenta a los usuarios desconnectaus" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Privar que las aplicacions amuestren la mía cuenta a los usuarios desco msgid "Discover new custom feeds" msgstr "Descubre nuevas canals personalizadas" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descubrir nuevas canals" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Descartar" @@ -4103,19 +4070,19 @@ msgstr "Descartar" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Descartar error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Descartar la guía d'introducción" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Amostrar insignias de texto alternativo mas grans" msgid "Display name" msgstr "Amostrar lo nombre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Listo" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Dople toque pa zarrar lo dialogo" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Toca dos vegadas pa indicar que te fa goyo" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Editar la imachen" msgid "Edit interaction settings" msgstr "Editar achustes d'interacción" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar las mías noticias" @@ -4406,6 +4374,11 @@ msgstr "Editar las mías noticias" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Personas" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Editar quí puede responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edita lo tuyo paquet d'inicio" @@ -4500,8 +4473,8 @@ msgstr "Incrustar codigo HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incrustar publicación" @@ -4509,7 +4482,7 @@ msgstr "Incrustar publicación" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta esta publicación en o tuyo puesto web. Simplament copia lo siguient fragmento y apega-lo en o codigo HTML d'o tuyo puesto web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reproductor de video incrustau" @@ -4533,7 +4506,7 @@ msgstr "Activar conteniu adulto" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Activar fichers multimedia externos" msgid "Enable media players for" msgstr "Reproducir multimedia de" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "Activar los videos populares en Discover d'a tuya canal" msgid "Enabled" msgstr "Activau" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin de noticias" @@ -4608,7 +4582,7 @@ msgstr "Escribe una parola u etiqueta" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Dentrar en pantalla completa" @@ -4650,11 +4624,11 @@ msgstr "Escribe lo tuyo identificador y clau" msgid "Enters full screen" msgstr "Cambia a pantalla completa" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4658,7 @@ msgstr "I ha habiu una error en alzar lo fichero" msgid "Error receiving captcha response." msgstr "Error en recibir la respuesta d'o captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "Toz pueden responder" msgid "Everybody can reply to this post." msgstr "Toz pueden responder a esta publicación." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Toz" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Toz" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "Excluyir a los usuarios que sigues" msgid "Excludes users you follow" msgstr "Excluye a los usuarios que sigues" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Salir de pantalla completa" @@ -4755,11 +4729,11 @@ msgstr "Expandir lista d'usuarios" msgid "Expand or collapse the full post you are replying to" msgstr "Expandir u comprimir la publicación completa a la cual yes respondendo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Ixampla u reduce lo texto d'a publicación" @@ -4802,15 +4776,15 @@ msgstr "Fichers multimedia explicitos u potencialment perturbadors." msgid "Explicit sexual images." msgstr "Imáchens sexuals explicitas." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "Fichers multimedia externos" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Ye posible que fichers multimedia externos permitan que atros puestos recopilen datos sobre tu y lo tuyo dispositivo. No se ninvia u solicita garra tipo d'información dica que pretes lo botón de \"reproducir\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Fichers multimedia externos" @@ -4886,7 +4860,7 @@ msgstr "No s'ha puesto cambiar l'identificador. Torna-lo a intentar." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Error en cargar las preferencias de canals" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Error en cargar las canals sucheridas" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Error en cargar las sucherencias de seguimiento" @@ -5027,12 +5002,12 @@ msgstr "Error en cargar las sucherencias de seguimiento" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Canal" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menú d'a canal" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Canals actualizadas!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Canals que creyemos que te farán goyo." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "Fichero alzau exitosament!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Buscar cuentas pa seguir" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Seguir {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Seguir {handle}" @@ -5453,11 +5424,11 @@ msgstr "Seguir {handle}" msgid "Follow 10 accounts" msgstr "Sigue 10 cuentas" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Sigue 7 cuentas" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que conoixes" @@ -5544,7 +5515,7 @@ msgstr "Seguidors que conoixes" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Seguindo {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Seguindo {handle}" @@ -5578,21 +5549,21 @@ msgstr "Seguindo {handle}" msgid "Following feed preferences" msgstr "Preferencias d'a canal de seguimiento" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencias d'a canal de Seguimiento" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Te sigue" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fuent" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Grandaria de fuent" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Per razons de seguranza, no podrás tornar-lo a veyer. Si pierdes esta clau d'aplicación, habrás de chenerar-ne una de nueva." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pa una millor experiencia, recomendamos que uses la fuent d'o tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "Pa cutio" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Has olbidau la tuya clau?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Chenera un paquet d'inicio" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Obtiene aduya" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Da-le una cara a lo tuyo perfil" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Etiqueta" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Tiens problemas?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Aduya" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Aduya a que las personas sepan que no yes un bot puyando una foto u creando un avatar." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "Amagau" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Amagau per la tuya configuración de moderación." @@ -6148,9 +6122,9 @@ msgstr "Amagau per la tuya configuración de moderación." msgid "Hidden list" msgstr "Lista amagada" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Lista amagada" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Amagar" @@ -6198,7 +6172,7 @@ msgstr "Amagar respuesta pa toz" msgid "Hide reply for me" msgstr "Amagar respuesta pa yo" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "Amagar esta respuesta?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Amaga las tendencias" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Quiers amagar las tendencias?" @@ -6240,7 +6214,7 @@ msgstr "Amagar lista d'usuarios" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Amaga lo conteniu" @@ -6293,8 +6267,8 @@ msgstr "Pareixe que somos tenendo problemas pa cargar estes datos. Mira debaixo msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Aguarte! Somos dando acceso a videos gradualment, y encara yes en a lista d'espera. Torna a consultar luego!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si deseyas cambiar la tuya clau, te ninviaremos un codigo pa verificar que esta ye la tuya cuenta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Nomás yes tu per agora! Anyade mas personas a lo tuyo paquet d'inicio buscando alto." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID de fayena: {0}" @@ -6816,8 +6788,8 @@ msgstr "Une-te a la conversa" msgid "Journalism" msgstr "Periodismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etiquetado per {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etiquetau per l'autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquetas" @@ -6852,7 +6824,7 @@ msgstr "S'han anyadiu las etiquetas" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Las etiquetas son anotacions sobre usuarios y conteniu. Pueden usar-se pa amagar, advertir y categorizar lo ret." @@ -6864,7 +6836,7 @@ msgstr "Etiquetas en a tuya cuenta" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Achustes d'Idiomas" @@ -6874,7 +6846,7 @@ msgstr "Achustes d'Idiomas" msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Mas gran" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Zaguero" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Aprender-ne mas" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Obtiene mas información sobre cómo autoalochar la tuya PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Mas información sobre la moderación que s'ha aplicau en esta publicación" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Aprender mas sobre esta advertencia" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Aprender-ne mas." @@ -6993,8 +6965,8 @@ msgstr "Deixar" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Salir de Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "quedan." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Deixa-me triar" @@ -7057,7 +7029,7 @@ msgstr "Imos!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Liuchero" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Liuchero" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Me fa goyo" @@ -7076,7 +7048,7 @@ msgstr "Me fa goyo" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Da-le «me fa goyo» a 10 publicacions" @@ -7085,7 +7057,7 @@ msgstr "Da-le «me fa goyo» a 10 publicacions" msgid "Like 10 posts to train the Discover feed" msgstr "Da-le «me fa goyo» a 10 publicacions pa entrenar la canal de descubrimiento" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Dar «me fa goyo» a esta noticia" @@ -7093,8 +7065,8 @@ msgstr "Dar «me fa goyo» a esta noticia" msgid "Like this labeler" msgstr "Como este etiquetador" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Le ha feito goyo a" @@ -7111,27 +7083,45 @@ msgstr "Le ha feito goyo a" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Le fa goyo a {0, plural, one {# usuario} other {# usuarios}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Le fa goyo a {likeCount, plural, one {# usuario} other {# usuarios}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Me fa goyo" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Me fa goyo en esta publicación" @@ -7144,7 +7134,7 @@ msgstr "Linial" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "La lista ya no ye silenciada" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Cargar-ne mas" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Cargar mas canals sucheridas" @@ -7292,8 +7282,8 @@ msgstr "Cargar mas canals sucheridas" msgid "Load new notifications" msgstr "Cargar notificacions nuevas" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Rechistro" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Fe un pa yo" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marcar como leyiu" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Fichers multipedia que pueden estar perturbadors u no adecuaus pa ciertas audiencias." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "usuarios mencionaus" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mencions" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mensache eliminau" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensaches" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderación" @@ -7636,7 +7630,7 @@ msgstr "Lista de moderación actualizada" msgid "Moderation lists" msgstr "Listas de moderación" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de moderación" @@ -7645,7 +7639,7 @@ msgstr "Listas de moderación" msgid "moderation settings" msgstr "achustes de moderación" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Estaus de moderación" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cuentas silenciadas" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuentas silenciadas" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "No importa, crea un identificador per yo" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nuevo" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nuevo chat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Nueva lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Nueva clau" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nueva publicación" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Respuestas nuevas primer" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Noticias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Imachen nueva" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "No se troboron canals. Mira de buscar bella cosa mas." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Encara sini \"me-fa-goyos\"" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Ya no sigues a {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "No i hai mensaches encara" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "No i hai citas encara" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Sin resultau" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sin resultaus" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "No s'ha trobau resultaus" msgid "No results found for \"{query}\"" msgstr "No s'ha trobau resultaus pa \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "No gracias" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Dengún" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Dengún ha dau \"me fa goyo\" a esto encara. Talment habrías d'estar lo primero!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Dengún ha citau esto encara. Talment habrías d'estar lo primero!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Desnudez no sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "No trobau" @@ -8333,7 +8330,7 @@ msgstr "Nota sobre compartir" 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 ye un ret ubierto y publico. Esta configuración nomás limita la visibilidat d'o tuyo conteniu en l'aplicación y lo puesto web de Bluesky, y ye posible que atras aplicacions no respecten esta configuración. Atras aplicacions y puestos web pueden seguir amostrando lo tuyo conteniu a los usuarios que haigan zarrau sesión." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Achustes de notificación" @@ -8353,11 +8350,12 @@ msgstr "Achustes de notificación" msgid "Notification sounds" msgstr "Sons de notificación" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Qué problema!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "D'acuerdo" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Ye bien" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Reiniciando" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Falta lo texto alternativo d'uno u mas GIFs." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Falta lo texto alternativo en una u cuantas imáchens." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Falta lo texto alternativo d'uno u mas videos." @@ -8471,7 +8471,7 @@ msgstr "Nomás {0} puede responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Nomás s'admiten fichers WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ui!" @@ -8544,7 +8544,7 @@ msgstr "Ui!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Ubrir lo creyador de avatares" @@ -8570,21 +8570,22 @@ msgstr "Ubrir opcions de conversación" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Ubrir lo menú lateral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Ubrir selector d'emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Ubrir la pantalla d'información d'a canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Ubrir menú d'opcions d'a canal" @@ -8627,7 +8628,7 @@ msgstr "Ubrir la pachina de debug d'a moderación" msgid "Open muted words and tags settings" msgstr "Ubrir achustes de parolas y etiquetas silenciadas" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "Ubre detalles adicionals pa una dentrada de depuración" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Ubrir camera d'o dispositivo" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Ubre lo fluxo pa crear una nueva cuenta de Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Ubre lo fluxo pa iniciar sesión en a tuya cuenta existent de Bluesky" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Clau actualizada!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausar" @@ -8925,12 +8926,12 @@ msgstr "Pausar" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personas" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personas seguidas per @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personas seguindo a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Imáchens destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Clavar la canal" @@ -9034,7 +9035,7 @@ msgstr "Clavar la canal" msgid "Pin to home" msgstr "Clavar en inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Clavar en inicio" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Clavau" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} clavau en Inicio" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Las tuyas canals clavadas" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reproducir" @@ -9076,8 +9077,8 @@ msgstr "Reproducir {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproducir video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politica" @@ -9269,7 +9270,7 @@ msgstr "Politica" msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Publicar" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar-lo tot" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Publicación per {0}" @@ -9340,7 +9341,7 @@ msgstr "Publicación amagada per tu" msgid "Post interaction settings" msgstr "Achustes d'interacción d'a publicación" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Configuración d'interacción d'a publicación" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Publicación clavada" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Publicación desclavada" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicacions" @@ -9398,6 +9396,10 @@ msgstr "Las publicacions pueden estar silenciadas seguntes lo suyo texto, las su msgid "Posts hidden" msgstr "Publicacions amagadas" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Privacidat" msgid "Privacy and security" msgstr "Privacidat y seguranza" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidat y seguranza" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Politica de privacidat" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Procesando video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listas publicas y compartibles pa blocar u silenciar a usuarios de vez." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Citas deshabilitadas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citas d'esta publicación" @@ -9647,7 +9650,7 @@ msgstr "Reactivar la tuya cuenta" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Amostrar-ne menos" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Amostrar-ne mas" @@ -9687,11 +9690,11 @@ msgstr "Leyer las Politicas de Privacidat de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leyer los Termins y Condicions de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomendacions" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconnectar" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recargar conversacions" @@ -9766,7 +9765,7 @@ msgstr "Recargar conversacions" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Eliminar" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Borrar la cuenta" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Sacar d'as mías canals" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Borrar de l'acceso rapido?" @@ -9862,7 +9861,7 @@ msgstr "Borrar de l'acceso rapido?" msgid "Remove from saved feeds" msgstr "Sacar d'as canals alzadas" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Eliminar la imachen" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Eliminau d'a lista" msgid "Removed from saved feeds" msgstr "Eliminada d'as mías canals alzadas" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respuestas" @@ -10037,7 +10037,7 @@ msgstr "Las respuestas en esta publicación son deshabilitadas." msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Denunciar conversación" msgid "Report dialog" msgstr "Finestra de denuncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Denunciar canal" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Tornau a publicar per tu" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicacions d'esta publicación" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Reintenta la zaguera acción, que presentó una error" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Tornar ta la pachina d'inicio" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Tornar ta la pachina anterior" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Alzar cambios" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Alzar codigo QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Alzar en as mías canals" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Canals alzadas" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Alzau en as tuyas canals" @@ -10520,8 +10520,8 @@ msgstr "Alzau en as tuyas canals" msgid "Say hello!" msgstr "Di ola!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Ciencia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Desplazar enta alto" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Mirar en as publicacions de @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Buscar canals que quieras sucherir a atros." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Buscar GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Veyer emplegos en Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Control eslisant de busqueda. Fe servir las teclas de flecha mirar entabant y entazaga, y espacio pa reproducir/pausa" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Tría una color" @@ -10764,11 +10769,11 @@ msgstr "Triar cuenta" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Tría un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Tría un emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Triar GIF" msgid "Select GIF \"{0}\"" msgstr "Triar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Triar lo emoji {emojiName} como lo tuyo avatar" @@ -10945,7 +10951,8 @@ msgstr "Ninviar mensache" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Ninviar publicación a..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Ninviar correu de verificación" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Ninviar vía mensache directo" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Estableix lo correu electronico pa restablir la clau" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Achustes" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Compartir de totas trazas" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Finestra pa compartir vinclo" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Compartir codigo QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Comparte esta canal" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Compartir este paquet d'inicio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparte este paquet d'inicio y aduya a las personas a unir-se a la tuya comunidat en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Prebador de Preferencias Compartidas" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Veyer" msgid "Show alt text" msgstr "Veyer texto alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Veyer de totas trazas" @@ -11274,9 +11281,9 @@ msgstr "Amostrar lista de totas trazas" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Veyer mas" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Amostrar advertencia y filtrar d'as canals" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Amuestra información sobre cuán se va crear esta publicación" @@ -11341,15 +11348,15 @@ msgstr "Amuestra información sobre cuán se va crear esta publicación" msgid "Shows other accounts you can switch to" msgstr "Amuestra atras cuentas a las cuals puez cambiar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Amuestra lo conteniu" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Amuestra lo conteniu" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Salir?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Se requiere iniciar sesión" @@ -11469,7 +11476,7 @@ msgstr "Blincar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mas chicot" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "I ha habiu una error, per favor intenta de nuevo" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "I ha habiu una error. Intenta-lo atra vegada." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Bella cosa va mal? Fe-nos-lo saber." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Esportes" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Iniciar un nuevo chat" @@ -11682,17 +11689,17 @@ msgstr "Empecipia a anyadir chent" msgid "Start adding people!" msgstr "Empecipia a anyadir chent!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquet d'inicio" @@ -11715,12 +11722,16 @@ msgstr "Paquet d'inicio creau per tu" msgid "Starter pack is invalid" msgstr "Lo paquet d'inicio ye invalido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Paquez d'inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Los paquez d'inicio te permiten compartir facilment las tuyas canals y personas favoritas con os tuyos amigos." @@ -11728,7 +11739,7 @@ msgstr "Los paquez d'inicio te permiten compartir facilment las tuyas canals y p msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Pachina d'estau" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Almagacenamiento limpio, te fa falta reiniciar l'aplicación agora." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Libro de cuentos" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscribi-te a @{0} pa usar estas etiquetas:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Cambiar a {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toca pa descartar" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Fayena completa - seguindo 10 cuentas!" msgid "Task complete - 10 likes!" msgstr "Fayena completada - 10 \"me fa goyo\"!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Amuestra a lo nuestro algorismo lo que te fa goyo" @@ -12060,7 +12073,7 @@ msgstr "Condicions" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "No s'ha puesto trobar ixe paquet d'inicio." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Ixo ye tot, amigos!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Ixo ye tot!" @@ -12216,7 +12229,7 @@ msgstr "Pareix que lo servidor ye experimentando problemas. Torna-lo a intentar msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Lo paquet d'inicio que intentas veyer ye invalido. Puez eliminar este paquet d'inicio en o suyo puesto." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "Lo codigo de verificación que has proporcionau ye invalido. Per favor, msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "I ha habiu un problema en contactar con o servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "I ha habiu un problema en contactar con o servidor, compreba la tuya connexión y torna-lo a intentar." @@ -12283,8 +12296,8 @@ msgstr "I ha habiu un problema en contactar con o servidor, compreba la tuya con msgid "There was an issue fetching notifications. Tap here to try again." msgstr "I ha habiu un problema en obtener las notificacions. Toca aquí pa intentar de nuevo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "I ha habiu un problema en obtener las publicacions. Toca aquí pa intentar de nuevo." @@ -12309,7 +12322,7 @@ msgstr "I ha habiu un problema trayendo la tuya información de servicio" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "I ha habiu un problema eliminando esta canal. Compreba la tuya connexión y torna-lo a intentar." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Estes achustes nomás afectan a la canal \"Seguindo\"" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Esta {screenDescription} ha estau marcada:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta cuenta ha solicitau que los usuarios inicien sesión pa veyer lo suyo perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Esta canal ye vueda! Ye posible que amenestas seguir a mas usuarios u achustar la configuración d'idioma." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Esta canal ye vueda." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Este identificador ye reservau. Intenta-lo con una diferent." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Esta etiqueta ye estada aplicada per tu." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este etiquetador no ha declarau qué etiquetas publica y puede que no sía activo." @@ -12621,13 +12634,13 @@ msgstr "Esta lista ye vueda." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicación diz haber estau creada lo <0>{0}, pero la hemos vista en Bluesky lo <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Esta publicación diz haber estau creada lo <0>{0}, pero la hemos vi msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicación tiene un tipo de threadgate desconoixiu. Ye posible que la tuya aplicación siga obsoleta." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicación será amagada d'as canals y filos. Esto no se puede desfer." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "L'autor d'esta publicación ha deshabilitau las citas de publicacions." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Este usuario no tiene seguidors." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Este usuario t'ha blocau. No puez veyer lo suyo conteniu." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Este usuario ye incluyiu en a lista <0>{0} que has silenciau." msgid "This user is new here. Press for more info about when they joined." msgstr "Este usuario ye nuevo aquí. Presiona pa mas información sobre cuán s'unió." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Este usuario no sigue a dengún." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Esto eliminará @{0} d'a lista d'acceso rapido." @@ -12786,7 +12801,7 @@ msgstr "Preferencias de filos" msgid "Threaded" msgstr "En filos" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferencias de filos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Alto" @@ -12858,7 +12873,7 @@ msgstr "Alto" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tema" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendencia" @@ -12902,7 +12919,7 @@ msgstr "Tendencia" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Desblocar cuenta?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Deixar de seguir a {0}" msgid "Unfollow account" msgstr "Deixar de seguir esta cuenta" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Deixa de seguir a l'usuario" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Ya no me fa goyo" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Deixar de silenciar filo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Deixar de silenciar video" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Desclavar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desclavar la canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Desclavar d'inicio" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Desclavar lista de moderación" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} ye desclavau d'Inicio" @@ -13258,11 +13277,11 @@ msgstr "Dar-se de baixa d'este etiquetador" msgid "Unsubscribed from list" msgstr "Dau de baixa d'a lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Ha fallau l'actualización d'a visibilidat d'a respuesta" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Puya una foto en cuenta" @@ -13355,7 +13374,7 @@ msgstr "Puyar dende los tuyos fichers" msgid "Upload from Library" msgstr "Puyar dende la biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Cargando imáchens..." msgid "Uploading link thumbnail..." msgstr "Cargando thumbnail d'o vinclo..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Cargando video..." @@ -13408,7 +13427,7 @@ msgstr "Fe-lo servir pa iniciar sesión en l'atra app chunto a lo tuyo identific msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Lo video no s'ha puesto procesar" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Canal de video" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Video de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videojuegos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Lo video ye en pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Lo video se ye reproducindo" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video no trobau." @@ -13653,7 +13672,7 @@ msgstr "Video no trobau." msgid "Video settings" msgstr "Configuración d'o video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video cargau" @@ -13662,17 +13681,17 @@ msgstr "Video cargau" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Veyer l'avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Veyer lo perfil de {0}" @@ -13724,13 +13743,13 @@ msgstr "Veyer la dentrada d'o blog pa mas detalles" msgid "View debug entry" msgstr "Veyer dentrada de depuración" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Veyer detalles" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Veyer filo completo" @@ -13761,7 +13780,7 @@ msgstr "Veyer mas" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Veyer lo servicio de etiquetau proporcionau per @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Veyer usuarios a qui les fa goyo esta canal" @@ -13831,7 +13850,7 @@ msgstr "Veyer las tuyas listas de moderación" msgid "View your muted accounts" msgstr "Veyer las tuyas cuentas silenciadas" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Somos tenendo problemas de ret, intenta de nuevo" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Vai, no hemos puesto resolver esta lista. Si esto persiste, per favor co msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Vai, pero no hemos puesto cargar las tuyas parolas silenciadas en este momento. Per favor, intenta de nuevo." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Vai! La publicación a la cual yes respondendo ha estau eliminada." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Qué fas?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Vai!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Redacta una publicación" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Redacta una respuesta" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "No tiens permiso pa puyar videos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Agora puez iniciar sesión con a tuya nueva clau." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Puez actualizar-lo mas enta debant dende la tuya configuración." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Has alcanzau temporalment lo limite de puyadas de videos. Torna a intentar-lo mas enta debant." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Encara no has creau un paquet d'inicio!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Nomás puez anyadir dica 3 canals" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Has de seguir a lo menos a siet personas mas pa chenerar un paquet d'inicio." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Malas que remates de crear la tuya cuenta podrás seguir usuarios y canals sucheridas!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Prencipiarás a seguir a los usuarios sucherius malas que remates de crear la tuya cuenta!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Has harribau a la fin d'a tuya canal! Troba mas cuentas pa seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus videos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Ya has visto toz los videos que i heba. Y si te descansas una mica?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "La tuya cuenta" @@ -14835,11 +14857,11 @@ msgstr "La tuya cuenta ye estada suspendida" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "La tuya cuenta encara no tiene prou antiguidat como pa puyar videos. Torna a intentar-lo mas enta debant." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "La tuya ha de tener a lo menos 8 carácters." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "Lo tuyo perfil, publicacions, canals y listas no tornarán a estar visibles pa atros usuarios de Bluesky. Puez reactivar la tuya cuenta dentrando-ie en cualsequier momento." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "La tuya denuncia se ninviará a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ar/messages.po b/src/locale/locales/ar/messages.po index 040140ea0f..14fd4c8e7a 100644 --- a/src/locale/locales/ar/messages.po +++ b/src/locale/locales/ar/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ar_SA\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Arabic, Saudi Arabia\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1600,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1665,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1849,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1938,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2262,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2299,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2425,28 +2394,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2825,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2974,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3112,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3236,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3269,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3591,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3624,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3633,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3665,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3861,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3955,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,19 +4070,19 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4374,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4473,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4482,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4582,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4658,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4729,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4860,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +5002,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5515,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "" @@ -6198,7 +6172,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,12 +6748,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6788,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6824,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6836,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6846,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6889,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6965,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7029,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7057,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7065,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7083,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7282,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7630,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7639,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8330,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8350,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8471,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8544,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8570,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8727,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8926,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9077,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "" @@ -9269,7 +9270,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9341,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,12 +10703,13 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13374,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13672,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13681,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13743,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" @@ -13818,8 +13837,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13850,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14154,8 @@ msgstr "" msgid "what’s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ast/messages.po b/src/locale/locales/ast/messages.po index 74c36fe75f..58c796dd56 100644 --- a/src/locale/locales/ast/messages.po +++ b/src/locale/locales/ast/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: ast\n" +"Language: ast_ES\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Asturian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contién elementos incrustaos)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# hores}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# préstame} other {# préstames}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "Sigue a {following}" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Nun se puen unviar mensaxes a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "{1, plural, one {Sigue a} other {Sigue a}} <0>{0}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {cites}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicación} other {republicaciones}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 díes" msgid "7 days" msgstr "7 díes" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Accesibilidá" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Configuración d'accesibilidá" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Quitóse la cuenta del accesu rápidu" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "Amestar otra cuenta" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Amestar otra publicación" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "Amestar a llistes" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "P'adultos" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permite l'accesu a los mensaxes direutos" msgid "Already have a code?" msgstr "¿Yá tienes un códigu?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "Unvióse un mensaxe a {0}. Inclúi un códigu de confirmación que pues msgid "An error has occurred" msgstr "Prodúxose un error" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Prodúxose un error" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Prodúxose un error mentanto se xeneraba'l paquete d'iniciación. ¿Quies volver tentalo?" @@ -1640,11 +1600,11 @@ msgstr "Prodúxose un error mentanto se xeneraba'l paquete d'iniciación. ¿Quie msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Prodúxose un error mentanto se cargaba'l videu. Volvi tentalo dempués." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Prodúxose un error mentanto se cargaba'l videu. Volvi tentalo." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Un problema que nun s'inclúi nestes opciones" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Prodúxose un error al tentar d'abrir la charra" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Los nomes de les contraseñes d'aplicación han tener polo menos 4 cará msgid "App passwords" msgstr "Contraseñes d'aplicación" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contraseñes d'aplicación" @@ -1891,8 +1849,8 @@ msgstr "Apellar esta decisión" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Archivóse la publicación" @@ -1980,7 +1938,7 @@ msgstr "¿De xuru que quies quitar esti elementu de los tos feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "¿De xuru que quies escartar esta publicación?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Reproducir automáticamente vídeos y GIFs" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Enantes de crear un paquete d'iniciación, tienes de verificar primero la direición de corréu." @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Aniversariu" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Bloquióse" msgid "Blocked accounts" msgstr "Cuentes bloquiaes" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuentes bloquiaes" @@ -2282,7 +2250,7 @@ msgstr "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin int 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 "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin interactuar contigo de nenguna forma. Tampoco vas ver el so conteníu nin ellos el de to." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "El bloquéu nun impide qu'esti etiquetador aplique etiquetes a la to cuenta." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nun pue verificar l'autenticidá de la data indicada." @@ -2330,7 +2299,7 @@ msgstr "Bluesky ye una rede abierta onde pues escoyer l'agospiador. Si yes desen msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky ye una rede abierta onde pues escoyer el to fornidor. Si ye la primer vegada que tas equí, aconseyámoste que seleiciones la opción predeterminada de Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "¡Bluesky ye meyor con compaña!" @@ -2358,7 +2327,7 @@ msgstr "Términos del serviciu de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2425,24 +2394,25 @@ msgstr "Restolar más suxerencies na páxina «Esploración»" msgid "Browse other feeds" msgstr "Restolar otros feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Por «{0}»" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "Al crear una cuenta aceptes los <0>términos del serviciu y la <1>po msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Al crear una cuenta aceptes los <0>términos del serviciu." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Cámara" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Silencióse la charra" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Configuración de la charra" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "La charra dexó de tar silenciada" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "" msgid "Choose Feeds" msgstr "Seleición de feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Escoyer por min" @@ -2854,7 +2825,7 @@ msgstr "Escueyi persones" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2850,7 @@ msgstr "¡Escueyi les llinies temporales que quieras! Feeds creaos pola comunid msgid "Choose your password" msgstr "Escueyi una contraseña" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "L'identificador" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Calca pa volver unviar el mensaxe que falló" @@ -3003,7 +2974,7 @@ msgstr "Calca pa volver unviar el mensaxe que falló" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Calca pa volver unviar el mensaxe que falló" msgid "Close" msgstr "Zarrar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Zarrar el diálogu activu" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Zarrar esti diálogu" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mou de color" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Cómics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Pautes de la Comunidá" @@ -3141,7 +3112,7 @@ msgstr "Pautes de la Comunidá" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa'l retu" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimiendo'l videu…" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3236,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3269,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Siguir col filu…" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "La versión de la compilación copióse nel cartafueyu" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copiar la contraseña d'aplicación" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "Copiar l'enllaz" msgid "Copy link to list" msgstr "Copiar l'enllaz de la llista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar l'enllaz de la publicación" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "Copiar el testu del mensaxe" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "Copiar el valor de rexistru TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de derechos d'autor" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Nun se pudo colar de la charra" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nun se pudo cargar el feed" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Nun se pudo silenciar la charra" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crear" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Crear una cuenta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3633,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Crear un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Escuru" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuru" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Estilu escuru" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "La predeterminada" @@ -3894,7 +3861,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Desaniciar la publicación" @@ -3988,7 +3955,7 @@ msgstr "Diálogu: configura quién pue interactuar con esta publicación" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Lleve" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Desactivóse" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Escartar" msgid "Discard changes?" msgstr "¿Quies escartar los cambeos?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "¿Quies escartar el borrador?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "¿Quies escartar la publicación?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descubri feeds nuevos" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,19 +4070,19 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Escartar l'error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Amosar los indicadores de testu alternativu más grandes" msgid "Display name" msgstr "Nome visible" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Fecho" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Editar la imaxe" msgid "Edit interaction settings" msgstr "Editar la configuración de les interaiciones" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edición de los mios feeds" @@ -4406,6 +4374,11 @@ msgstr "Edición de los mios feeds" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Edición de les persones" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4473,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incrustar la publicación" @@ -4509,7 +4482,7 @@ msgstr "Incrustar la publicación" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta esta publicación nel to sitiu web. Namás copia'l fragmentu de testu siguiente y apiégalu nel códigu HTML del sitiu web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "Activar el conteníu p'adultos" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Activar el conteníu multimedia esternu" msgid "Enable media players for" msgstr "Activar los reproductores multimedia de:" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "Activóse" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin del feed" @@ -4608,7 +4582,7 @@ msgstr "Introduz una pallabra o etiqueta" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "Introduz l'identificador y la contraseña de to" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4658,7 @@ msgstr "Prodúxose un error mentanto se guardaba'l ficheru" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "Tol mundu pue responder" msgid "Everybody can reply to this post." msgstr "Tol mundu pue responder a esta publicación." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Tol mundu" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Tol mundu" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4729,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "Imáxenes sexuales esplícites." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "Conteníu multimedia esternu" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "El conteníu multimedia esternu pue permitir que los sitios web recueyan información de ti y del preséu. Nun s'unvia nin se solicita nenguna información hasta que nun primas el botón «Reproducir»." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferencies del conteníu multimedia esternu" @@ -4886,7 +4860,7 @@ msgstr "El cambéu del identificador falló. Volvi tentalo." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "La carga de les preferencies de los feeds falló" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "La carga de los feeds suxeríos falló" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "La carga de los perfiles suxeríos falló" @@ -5027,12 +5002,12 @@ msgstr "La carga de los perfiles suxeríos falló" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "¡Anováronse los feeds!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "¡El ficheru guardóse correutamente!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Atopar cuentes pa siguir" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Siguidores de @{0} que conoces" @@ -5544,7 +5515,7 @@ msgstr "Siguidores que conoces" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "Preferencies del feed «Siguiendo»" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencies del feed «Siguiendo»" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Síguete" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fonte" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tamañu de la fonte" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por motivos de seguranza, nun vas ser a volver vela. Si pierdes esta contraseña, vas tener de xenerar una nueva." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pa tener la meyor esperiencia, aconseyamos usar la fonte del estilu." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "Siempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "¿Escaeciesti la contraseña?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Xeneración d'un paquete d'iniciación" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Pon cara al perfil" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Etiqueta" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "¿Tienes dalgún problema?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Ayuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Ayuda a que les persones sepan que nun yes un robó xubiendo una semeya o creando un avatar." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Esconder" @@ -6198,7 +6172,7 @@ msgstr "Esconder la rempuesta pa tol mundu" msgid "Hide reply for me" msgstr "Escondeme la rempuesta" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "¿Quies esconder esta rempuesta?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "¿Quies esconder los temes en tendencia?" @@ -6240,7 +6214,7 @@ msgstr "Esconder la llista d'usuarios" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "Umm… Nun pudimos cargar el serviciu de moderación." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si quies camudar la contraseña, vamos unviate un códigu pa verificar qu'esta cuenta ye de to." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "¡Namás tas tu! Amiesta más persones al paquete d'iniciación buscando arriba." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID de trabayu: {0}" @@ -6816,8 +6788,8 @@ msgstr "Xúnite a la conversación" msgid "Journalism" msgstr "Periodismu" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquetes" @@ -6852,7 +6824,7 @@ msgstr "Amestáronse les etiquetes" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6836,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Configuración de llingua" @@ -6874,7 +6846,7 @@ msgstr "Configuración de llingua" msgid "Languages" msgstr "Llingües" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Grande" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Lo último" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Saber más tocante a esta alvertencia" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Saber más." @@ -6993,8 +6965,8 @@ msgstr "Colar" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Dexame escoyer" @@ -7057,7 +7029,7 @@ msgstr "¡Vamos!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Claru" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claru" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Dar préstame" @@ -7076,7 +7048,7 @@ msgstr "Dar préstame" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10 préstames" @@ -7085,7 +7057,7 @@ msgstr "10 préstames" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7065,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "A quién-y prestó" @@ -7111,27 +7083,45 @@ msgstr "A quién-y prestó" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {Prestó-y a # usuariu} other {Prestó-yos a # usuarios}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {Prestó-y a # usuariu} other {Prestó-yos a # usuarios}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Préstames" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Préstames d'esta publicación" @@ -7144,7 +7134,7 @@ msgstr "Socesión llinial" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Cargar más" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Cargar más feeds suxeríos" @@ -7292,8 +7282,8 @@ msgstr "Cargar más feeds suxeríos" msgid "Load new notifications" msgstr "Cargar los avisos nuevos" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Rexistru" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Crear unu por min" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marcar como lleíu" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Conteníu multimedia" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Elementos multimedia que puen molestar o nun ser afayadizos pa dalgunos públicos." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menciones" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Desanicióse'l mensaxe" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensaxes" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderación" @@ -7636,7 +7630,7 @@ msgstr "Anovóse la llista de moderación" msgid "Moderation lists" msgstr "Llistes de moderación" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Llistes de moderación" @@ -7645,7 +7639,7 @@ msgstr "Llistes de moderación" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cuentes silenciaes" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuentes silenciaes" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Crear un identificador" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nueva" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Charra nueva" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Llista nueva" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Contraseña nueva" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Publicación nueva" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Les rempuestes nueves primero" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Noticies" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Imaxe siguiente" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Nun s'atopó nengún feed. Prueba a buscar otra cosa." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Nun hai nengún préstame" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Yá nun sigues a {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Nun hai nengún mensaxe" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Nun hai nenguna cita" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Nun hai nengún resultáu" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Nun hai nengún resultáu" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "Nun s'atopó nengún resultáu" msgid "No results found for \"{query}\"" msgstr "Nun s'atopó nengún resultáu pa: {query}" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Non, gracies" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Naide" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nun s'atopó" @@ -8333,7 +8330,7 @@ msgstr "Nota sobre compartir" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8350,12 @@ msgstr "" msgid "Notification sounds" msgstr "Soníos d'avisu" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "¡Oh, non!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "D'acuerdu" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "A unu o más GIFs fálta-yos el testu alternativu." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "A una o más imáxenes fálta-yos el testu alternativu." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "A unu o más vídeos fálta-yos el testu alternativu." @@ -8471,7 +8471,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Namás son compatibles los ficheros WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "¡Meca!" @@ -8544,7 +8544,7 @@ msgstr "¡Meca!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Abrir el creador d'avatares" @@ -8570,21 +8570,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Abrir el selector de fustaxes" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "Abre los detalles adicionales d'una entrada de depuración" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Abre la cámara del preséu" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "¡Anovóse la configuración!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8926,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Persones" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persones siguíes por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persones que siguen a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Semeyes destinaes a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar el feed" @@ -9034,7 +9035,7 @@ msgstr "Fixar el feed" msgid "Pin to home" msgstr "Fixar nel aniciu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixar nel aniciu" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Fixóse" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Fixesti «{0}» nel aniciu" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9077,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Política" @@ -9269,7 +9270,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornu" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Publicar" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar too" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9341,7 @@ msgstr "" msgid "Post interaction settings" msgstr "Configuración de les interaiciones de la publicación" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Fixóse la publicación" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Lliberóse la publicación" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicaciones" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "Escondiéronse les publicaciones" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Privacidá" msgid "Privacy and security" msgstr "Privacidá y seguranza" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidá y seguranza" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Política de privacidá" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Procesando'l videu…" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Desactiváronse les cites" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Cites" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Cites d'esta publicación" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Volver cargar les conversaciones" @@ -9766,7 +9765,7 @@ msgstr "Volver cargar les conversaciones" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Quitar" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Quitar la cuenta" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Quitar de los mios feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Quitóse de la llista" msgid "Removed from saved feeds" msgstr "Quitóse de los feeds guardaos" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Rempuestes" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Informar de la conversación" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Informar del feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republiquesti" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicaciones d'esta publicación" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Volvi tentar la última aición, la que produxo l'error" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Guardar los cambeos" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Guardar nos mios feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feeds guardaos" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardóse nos tos feeds" @@ -10520,8 +10520,8 @@ msgstr "Guardóse nos tos feeds" msgid "Say hello!" msgstr "¡Saluda!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Ciencia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Busca feeds que quieras suxerir a otres persones." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Unviar la publicación a…" @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Unviar per mensaxe direutu" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Configuración" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Compartir de toes toes" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Compartir el códigu QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparti esti paquete d'iniciación y ayuda a la xente a xunise a la to comunidá en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Amosar" msgid "Show alt text" msgstr "Amosar el testu alternativu" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Amosar de toes toes" @@ -11274,9 +11281,9 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Amosar más" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "¿Quies zarrar la sesión?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Pequeña" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Prodúxose dalgún error, volvi tentalo" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "¿Hai daqué mal? Coméntanoslo." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Deportes" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Charra nueva" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "Amestar persones" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquete d'iniciación" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "El paquete d'iniciación ye inválidu" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Paquetes d'iniciación" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Los paquetes d'iniciación déxente compartir fácilmente los feeds y les persones que prefieres coles amistaes." @@ -11728,7 +11739,7 @@ msgstr "Los paquetes d'iniciación déxente compartir fácilmente los feeds y le msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Páxina d'estáu" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Pasu {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Borróse l'almacenamientu y agora tienes de reaniciar l'aplicación." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Del sistema" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "Xera completada- ¡10 préstames!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Deprendi al nuesu algoritmu lo que te presta" @@ -12060,7 +12073,7 @@ msgstr "Términos" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Nun se pudo atopar esi paquete d'iniciación." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Alón." -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "El sirvidor paez que sufre problemes. Volvi tentalo nun momentu." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "El códigu de verificación que forniesti ye inválidu. Asegúrate de qu msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Del estilu" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Hebo un problema al conectase col sirvidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Hebo un problema al conectase col sirvidor. Comprueba la conexón a internet y volvi tentalo." @@ -12283,8 +12296,8 @@ msgstr "Hebo un problema al conectase col sirvidor. Comprueba la conexón a inte msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hebo un problema al catar los avisos. Toca equí pa volver tentalo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hebo un problema al catar les publicaciones. Toca equí pa volver tentalo." @@ -12309,7 +12322,7 @@ msgstr "Hebo un problema al catar la información del serviciu" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Hebo un problema al quitar esti feed. Comprueba la conexón a internet y volvi tentalo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Esta configuración namás s'aplica al feed «Siguiendo»." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta cuenta solicitó que los usuarios anicien la sesión pa ver el so perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "¡Esti feed ta baleru! Ye posible que tengas de siguir más usuarios o camudar la configuración de llingua." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Esti feed ta baleru." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Esti identificador ta acutáu. Prueba con otru." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Apliquesti esta etiqueta." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Esti etiquetador nun declaró qué etiquetes publica y ye posible que nun tea activu." @@ -12621,13 +12634,13 @@ msgstr "Esta llista ta balera." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Indicóse qu'esta publicación se creó'l <0>{0} mas la primer vegada que se creó en Bluesky foi'l <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Indicóse qu'esta publicación se creó'l <0>{0} mas la primer vegad msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicación contién un tipu desconocíu de «threadgate». Ye posible que l'aplicación nun tea anovada." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicación nun va apaecer nos feeds nin nos filos. Esta aición nun se pue desfacer." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "L'autor d'esta publicación desactivó les cites." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Esti usuariu nun tien nengún siguidor." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Esti usuariu bloquióte. Nun pues ver el so conteníu." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "Esti usuariu ye nuevu. Primi pa consiguir más información tocante a cuándo se xunió." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Esti usuariu nun sigue a naide." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "Preferencies de los filos" msgid "Threaded" msgstr "Filos" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferencies de los filos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Lo destacao" @@ -12858,7 +12873,7 @@ msgstr "Lo destacao" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tema" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "En tendencia" @@ -12902,7 +12919,7 @@ msgstr "En tendencia" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "¿Quies desbloquiar la cuenta?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Dexa de siguir al usuariu" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Dexar de silenciar el filu" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Lliberar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Lliberar el feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Lliberar del aniciu" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Lliberar la llista de moderación" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Lliberésti'l feed «{0}» del aniciu" @@ -13258,11 +13277,11 @@ msgstr "Dase de baxa d'esti etiquetador" msgid "Unsubscribed from list" msgstr "Diéstite de baxa d'esta llista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "L'anovamientu de la visibilidá de la rempuesta falló" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Xubir una semeya" @@ -13355,7 +13374,7 @@ msgstr "Xubir dende Ficheros" msgid "Upload from Library" msgstr "Xubir dende Biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Xubiendo les imáxenes…" msgid "Uploading link thumbnail..." msgstr "Xubiendo la miniatura del enllaz…" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Xubiendo'l videu…" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "Videu" msgid "Video failed to process" msgstr "Nun se pudo procesar el videu" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videoxuegos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Nun s'atopó'l videu." @@ -13653,7 +13672,7 @@ msgstr "Nun s'atopó'l videu." msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Xubióse'l videu" @@ -13662,17 +13681,17 @@ msgstr "Xubióse'l videu" msgid "Video: {0}" msgstr "Videu: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vídeos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Ver l'avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ver el perfil de {0}" @@ -13724,13 +13743,13 @@ msgstr "Ver la entrada del blogue pa consultar los detalles" msgid "View debug entry" msgstr "Ver la entrada de depuración" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ver los detalles" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ver el filu completu" @@ -13761,7 +13780,7 @@ msgstr "Ver más" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Ver a qué usuarios-yos prestó esti feed" @@ -13831,7 +13850,7 @@ msgstr "Ver les tos llistes de moderación" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Tenemos problemes de rede. Volvi tentalo" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Nun fuimos a resolver esta llista. Si sigue'l problema, ponte en contaut msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Nesti momentu nun fuimos a cargar la llista de pallabres silenciaes. Volvi tentalo." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Desanicióse la publicación a la que tas respondiendo." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "¿Que pasó?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "¡Meca!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escribir una rempuesta" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Nun tienes permisu pa xubir vídeos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Yá pues aniciar la sesión cola contraseña nueva." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Algamesti temporalmente la llende vídeos xubíos. Volvi tentalo dempués." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "¡Nun creesti nengún paquete d'iniciación!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Namás pues amestar hasta 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Tienes de siguir a, polo menos, siete persones más pa xenerar un paquete d'iniciación." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Namás qu'acabes de crear la cuenta, vas siguir a los usuarios y feeds suxeríos." -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Namás qu'acabes de crear la cuenta, vas sigur a los usuarios suxeríos." @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "¡Algamesti la fin del feed! Atopa dalgunes cuentes más y síguiles." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Algamesti la llende diaria de vídeos xubíos (milenta bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Algamesti la llende diaria de vídeos xubíos (milenta vídeos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "La cuenta" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "La cuenta nun tien abonda antigüedá como pa xubir vídeos. Volvi tentalo dempués." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "El perfil, les publicaciones, los feeds y les llistes yá nun van ser visibles pa otros usuarios de Bluesky. Pues volver activar la cuenta en cualesquier momentu aniciando la sesión." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/az/messages.po b/src/locale/locales/az/messages.po index 0a34dcac47..8e9f61301c 100644 --- a/src/locale/locales/az/messages.po +++ b/src/locale/locales/az/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: az\n" +"Language: az_AZ\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Azerbaijani\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1600,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1665,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1849,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1938,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2262,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2299,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2425,28 +2394,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2825,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2974,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3112,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3236,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3269,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3591,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3624,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3633,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3665,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3861,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3955,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,19 +4070,19 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4374,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4473,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4482,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4582,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4658,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4729,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4860,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +5002,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5515,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "" @@ -6198,7 +6172,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,12 +6748,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6788,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6824,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6836,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6846,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6889,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6965,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7029,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7057,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7065,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7083,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7282,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7630,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7639,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8330,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8350,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8471,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8544,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8570,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8727,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8926,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9077,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "" @@ -9269,7 +9270,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9341,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,12 +10703,13 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13374,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13672,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13681,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13743,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" @@ -13818,8 +13837,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13850,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14154,8 @@ msgstr "" msgid "what’s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/bn/messages.po b/src/locale/locales/bn/messages.po index 1d5a73d5cf..897cd709ad 100644 --- a/src/locale/locales/bn/messages.po +++ b/src/locale/locales/bn/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: bn\n" +"Language: bn_BD\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Bengali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1600,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1665,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1849,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1938,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2262,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2299,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2425,28 +2394,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2825,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2974,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3112,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3236,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3269,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3591,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3624,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3633,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3665,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3861,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3955,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,19 +4070,19 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4374,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4473,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4482,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4582,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4658,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4729,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4860,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +5002,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5515,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "" @@ -6198,7 +6172,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,12 +6748,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6788,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6824,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6836,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6846,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6889,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6965,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7029,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7057,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7065,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7083,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7282,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7630,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7639,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8330,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8350,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8471,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8544,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8570,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8727,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8926,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9077,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "" @@ -9269,7 +9270,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9341,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,12 +10703,13 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13374,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13672,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13681,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13743,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" @@ -13818,8 +13837,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13850,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14154,8 @@ msgstr "" msgid "what’s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/br/messages.po b/src/locale/locales/br/messages.po index 778d8d31bb..017ac0678c 100644 --- a/src/locale/locales/br/messages.po +++ b/src/locale/locales/br/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: br\n" +"Language: br_FR\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Breton\n" "Plural-Forms: nplurals=5; plural=(n%10==1 && (n%100!=11 || n%100!=71 || n%100!=91) ? 0 : n%10==2 && (n%100!=12 || n%100!=72 || n%100!=92) ? 1 : ((n%10>=3 && n%10<=4) || n%10==9) && ((n%100 < 10 || n%100 > 19) || (n%100 < 70 || n%100 > 79) || (n%100 < 90 || n%100 > 99)) ? 2 : (n!=0 && n%1;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1600,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1665,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1849,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1938,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2262,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2299,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2425,28 +2394,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2825,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2974,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3112,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3236,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3269,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3591,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3624,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3633,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3665,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3861,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3955,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,19 +4070,19 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4374,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4473,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4482,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4582,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4658,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4729,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4860,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +5002,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5515,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "" @@ -6198,7 +6172,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,12 +6748,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6788,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6824,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6836,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6846,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6889,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6965,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7029,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7057,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7065,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7083,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7282,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7630,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7639,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8330,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8350,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8471,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8544,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8570,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8727,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8926,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9077,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "" @@ -9269,7 +9270,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9341,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,12 +10703,13 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13374,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13672,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13681,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13743,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" @@ -13818,8 +13837,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13850,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14154,8 @@ msgstr "" msgid "what’s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index 5806077f41..68d67c7a59 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: ca\n" +"Language: ca_ES\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" categoria (activa)A" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(missatge bloquejat amagat)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(té contingut incrustat)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(missatge suprimit)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(enllaç d'invitació al xat invàlid)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(missatge enviat abans que t'unissis)" @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# hores}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural, one {# etiqueta aplicada a la teva publicació} other {# etiquetes aplicades a la teva publicació}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural, one {# etiqueta aplicada} other {# etiquetes aplicades}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# m'agrada} other {# m'agrades}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membre} other {# membres}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nova sol·licitud} other {# noves sol·licituds}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# persona ha} other {# persones han}} reaccionat– {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Compte)" @@ -251,36 +252,13 @@ msgstr "{0} s'ha afegit al xat" msgid "{0} and {1} added to chat" msgstr "{0} i {1} s'han afegit al xat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} seguint" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} t'ha bloquejat" @@ -324,14 +302,6 @@ msgstr "{0} ha sortit" msgid "{0} left the group" msgstr "{0} ha deixat el grup" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ha reaccionat amb {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} i {memberCount, plural, one {# altre} other {# altres}} s'han afegit al xat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} t'ha verificat" msgid "{following} following" msgstr "{following} seguint" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} no es pot afegir" @@ -698,7 +660,7 @@ msgstr "{handle} no es pot afegir" msgid "{handle} can't be messaged" msgstr "No es poden enviar missatges a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "No es poden enviar missatges a {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# element sense llegir} other {# elemen msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contacte trobat} other {# contactes trobats}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} es va unir a Bluesky fa {timeAgoString}" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} es va unir a Bluesky, utilitzant un Starter Pack, fa {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {Queda # caràcter} other {Queden # caràcters}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} ha respost" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} ha respost a {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} t'ha respost" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# sol·licitud} other {# sol·licituds}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ sol·licituds" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "fa {type} h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} és un verificador de confiança" @@ -842,13 +795,13 @@ msgstr "Verificacions de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {seguint} other {seguint}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {cites}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicació} other {republicacions}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, one {desada} other {desades}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, one {m'agrada} other {m'agrades}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> t'ha afegit" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Inicia la sessió<1> o <2>crea un compte<3> <4>per cercar notícies, esports, política, jocs de paraules i tot el que passa a Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dies" msgid "7 days" msgstr "7 dies" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Una col·lecció de canals populars que pots trobar a Bluesky, com ara News, Booksky, Game Dev, Blacksky i Fountain Pens" @@ -988,9 +941,11 @@ msgstr "S'ha produït un error de xarxa. Si us plau, comprova la connexió a Int #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "S'ha enviat un codi nou" msgid "A new form of verification" msgstr "Una nova forma de verificació" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Una resposta a un missatge enviat abans que t'unissis" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Una captura de pantalla del compositor de publicacions amb un botó nou al costat que diu \"Esborranys\", amb un efecte de focs artificials de l'arc de Sant Martí. A sota, el text del compositor diu \"Ei, estàs al cas de les novetats? Bluesky ja té esborranys!!!\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "El remitent no segueix algun dels destinataris seleccionats." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Accés sol·licitat! El propietari del grup revisarà la teva sol·licit msgid "Accessibility" msgstr "Accessibilitat" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Configuració d'accessibilitat" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Compte silenciat per una llista" msgid "Account options" msgstr "Opcions del compte" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Compte eliminat de l'accés ràpid" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Els comptes amb una marca de verificació blava<0><1/>poden verificar-ne altres. Bluesky selecciona aquests verificadors de confiança." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Activitat d'altres persones" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Notificacions d'activitat" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,17 +1183,17 @@ msgstr "Afegeix text alternatiu (opcional)" msgid "Add another account" msgstr "Afegeix un altre compte" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Afegeix una altra publicació" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Afegeix una altra publicació al fil" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" -msgstr "" +msgstr "Afegeix un altre filtre de cerca" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" @@ -1253,7 +1213,7 @@ msgstr "Afegeix una etiqueta d'automatització al compte" msgid "Add emoji reaction" msgstr "Afegeix una reacció d'emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Afegeix un filtre" @@ -1338,7 +1298,7 @@ msgstr "Afegeix aquest canal als teus canals" msgid "Add to lists" msgstr "Afegeix a les llistes" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Desa la publicació" @@ -1400,7 +1360,7 @@ msgstr "Adults" msgid "Adult content" msgstr "Contingut per a adults" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permet l'accés als missatges directes" msgid "Already have a code?" msgstr "Ja tens un codi?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Ja tens un compte?" @@ -1614,7 +1574,7 @@ msgstr "S'ha enviat un correu a {0}. Inclou un codi de confirmació que has d'en msgid "An error has occurred" msgstr "Hi ha hagut un error" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Hi ha hagut un error" @@ -1631,7 +1591,7 @@ msgstr "S'ha produït un error en obtenir els comptes suggerits." msgid "An error occurred while fetching the feed." msgstr "S'ha produït un error en anar a buscar el canal." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "S'ha produït un error en generar el teu starter pack. Vols tornar-ho a provar?" @@ -1640,11 +1600,11 @@ msgstr "S'ha produït un error en generar el teu starter pack. Vols tornar-ho a msgid "An error occurred while hiding suggestion. {0}" msgstr "S'ha produït un error en ocultar el suggeriment. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Hi ha hagut un error mentre es carregava el vídeo. Prova-ho més tard." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Hi ha hagut un error mentre es carregava el vídeo. Prova-ho més tard." @@ -1684,7 +1644,7 @@ msgstr "S'ha produït un error. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Una il·lustració que representa els avatars d'usuari que flueixen des d'una llibreta de contactes fins a l'aplicació Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Una il·lustració de diverses publicacions de Bluesky juntament amb icones de republicació, m'agrada i comentari" @@ -1705,17 +1665,15 @@ msgstr "Un enllaç d'invitació permet que les persones s'uneixin a aquest xat d msgid "An issue not included in these options" msgstr "Un problema que no està inclòs en aquestes opcions" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "S'ha produït un problema en crear el xat de grup. Torna-ho a provar." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "S'ha produït un problema en iniciar el xat, torna-ho a provar." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Hi ha hagut un problema en provar d'obrir el xat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "S'ha produït un problema en iniciar el xat de grup. Torna-ho a provar." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1766,11 +1724,11 @@ msgstr "Anunciant la verificació a Bluesky" #. Placeholder text for a date picker #: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 msgid "Any date" -msgstr "" +msgstr "Qualsevol data" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Qualsevol" @@ -1802,7 +1760,7 @@ msgstr "Qualsevol que em segueixi" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Qualsevol persona que el tingui ja no podrà unir-se ni sol·licitar unir-se. Sempre pots crear-ne un de nou." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1829,7 +1787,7 @@ msgstr "El nom de la contrasenya d'aplicació ha de ser únic" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" -msgstr "" +msgstr "Els noms de contrasenyes d'aplicació només poden contenir lletres, números, espais, guions i guions baixos" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" @@ -1840,7 +1798,7 @@ msgstr "Els noms de contrasenyes d'aplicació han de tenir almenys 4 caràcters" msgid "App passwords" msgstr "Contrasenyes de l'aplicació" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasenyes de l'aplicació" @@ -1858,7 +1816,7 @@ msgstr "Apel·la \"{0}\" etiqueta" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "Apel·la l'etiqueta" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1847,10 @@ msgstr "Apel·la aquesta decisió" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "Apel·la aquesta etiqueta" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Aplica la petició d'integració Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arxivat del dia {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publicació arxivada" @@ -1980,7 +1938,7 @@ msgstr "Segur que vols eliminar-ho dels teus canals?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Segur que vols retirar la teva sol·licitud per a unir-te a {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Estàs segur que vols descartar aquesta publicació?" @@ -2019,21 +1977,21 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Compte automatitzat" #: src/screens/Login/components/HostingProviderDialog.tsx:165 #: src/screens/Login/components/HostingProviderDialog.tsx:167 msgid "Automatic" -msgstr "" +msgstr "Automàtic" #: src/screens/Settings/AccountSettings.tsx:155 #: src/screens/Settings/AccountSettings.tsx:158 msgid "Automation label" msgstr "Etiqueta d'automatització" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etiqueta d'automatització" @@ -2050,12 +2008,16 @@ msgstr "Reprodueix automàticament vídeos i GIFs" msgid "Available" msgstr "Disponible" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Abans de crear una publicació o respondre-la, primer has de verificar el teu correu." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Abans de crear un starter pack, primer has de verificar el teu correu." @@ -2135,10 +2097,10 @@ msgstr "Abans de poder rebre notificacions de les publicacions de {name}, primer #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2122,28 @@ msgstr "Comença el procés de garantia d'edat emplenant els següents camps." msgid "Beta Feature" msgstr "Funció beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "Funcions beta" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Funcions beta activades" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Les funcions beta poden ser inestables. És possible que alguns canvis requereixin recarregar l'aplicació." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Les funcions beta poden ser inestables. Alguns canvis poden requerir reiniciar l'aplicació." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "Data de naixement" msgid "Birthday" msgstr "Aniversari" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Bloquejada" msgid "Blocked accounts" msgstr "Comptes bloquejats" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Comptes bloquejats" @@ -2282,7 +2250,7 @@ msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni 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 "Els comptes bloquejats no poden respondre a cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera. No veuràs mai el seu contingut ni ells el teu." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "El bloqueig no evita que aquest etiquetador apliqui etiquetes al teu compte." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no pot confirmar l'autenticitat de la data declarada." @@ -2330,7 +2299,7 @@ msgstr "Bluesky és una xarxa oberta on pots escollir el teu proveïdor d'allotj msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky és una xarxa oberta on pots triar el proveïdor. Si estàs començant, et recomanem l'opció per defecte, Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky és millor amb col·legues!" @@ -2358,7 +2327,7 @@ msgstr "Condicions del servei de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky emmagatzema els contactes com a dades codificades. Si els elimines, aquestes dades s'eliminaran immediatament." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky triarà un conjunt de comptes recomanats de les persones de la teva xarxa." @@ -2425,24 +2394,25 @@ msgstr "Explora més recomanacions a la pàgina Explora" msgid "Browse other feeds" msgstr "Explora altres canals" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Explora les publicacions sobre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Explora les publicacions etiquetades amb {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Explora l'Starter pack de {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Explora les publicacions del tema {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Explora les publicacions del tema {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Botó per tornar a la cronologia d'inici" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Per {0}" @@ -2473,9 +2443,9 @@ msgstr "per @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Per <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Creant un compte indiques que estàs d'acord amb les <0>Condicions del s msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Creant un compte indiques que estàs d'acord amb les <0>Condicions del servei." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Per tu" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Càmera" @@ -2534,7 +2504,7 @@ msgstr "Cal accés a la càmera" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Cal accés a la càmera" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,13 +2555,13 @@ msgstr "Cancel·la la reactivació i surt" msgid "Cancel reply" msgstr "Cancel·la la resposta" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancel·la la cerca" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 msgid "Cancels signing in so you can check your username" -msgstr "" +msgstr "Cancel·la l'inici de sessió perquè puguis comprovar el teu nom d'usuari" #: src/components/PostControls/index.tsx:108 #: src/components/PostControls/index.tsx:138 @@ -2649,7 +2619,7 @@ msgstr "Canvia l'identificador" #: src/screens/Login/LoginForm.tsx:644 msgid "Change hosting provider" -msgstr "" +msgstr "Canvia el proveïdor d'allotjament" #: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Els canvis a l'Starter Pack no es reflectiran a la llista després de la seva creació. La llista serà una còpia independent." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Xat silenciat" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "No s'ha trobat el xat." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Opcions de xat" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Els propietaris del xat no poden abandonar un xat grupal." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "El remitent no segueix el destinatari del xat." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Safata de sol·licituds de xat" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Sol·licituds de xat" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Configuració del xat" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Xat no silenciat" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Xats" @@ -2810,7 +2781,7 @@ msgstr "Comprova <0>{currentEmail} per a rebre un correu amb el codi de conf #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Torna més tard!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "Tria el mètode de verificació del domini" msgid "Choose Feeds" msgstr "Tria els canals" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Tria per mi" @@ -2854,7 +2825,7 @@ msgstr "Tria les persones" msgid "Choose post languages" msgstr "Tria els idiomes de publicació" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Tria aquest color com el teu avatar" @@ -2869,7 +2840,7 @@ msgstr "Tria a qui vols convidar" #: src/components/dialogs/ServerInput.tsx:134 #: src/screens/Login/components/HostingProviderDialog.tsx:155 msgid "Choose your hosting provider" -msgstr "" +msgstr "Tria el teu proveïdor d'allotjament" #: src/view/screens/Feeds.tsx:726 msgid "Choose your own timeline! Feeds built by the community help you find content you love." @@ -2879,7 +2850,7 @@ msgstr "Tria la teva pròpia línia de temps! Els canals creats per la comunitat msgid "Choose your password" msgstr "Tria la teva contrasenya" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "El teu identificador d'usuari" @@ -2966,7 +2937,7 @@ msgstr "Fes clic per a mostrar l'enllaç d'invitació a aquest xat de grup" msgid "Click to open tag menu for {0}" msgstr "Fes clic per a obrir el menú d'etiquetes per a {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clica aquí per provar d'enviar el missatge de nou" @@ -3003,7 +2974,7 @@ msgstr "Clica aquí per provar d'enviar el missatge de nou" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Clica aquí per provar d'enviar el missatge de nou" msgid "Close" msgstr "Tanca" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Tanca el diàleg actiu" @@ -3047,7 +3018,7 @@ msgstr "Tanca el bàner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Tanca el visor d'imatges" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Tanca el menú" @@ -3090,7 +3061,7 @@ msgstr "Tanca el bàner de sol·licituds entrants" msgid "Close this dialog" msgstr "Tanca aquest diàleg" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Tanca la finestra emergent de benvinguda" @@ -3098,7 +3069,7 @@ msgstr "Tanca la finestra emergent de benvinguda" msgid "Closes password update alert" msgstr "Tanca l'alerta d'actualització de contrasenya" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Tanca l'editor de la publicació i descarta l'esborrany" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Color" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mode de color" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Còmics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrius de la comunitat" @@ -3141,7 +3112,7 @@ msgstr "Directrius de la comunitat" msgid "Complete onboarding and start using your account" msgstr "Finalitza el registre i comença a utilitzar el teu compte" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa la prova" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Crea una nova publicació" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Crear publicacions de fins a {0, plural, one {}other {# caràcters}} de longitud" @@ -3160,11 +3131,11 @@ msgstr "Crear publicacions de fins a {0, plural, one {}other {# caràcters}} de msgid "Compose reply" msgstr "Redacta una resposta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Comprimint el GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimint el vídeo..." @@ -3199,12 +3170,12 @@ msgstr "Connectant amb el servei..." #: src/screens/Login/LoginForm.tsx:542 msgid "Connecting to service…" -msgstr "" +msgstr "Connectant amb el servei…" #: src/screens/Login/ForgotPasswordForm.tsx:138 #: src/screens/Login/LoginForm.tsx:548 msgid "Connecting…" -msgstr "" +msgstr "Connectant…" #: src/ageAssurance/components/RedirectOverlay.tsx:297 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Contacta amb el nostre equip de suport" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contacta amb suport" @@ -3253,7 +3224,7 @@ msgstr "Contingut i multimèdia" msgid "Content and media" msgstr "Contingut i multimèdia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contingut i multimèdia" @@ -3265,10 +3236,6 @@ msgstr "Contingut bloquejat" msgid "Content filters" msgstr "Filtres de contingut" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Contingut de tota la xarxa que et podria agradar" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Idiomes del contingut" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Contingut que promou o representa l'autolesió" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Advertència del contingut" msgid "Content warnings" msgstr "Advertències del contingut" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Teló de fons del menú contextual, fes clic per a tancar-lo." @@ -3302,7 +3269,7 @@ msgstr "Teló de fons del menú contextual, fes clic per a tancar-lo." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3315,7 +3282,7 @@ msgstr "Continua com a {0} (sessió actual)" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 msgid "Continue signing in" -msgstr "" +msgstr "Continua iniciant sessió" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Continua el fil..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continua fins al nom del grup" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "No s'ha trobat la conversa." msgid "Copied build version to clipboard" msgstr "Número de versió copiat en memòria" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Enllaç copiat al porta-retalls" @@ -3376,7 +3343,7 @@ msgstr "Enllaç copiat al porta-retalls" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copia la contrasenya d'aplicació" msgid "Copy at:// URI" msgstr "Copia at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copia DID de l'autor" @@ -3449,10 +3416,10 @@ msgstr "Copia l'enllaç" msgid "Copy link to list" msgstr "Copia l'enllaç a la llista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copia l'enllaç a la publicació" @@ -3470,8 +3437,8 @@ msgstr "Copia l'enllaç a l'starter pack" msgid "Copy message text" msgstr "Copia el text del missatge" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copia at:// URI de la publicació" @@ -3490,7 +3457,7 @@ msgstr "Copia el valor del registre TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de drets d'autor" @@ -3540,11 +3507,11 @@ msgstr "No s'han pogut seguir totes les coincidències. {0}" msgid "Could not leave chat" msgstr "No s'ha pogut abandonar el xat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "No s'ha pogut abandonar el xat." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "No s'ha pogut carregar el canal" @@ -3562,7 +3529,7 @@ msgstr "No s'ha pogut carregar el perfil" msgid "Could not mute chat" msgstr "No s'ha pogut silenciar el xat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "No s'ha pogut eliminar el membre." @@ -3606,8 +3573,8 @@ msgstr "vaques porcs" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crea" @@ -3624,26 +3591,26 @@ msgstr "Crea una llista a partir d'aquest l'starter pack" msgid "Create a QR code for a starter pack" msgstr "Crea un codi QR per a un starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crea un starter pack" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Crea un Starter Pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea un starter pack per a mi" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Registra't" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crea un compte" @@ -3666,15 +3633,15 @@ msgstr "Crea un compte" msgid "Create an account without using this starter pack" msgstr "Crea un compte sense utilitzar aquest starter pack" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Enlloc d'això, crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crea'n un altre" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Crea un xat de grup" @@ -3741,9 +3708,9 @@ msgstr "Cultura" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Funcions beta actuals" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Xat actual" @@ -3770,8 +3737,8 @@ msgstr "Substàncies perilloses o abús de drogues" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Fosc" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Fosc" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema fosc" @@ -3814,7 +3781,7 @@ msgstr "Rebutja aquest suggeriment d'idioma" msgid "Deepfake adult content" msgstr "Contingut per a adults deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Per defecte" @@ -3894,7 +3861,7 @@ msgstr "Elimina el meu compte" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Elimina la publicació" @@ -3986,9 +3953,9 @@ msgstr "Diàleg: ajusta qui pot interactuar amb aquesta publicació" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 msgid "Dialog: Set search filters" -msgstr "" +msgstr "Diàleg: Estableix els filtres de cerca" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Tènue" @@ -4002,7 +3969,7 @@ msgstr "Desactiva" msgid "Disable 2FA" msgstr "Deshabilita la verificació en dos passos" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Desactiva els subtítols" @@ -4045,9 +4012,9 @@ msgstr "Desactivat" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Descarta" msgid "Discard changes?" msgstr "Vols descartar els canvis?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Vols descartar l'esborrany?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Vols descartar la publicació?" @@ -4079,6 +4046,10 @@ msgstr "Desconnecta Germ DM" 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/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Descobreix canals" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Evita que les aplicacions mostrin el meu compte als usuaris no connectat msgid "Discover new custom feeds" msgstr "Descobreix nous canals personalitzats" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Descobreix nous canals" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descobreix nous canals" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Descarta" @@ -4103,19 +4070,19 @@ msgstr "Descarta" msgid "Dismiss banner" msgstr "Ignora el bàner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Descarta l'error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Ignora la guia d'inici" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Descarta interessos" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Ignora el bàner d'esdeveniment en directe" @@ -4142,7 +4109,7 @@ msgstr "Mostra insígnies de text alternatiu més grans" msgid "Display name" msgstr "Nom mostrat" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Deixa de banda els trolls i els pesca-clics. Troba persones reals i converses que t'importin." @@ -4205,8 +4172,8 @@ msgstr "No pateixis! Tots els missatges i la configuració existents es desen i #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "No pateixis! Tots els missatges i la configuració existents es desen i msgid "Done" msgstr "Fet" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Fes un toc doble o premeu llargament el missatge per a afegir una reacció" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Fes doble toc per tancar el diàleg" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Fes dos tocs per a fer m'agrada" @@ -4328,6 +4295,7 @@ msgstr "Trastorns alimentaris" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Edita la imatge" msgid "Edit interaction settings" msgstr "Edita les preferències de les interaccions" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Edita els interessos" @@ -4397,7 +4365,7 @@ msgstr "Edita l'estat en directe" msgid "Edit moderation list" msgstr "Edita la llista de moderació" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edita els meus canals" @@ -4406,6 +4374,11 @@ msgstr "Edita els meus canals" msgid "Edit name" msgstr "Edita el nom" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Edita les notificacions de {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Edita les persones" @@ -4444,7 +4417,7 @@ msgstr "Edita la llista d'usuaris" msgid "Edit who can reply" msgstr "Edita qui pot respondre" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edita el teu starter pack" @@ -4500,8 +4473,8 @@ msgstr "Incrusta el codi HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incrusta la publicació" @@ -4509,7 +4482,7 @@ msgstr "Incrusta la publicació" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta aquesta publicació al teu lloc web. Copia el fragment següent i enganxa'l al codi HTML del teu lloc web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Incrusta el reproductor de vídeo" @@ -4531,9 +4504,9 @@ msgstr "Habilita el contingut per a adults" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Activa les funcions beta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Activa els subtítols" @@ -4550,12 +4523,13 @@ msgstr "Habilita els continguts externs" msgid "Enable media players for" msgstr "Habilita reproductors de contingut per" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activa les notificacions per a un compte visitant el seu perfil i prement la <0>icona de la campana <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Activa les notificacions push" @@ -4581,7 +4555,7 @@ msgstr "Activa els vídeos populars al canal Discover" msgid "Enabled" msgstr "Habilitat" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fi del canal" @@ -4608,7 +4582,7 @@ msgstr "Introdueix una lletra o etiqueta" msgid "Enter code" msgstr "Entra el codi" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Entra a pantalla completa" @@ -4650,11 +4624,11 @@ msgstr "Introdueix el teu usuari i contrasenya" msgid "Enters full screen" msgstr "Canvia a pantalla completa" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Entreteniment" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4658,7 @@ msgstr "Ha ocorregut un error en desar el fitxer" msgid "Error receiving captcha response." msgstr "Error en rebre la resposta al captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Error: {error}" @@ -4696,8 +4670,8 @@ msgstr "Tothom pot respondre" msgid "Everybody can reply to this post." msgstr "Tothom pot respondre a aquesta publicació." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Tothom" @@ -4711,14 +4685,14 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Tothom" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Tota la resta" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 msgid "Everything look right?" -msgstr "" +msgstr "Tot està correcte?" #. Advanced search filter #. Advanced search filter @@ -4738,7 +4712,7 @@ msgstr "Exclou els usuaris que segueixes" msgid "Excludes users you follow" msgstr "Exclou els usuaris que segueixes" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Surt de la pantalla completa" @@ -4755,11 +4729,11 @@ msgstr "Expandeix la llista d'usuaris" msgid "Expand or collapse the full post you are replying to" msgstr "Expandeix o replega la publicació completa a la qual estàs responent" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expandeix el text de la publicació" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Amplia o redueix el text de la publicació" @@ -4802,15 +4776,15 @@ msgstr "Contingut explícit o potencialment pertorbador." msgid "Explicit sexual images." msgstr "Imatges sexuals explícites." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explora" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Explora l'aplicació" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferència del contingut extern" @@ -4886,7 +4860,7 @@ msgstr "No s'ha pogut canviar l'identificador. Torna-ho a provar." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "No s'ha pogut copiar l'enllaç" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "No s'ha pogut abandonar el xat de grup" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "No s'han pogut carregar les converses" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "No s'han pogut carregar els canals" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "No s'han pogut carregar les preferències dels canals" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "No s'ha pogut carregar la configuració de notificacions." @@ -5012,14 +4987,14 @@ msgstr "No s'ha pogut carregar la preferència." msgid "Failed to load profiles" msgstr "No s'han pogut carregar els perfils" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "No s'han pogut carregar els canals suggerits" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "No s'han pogut carregar els comptes suggerits" @@ -5027,12 +5002,12 @@ msgstr "No s'han pogut carregar els comptes suggerits" msgid "Failed to lock group chat" msgstr "No s'ha pogut bloquejar el xat de grup" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "No s'han pogut marcar tots els xats com a llegits" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "No s'ha pogut retirar la teva sol·licitud. Torna-ho a provar." msgid "Failed to resolve location. Please try again." msgstr "La ubicació ha fallat. Torna-ho a provar." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Error en desar l'esborrany" @@ -5191,7 +5166,7 @@ msgstr "Compte fals o bot" msgid "False information about elections" msgstr "Informació falsa sobre les eleccions" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Canal" @@ -5212,7 +5187,7 @@ msgstr "Creador del canal" msgid "Feed identifier" msgstr "Identificador del canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menú del canal" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Comentaris enviats a l'operador del canal" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Canals actualitzats!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Canals que creiem que t'agradaran." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Cerca actualitzacions" @@ -5273,11 +5244,11 @@ msgstr "Cerca actualitzacions" msgid "File saved successfully!" msgstr "Fitxer desat amb èxit" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Filtra per autor" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtra per autor (actualment: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Filtra aquesta cerca per {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtra qui pot optar per rebre notificacions de la teva activitat" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtra de qui reps notificacions" @@ -5318,7 +5289,7 @@ msgstr "Filtra de qui reps notificacions" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "Filtres" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5323,8 @@ msgstr "Troba comptes per a seguir" msgid "Find and invite friends" msgstr "Cerca i convida amics" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Troba contactes" @@ -5387,7 +5358,7 @@ msgstr "Troba els teus amics" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Troba els teus amics a Bluesky verificant el teu número de telèfon i fent-lo coincidir amb els teus contactes. Nosaltres protegim la teva informació i tu controles què passa després. <0>Més informació" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Troba la teva gent" @@ -5429,7 +5400,7 @@ msgstr "Centra el camp de cerca" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Segueix {0}" msgid "Follow {displayName}" msgstr "Segueix {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Segueix {handle}" @@ -5453,11 +5424,11 @@ msgstr "Segueix {handle}" msgid "Follow 10 accounts" msgstr "Segueix 10 comptes" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Segueix a 10 persones per començar" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Segueix 7 comptes" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Els seguidors es poden unir" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que coneixes" @@ -5544,7 +5515,7 @@ msgstr "Seguidors que coneixes" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Seguint {0}" msgid "Following {displayName}" msgstr "Seguint {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Seguint {handle}" @@ -5578,21 +5549,21 @@ msgstr "Seguint {handle}" msgid "Following feed preferences" msgstr "Preferències del canal Seguint" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferències del canal Seguint" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Et segueix" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Tipus de lletra" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Mida de la lletra" @@ -5612,13 +5583,13 @@ msgstr "Per motius de seguretat necessitem enviar-te un codi de confirmació al msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Per motius de seguretat, no podràs tornar a veure això. Si perds aquesta contrasenya d'aplicació, n'hauràs de generar una de nova." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Per obtenir la millor experiència, et recomanem utilitzar el tipus de lletra del tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Per a tu" @@ -5628,7 +5599,7 @@ msgstr "Per a tu" msgid "Forever" msgstr "Per sempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Oblida't del soroll" @@ -5647,11 +5618,13 @@ msgstr "Has oblidat la contrasenya?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Quatre bombolles de missatge que representen un xat de grup. Primer missatge: «Has vist la novetat? Bluesky ja té xats de grup!» Segon missatge: «ostres, no fotis» Tercer missatge: «Uau, 50 persones en un sol xat!» Quart missatge: «També pots enviar enllaços d'invitaciói!»" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Allibera el teu canal" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5647,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "D'aquestes persones" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Genera un starter pack" @@ -5712,45 +5685,45 @@ msgstr "Germ DM reconnectat" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features we’re testing." -msgstr "" +msgstr "Obtén accés anticipat a les funcions experimentals que estem provant." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Aconsegueix ajuda" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Rep notificacions sobre adhesions a starter packs, verificacions i altres activitats." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Rep notificacions quan la gent et segueixi." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Rep notificacions quan a la gent li agradin les teves publicacions." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Rep notificacions quan a la gent li agradin les teves republicacions." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Rep notificacions quan la gent et mencioni." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Rep notificacions quan la gent citi les teves publicacions." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Rep notificacions quan la gent respongui a les teves publicacions." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Rep notificacions quan la gent republiqui les teves publicacions." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Rep notificacions quan la gent republiqui les teves republicacions." @@ -5762,15 +5735,15 @@ msgstr "Rep notificacions quan la gent t'enviï sol·licituds de missatge." msgid "Get notifications when people send you messages." msgstr "Rep notificacions quan la gent t'enviï missatges." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Rep notificacions quan hi hagi activitat als apunts als quals estàs subscrit." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Rep notificacions sobre noves publicacions" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Rep notificacions sobre publicacions i respostes dels comptes que triïs." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Rep notificacions de les noves publicacions de {name}" @@ -5799,11 +5772,11 @@ msgstr "Comença" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "S'ha penjat el GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Posa una cara al teu perfil" @@ -5813,20 +5786,20 @@ msgstr "Glorificació de la violència" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5849,9 @@ msgid "Go live for" msgstr "Emet en directe durant" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "Vés al perfil de {0}" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "S'ha actualitzar el nom del grup de xat" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Paràmetres del xat de grup" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Els xats de grup només poden tenir un màxim de {0, plural, one {# persona} other {# persones}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "El grup està bloquejat" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nom del grup" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "El nom del grup és massa llarg. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {} other {El nombre màxim de caràcters és #.}}" @@ -6077,7 +6051,7 @@ msgstr "Activitats nocives o d'alt risc" msgid "Harming or endangering minors" msgstr "Perjudicar o posar en perill els menors" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Etiqueta" @@ -6098,7 +6072,7 @@ msgstr "Tens un codi?<0>Clica aquí." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Hem encertat la teva ubicació? <0>Toca aquí per actualitzar la teva ubicació amb el GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Tens problemes?" @@ -6114,7 +6088,7 @@ msgstr "Retingut per Bluesky durant 7 dies per evitar abusos, i després elimina msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 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." @@ -6140,7 +6114,7 @@ msgstr "Ep!" msgid "Hidden" msgstr "Amagat" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Amagat per la teva configuració de moderació." @@ -6148,9 +6122,9 @@ msgstr "Amagat per la teva configuració de moderació." msgid "Hidden list" msgstr "Llista amagada" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Llista amagada" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Amaga" @@ -6181,7 +6155,7 @@ msgstr "Amaga les llistes" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "Amaga la contrasenya" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6172,7 @@ msgstr "Amaga la resposta per a tothom" msgid "Hide reply for me" msgstr "Amaga'm la resposta" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Amaga aquesta targeta" @@ -6218,12 +6192,12 @@ msgstr "Vols amagar aquesta resposta?" msgid "Hide translation" msgstr "Amaga la traducció" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Amaga els temes del moment" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Vols amagar els temes del moment?" @@ -6240,7 +6214,7 @@ msgstr "Amaga la llista d'usuaris" msgid "Hide verification badges" msgstr "Amaga les insígnies de verificació" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Amaga el contingut" @@ -6293,8 +6267,8 @@ msgstr "No podem carregar el servei de moderació." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espera! A poc a poc estem donant accés al vídeo i encara estàs a la cua. Torna més tard!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6315,15 +6289,11 @@ msgstr "Proveïdor d'allotjament" #. placeholder {0}: toNiceHostingUrl(state.pdsUrl) #: src/screens/Login/LoginForm.tsx:655 msgid "Hosting provider: {0}" -msgstr "" +msgstr "Proveïdor d'allotjament: {0}" #: src/screens/Login/LoginForm.tsx:657 msgid "Hosting provider: Bluesky" -msgstr "" - -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Candent" +msgstr "Proveïdor d'allotjament: Bluesky" #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" @@ -6409,6 +6379,7 @@ msgstr "Si actualitzes el teu correu, es deshabilitarà la verificació en dos p msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si vols canviar la contrasenya t'enviarem un codi per a verificar que aquest compte és teu." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Si vols restringir qui pot rebre notificacions de l'activitat del teu compte, pots canviar-ho a <0>Configuració → Privacitat i seguretat." @@ -6548,7 +6519,7 @@ msgstr "A l'aplicació, push, tothom" msgid "In-app, push, people you follow" msgstr "A l'aplicació, push, gent a qui segueixes" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Safata d'entrada buida" @@ -6560,6 +6531,7 @@ msgstr "La safata està buida" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Ara només ets tu! Afegeix més persones al teu starter pack cercant a dalt." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Identificador de la tasca: {0}" @@ -6816,8 +6788,8 @@ msgstr "Uneix-te a la conversa" msgid "Journalism" msgstr "Periodisme" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continua editant" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Lloc web de KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etiquetat per {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etiquetat per l'autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquetes" @@ -6850,9 +6822,9 @@ msgstr "Etiquetes afegides" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "Etiquetes aplicades a aquesta publicació" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Les etiquetes són anotacions sobre els usuaris i el contingut. Poden ser utilitzades per a ocultar, advertir i categoritzar la xarxa." @@ -6864,7 +6836,7 @@ msgstr "Etiquetes al teu compte" msgid "Language" msgstr "Idioma" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Configuració d'idioma" @@ -6874,7 +6846,7 @@ msgstr "Configuració d'idioma" msgid "Languages" msgstr "Idiomes" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Més gran" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Última iniciació ara mateix" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "El més recent" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Més informació" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Més informació" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Més informació sobre <0>com utilitzar la cerca avançada." @@ -6937,8 +6909,8 @@ msgstr "Més informació sobre la importació de contactes" msgid "Learn more about self hosting your PDS." msgstr "Més informació sobre com allotjament el teu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Més informació sobre la moderació que s'ha aplicat a aquesta publicació" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Aprèn més sobre aquests canvis i com compartir les teves opinions amb nosaltres llegint la nostra entrada de blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Més informació d'aquesta advertència" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Més informació a la <0>configuració del compte." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Més informació." @@ -6993,8 +6965,8 @@ msgstr "Surt" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Sortint de Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Si surts d'aquesta conversa, es bloquejarà permanentment i no t'hi podràs tornar a unir." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Has abandonat el xat de grup." @@ -7042,7 +7014,7 @@ msgstr "Has abandonat el xat de grup." msgid "left to go." msgstr "queda." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Deixa'm triar" @@ -7057,7 +7029,7 @@ msgstr "Som-hi!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Clar" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Clar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "M'agrada" @@ -7076,7 +7048,7 @@ msgstr "M'agrada" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "M'agrada ({0, plural, one {# m'agrada} other {# m'agrades}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Fes m'agrada a 10 publicacions" @@ -7085,7 +7057,7 @@ msgstr "Fes m'agrada a 10 publicacions" msgid "Like 10 posts to train the Discover feed" msgstr "Fes m'agrada a 10 publicacions per a entrenar el canal Discover" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Fes m'agrada a aquest canal" @@ -7093,8 +7065,8 @@ msgstr "Fes m'agrada a aquest canal" msgid "Like this labeler" msgstr "Fes m'agrada a aquest etiquetador" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Li ha agradat a" @@ -7111,27 +7083,45 @@ msgstr "Li ha agradat a" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Li ha agradat a {0, plural, one {# usuari} other {# usuaris}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Li ha agradat a {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Li ha agradat a {0} i {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Li ha agradat a {likeCount, plural, one {# usuari} other {# usuaris}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "M'agrades" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "M'agrades de les teves republicacions" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "M'agrades a aquesta publicació" @@ -7144,7 +7134,7 @@ msgstr "Lineal" msgid "Link copied to clipboard" msgstr "S'ha copiat l'enllaç en memòria" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Llista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Llista no silenciada" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "EN DIRECTE" msgid "Live event happening now: {0}" msgstr "Esdeveniment en directe que té lloc ara: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Esdeveniment en directe amagat" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Esdeveniment en directe mostrat" @@ -7279,12 +7269,12 @@ msgstr "La funció en directe està en fase beta" msgid "Live link" msgstr "Enllaç de l'emissió en directe" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Carrega'n més" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Carrega més canals suggerits" @@ -7292,8 +7282,8 @@ msgstr "Carrega més canals suggerits" msgid "Load new notifications" msgstr "Carrega noves notificacions" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Tanca aquest xat de grup" msgid "Locked" msgstr "Tancat" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Registre" @@ -7387,7 +7377,7 @@ msgstr "GIFs d'amor" msgid "Make adjustments to email settings for your account" msgstr "Fes ajustaments a la configuració del correu del teu compte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Fes-ne un per mi" @@ -7411,22 +7401,22 @@ msgstr "Gestiona les teves etiquetes i paraules silenciades" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "Manual" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "Marca-ho tot com a llegit" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marca tots els xats com a llegits" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marca com a llegit" msgid "Marked all as read" msgstr "S'ha marcat tot com a llegit" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "S'han marcat tots els xats com a llegits" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "S'han marcat totes les sol·licituds com a llegides" @@ -7456,8 +7446,12 @@ msgstr "S'han marcat totes les sol·licituds com a llegides" msgid "Maybe later" msgstr "Potser més tard" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Jo" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Imatges" @@ -7475,7 +7469,7 @@ msgstr "Imatge desada en un altre dispositiu" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Continguts que poden ser inquietants o inadequats per a alguns públics." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membre eliminat del xat de grup." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "usuaris mencionats" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mencions" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Missatge esborrat" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "No s'ha pogut enviar el missatge." @@ -7563,15 +7557,15 @@ msgstr "El missatge és massa llarg ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Opcions del missatge" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Missatges" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Els missatges d'aquesta persona estan ocults mentre t'estigui bloquejant." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Els missatges d'aquesta persona s'oculten mentre la tinguis bloquejada." @@ -7592,7 +7586,7 @@ msgstr "Enganyós" msgid "Missing media" msgstr "No es troba la imatge" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderació" @@ -7636,7 +7630,7 @@ msgstr "S'ha actualitzat la llista de moderació" msgid "Moderation lists" msgstr "Llistes de moderació" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Llistes de moderació" @@ -7645,7 +7639,7 @@ msgstr "Llistes de moderació" msgid "moderation settings" msgstr "preferències de moderació" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Estats de moderació" @@ -7786,7 +7780,7 @@ msgstr "Silenciat" msgid "Muted accounts" msgstr "Comptes silenciats" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Comptes silenciats" @@ -7867,7 +7861,6 @@ msgstr "Has d'informar d'una infracció dels drets d'autor, una sol·licitud leg msgid "Nevermind, create a handle for me" msgstr "Tant hi fa, crea'm un identificador" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nou" @@ -7893,11 +7886,11 @@ msgstr "Nou {postsCount, plural, one {publicació} other{publicacions}} de {firs #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Xat nou" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Funció nova" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nous seguidors" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nou xat de grup" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nou xat de grup" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nou xat de grup amb:" @@ -7966,13 +7959,13 @@ msgstr "Llista nova" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Sol·licituds de missatges nous" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Missatges nous" @@ -7982,12 +7975,12 @@ msgstr "Missatges nous" msgid "New password" msgstr "Nova contrasenya" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nova publicació" @@ -8011,7 +8004,7 @@ msgstr "Nou starter pack" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "Ets nou a Bluesky? <0>Registra't" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Les respostes més noves primer" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Notícies" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Següent imatge" msgid "Night" msgstr "Nit" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Sense anuncis, sense seguiment invasiu, sense trampes d'interacció. Bluesky respecta el teu temps i la teva atenció." @@ -8067,7 +8060,7 @@ msgstr "Encara no hi ha contrasenyes d'aplicació" #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "De moment no hi ha funcions beta." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8091,7 @@ msgstr "Sense caducitat definida" msgid "No feeds found. Try searching for something else." msgstr "No s'han trobat canals. Intenta cercar una altra cosa." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Encara no hi ha seguidors" @@ -8118,7 +8111,7 @@ msgstr "Sense imatge" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Encara no té cap m'agrada" @@ -8135,7 +8128,7 @@ msgstr "No hi ha llistes" msgid "No longer following {0}" msgstr "Ja no segueixes a {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Encara no hi ha imatges" @@ -8143,7 +8136,7 @@ msgstr "Encara no hi ha imatges" msgid "No messages yet" msgstr "Encara no tens cap missatge" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "S'han acabat els algoritmes plens de brossa i que t'enganxen en una espiral de notícies negatives. Troba canals que funcionin per a tu, no en contra teva." @@ -8184,12 +8177,12 @@ msgstr "Ningú pot enviar missatges" msgid "No posts here" msgstr "No hi ha publicacions aquí" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Encara no hi ha publicacions" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Encara no té cap citació" @@ -8202,7 +8195,7 @@ msgstr "No hi ha GIFs recents encara. Tria'n un per veure'l aquí." msgid "No replies" msgstr "Sense respostes" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Encara no hi ha respostes" @@ -8217,13 +8210,13 @@ msgstr "Cap resultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Cap resultat" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "No s'han trobat resultats per \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "No s'han trobat resultats" msgid "No results found for \"{query}\"" msgstr "No s'han trobat resultats per \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "No s'ha trobat cap resultat per a «<0>{query}» amb els filtres de cerca avançada aplicats." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "No s'han trobat resultats per a “<0>{query}”." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "No s'ha trobat cap resultat per a la teva consulta amb els filtres de cerca avançada aplicats." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Cap resultat." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "No hi ha Starter Packs encara" @@ -8265,7 +8258,7 @@ msgstr "No, gràcies" msgid "No translation received from your device." msgstr "No s'ha rebut cap traducció del vostre dispositiu." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Encara no hi ha publicacions de vídeo" @@ -8278,7 +8271,7 @@ msgstr "Ningú" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "A ningú encara li ha agradat això. Potser hauries de ser el primer!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ningú ha citat això encara. Potser hauries de ser el primer!" @@ -8298,6 +8291,10 @@ msgstr "Imatges íntimes no consentides" msgid "Non-sexual Nudity" msgstr "Nuesa no sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Cap" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "No disponible en aquesta plataforma." msgid "Not followed by anyone you’re following" msgstr "No el segueix ningú a qui segueixis" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "No s'ha trobat" @@ -8333,7 +8330,7 @@ msgstr "Nota sobre compartir" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky és una xarxa oberta i pública. Aquesta configuració tan sols limita el teu contingut a l'aplicació de Bluesky i a la web, altres aplicacions poden no respectar-ho. El teu contingut pot ser mostrat a usuaris no connectats per altres aplicacions i webs." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: Aquesta publicació només és visible per als usuaris que han iniciat la sessió." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Encara no hi ha res desat" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Configuració de les notificacions" @@ -8353,11 +8350,12 @@ msgstr "Configuració de les notificacions" msgid "Notification sounds" msgstr "Sons de les notificacions" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Ostres!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "D'acord" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "D'acord" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Restableix la incorporació" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Un dels destinataris seleccionats no permet xats grupals." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Un dels destinataris seleccionats t'ha bloquejat i no se li pot enviar cap missatge." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Falta el text alternatiu a un o més GIFs." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Falta el text alternatiu a una o més imatges." @@ -8454,11 +8454,11 @@ msgstr "Un o més dels fitxers seleccionats no són compatibles." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Un o més dels fitxers seleccionats són massa grans. La mida màxima és de {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Una o més publicacions són massa llargues per desar-les com a esborrany. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {El nombre màxim de caràcters és de # caràcter.} other {El nombre màxim de caràcters és de # caràcters.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Falta el text alternatiu a un o més videos." @@ -8471,7 +8471,7 @@ msgstr "Només {0} poden respondre." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Només s'han afegit {0} de {1} {2, plural, one {imatge} other {imatges}}; el límit és {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "Només publicacions amb vídeos" msgid "Only replies" msgstr "Només respostes" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Només s'admeten fitxers WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Vaja, aquest perfil no existeix. Prova d'escanejar-ne un altre." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ostres!" @@ -8544,7 +8544,7 @@ msgstr "Ostres!" msgid "Open advanced search options" msgstr "Obre les opcions de cerca avançada" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Obre el creador d'avatars" @@ -8570,21 +8570,22 @@ msgstr "Obre les opcions de les converses" msgid "Open draft" msgstr "Obre l'esborrany" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Obre el menú del calaix" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Obre el selector d'emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Obre la pantalla d'informació del canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Obre el menú de les opcions del canal" @@ -8627,7 +8628,7 @@ msgstr "Obre la pàgina de depuració de moderació" msgid "Open muted words and tags settings" msgstr "Obre la configuració de les paraules i etiquetes silenciades" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Obre el pack" @@ -8681,7 +8682,7 @@ msgstr "Obre un diàleg per afegir un avís de contingut a la teva publicació" #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "Obre un diàleg per canviar el proveïdor d'allotjament amb el qual inicieu sessió" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8700,7 @@ msgstr "Obre detalls addicionals per una entrada de depuració" msgid "Opens alt text dialog" msgstr "Obre el diàleg de text alternatiu" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Obre la càmera del dispositiu" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Obre el procés per a crear un nou compte de Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Obre el procés per a iniciar sessió a un compte existent de Bluesky" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Contrasenya actualitzada!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Posa en pausa" @@ -8925,12 +8926,12 @@ msgstr "Posa en pausa" msgid "Pause GIF" msgstr "Pausa el GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Posa en pausa el vídeo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Gent" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Les persones que segueixen {ownerName} poden sol·licitar unir-s'hi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persones seguides per @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persones seguint a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Gent que segueixo" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Les persones que segueixo poden sol·licitar unir-se" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Persones que segueixes" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Imatges destinades a adults." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixa el canal" @@ -9034,7 +9035,7 @@ msgstr "Fixa el canal" msgid "Pin to home" msgstr "Fixa a l'inici" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixa a l'Inici" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Fixat" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} fixat a l'inici" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Fixat als teus canals" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reprodueix" @@ -9076,8 +9077,8 @@ msgstr "Reprodueix {0}" msgid "Play GIF" msgstr "Reprodueix el GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reprodueix el vídeo" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Escriu el teu missatge a continuació:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Política" @@ -9269,7 +9270,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publica" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Publica" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Publica una foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Publica un vídeo" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publica-ho tot" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Publica de totes maneres" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Publicació bloquejada" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Publicació per @{0}" @@ -9340,7 +9341,7 @@ msgstr "Publicació amagada per tu" msgid "Post interaction settings" msgstr "Configuració de les interaccions de la publicació" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Configuració de les interaccions de la publicació" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Publicació fixada" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "S'ha desat la publicació" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Publicació sense fixar" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicacions" @@ -9398,6 +9396,10 @@ msgstr "Les publicacions es poden silenciar segons el seu text, les seves etique msgid "Posts hidden" msgstr "Publicacions amagades" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Publicacions, Respostes" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Enllaç potencialment enganyós" @@ -9449,20 +9451,21 @@ msgstr "Privacitat" msgid "Privacy and security" msgstr "Privadesa i seguretat" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privadesa i seguretat" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Configuració de privadesa i seguretat" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Política de privacitat" msgid "Privacy violation of a minor" msgstr "Violació de la privadesa d'un menor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Processant el GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Processant el vídeo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Llistes públiques i compartibles d'usuaris per silenciar o bloquejar de manera massiva." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publica la publicació" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publica les publicacions" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publica les respostes" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publica la resposta" @@ -9599,12 +9602,12 @@ msgstr "S'han deshabilitat les citacions" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citacions" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citacions d'aquesta publicació" @@ -9647,7 +9650,7 @@ msgstr "Torna a activar el teu compte" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Llegeix {0, plural, one {# resposta més} other {# respostes més}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Consulta com utilitzar els filtres de cerca avançats" @@ -9657,11 +9660,11 @@ msgstr "Consulta com utilitzar els filtres de cerca avançats" msgid "Read blog post" msgstr "Llegeix la publicació del blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Mostra'n menys" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Mostra'n més" @@ -9687,11 +9690,11 @@ msgstr "Llegeix la política de privacitat de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Llegeix els termes de servei de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Converses reals." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Persones reals." @@ -9721,10 +9724,6 @@ msgstr "Cerques recents" msgid "Recently used" msgstr "Utilitzat recentment" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomanats" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Torna a connectar" @@ -9748,7 +9747,7 @@ msgstr "Rebutja la sol·licitud de xat" msgid "Reject join request" msgstr "Rebutja la sol·licitud per a unir-te" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Carrega les converses de nou" @@ -9766,7 +9765,7 @@ msgstr "Carrega les converses de nou" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Elimina" @@ -9792,8 +9791,8 @@ msgstr "Vols eliminar {displayName}?" msgid "Remove {q}" msgstr "Elimina {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Elimina el compte" @@ -9845,15 +9844,15 @@ msgstr "Elimina el filtre" msgid "Remove from chat" msgstr "Elimina del xat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Elimina dels meus canals" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Vols eliminar-lo de l'accés ràpid?" @@ -9862,7 +9861,7 @@ msgstr "Vols eliminar-lo de l'accés ràpid?" msgid "Remove from saved feeds" msgstr "Elimina'l dels canals desats" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Elimina de les publicacions desades" @@ -9880,8 +9879,8 @@ msgstr "Elimina la imatge" msgid "Remove live status" msgstr "Elimina l'estat en directe" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Elimina el membre" @@ -9943,7 +9942,7 @@ msgstr "Elimina de la llista" msgid "Removed from saved feeds" msgstr "Eliminat dels canals desats" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "S'ha eliminat de les publicacions desades" @@ -9952,7 +9951,7 @@ msgstr "S'ha eliminat de les publicacions desades" msgid "Removed from starter pack" msgstr "Eliminat de l'starter pack" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "T'ha respost" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Missatge respost de {senderName}, toca per desplaçar-t'hi" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "El missatge respost es va enviar abans que t'unissis" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Missatge respost, toca per desplaçar-t'hi" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respostes" @@ -10037,7 +10037,7 @@ msgstr "Les respostes a aquesta publicació estan deshabilitades." msgid "Reply" msgstr "Respon" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Respon" @@ -10098,8 +10098,8 @@ msgstr "Informa d'aquesta conversa" msgid "Report dialog" msgstr "Diàleg de l'informe" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Informa del canal" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republicat per tu" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Republicacions" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicacions d'aquesta publicació" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Republicacions de les teves republicacions" @@ -10253,7 +10253,7 @@ msgstr "Sol·licitat" msgid "Requests" msgstr "Sol·licituds" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10333,7 +10333,7 @@ msgstr "Restableix la contrasenya" #: src/screens/Login/LoginForm.tsx:422 msgid "Reset your password by sending a code to your email" -msgstr "" +msgstr "Restableix la contrasenya enviant un codi al teu correu electrònic" #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 @@ -10358,10 +10358,10 @@ msgstr "Torna a intentar l'última acció, que ha donat error" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Torna a la pàgina d'inici" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Torna a la pàgina anterior" @@ -10406,7 +10406,7 @@ msgstr "Ves al pas anterior" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "Mostra la contrasenya" #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "Desa la data de naixement" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Desa els canvis" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Vols desar els canvis?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Desa l'esborrany" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Vols desar l'esborrany?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Desa el codi QR" msgid "Save these options for next time" msgstr "Desa aquestes opcions per a la propera vegada" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Desa-ho als meus canals" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Canals desats" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Publicacions desades" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "S'ha desat als teus canals." @@ -10520,8 +10520,8 @@ msgstr "S'ha desat als teus canals." msgid "Say hello!" msgstr "Digues hola!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Saluda a algú" @@ -10535,7 +10535,7 @@ msgstr "Escaneja" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Escaneja el codi QR" @@ -10543,15 +10543,15 @@ msgstr "Escaneja el codi QR" msgid "Science" msgstr "Ciència" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Desplaça't a l'esquerra" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Desplaça't a la dreta" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Desplaça't fins al missatge al qual es respon" @@ -10564,8 +10564,8 @@ msgstr "Desplaça't cap a dalt" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cerca" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cerca a les publicacions de @{0}" @@ -10606,17 +10606,17 @@ msgstr "Cerca «{searchText}»" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "Cerca per {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "Cerca canals que vulgueu suggerir als altres." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Cerca més comptes" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Cerca més canals" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cerca GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "La cerca no està disponible actualment amb la sessió tancada" @@ -10709,6 +10709,7 @@ msgstr "Veure les feines a Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Veure més" @@ -10716,8 +10717,12 @@ msgstr "Veure més" msgid "See more suggested profiles" msgstr "Veure més perfils suggerits" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "Mostra més temes del moment" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Veure comptes suggerits" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Cerca el control lliscant. Utilitza les tecles de fletxa per cercar cap endavant i cap enrere, i l'espai per reproduir/pausar" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Selecciona la categoria \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Selecciona {0}" msgid "Select {langName}" msgstr "Selecciona {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecciona un color" @@ -10764,11 +10769,11 @@ msgstr "Selecciona el compte" msgid "Select an app language" msgstr "Selecciona un idioma de l'aplicació" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecciona un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecciona un emoji" @@ -10780,12 +10785,13 @@ msgstr "Selecciona una opció" msgid "Select app language" msgstr "Selecciona l'idioma de l'aplicació" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Tria el fitxer de subtítols (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Selecciona el xat \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Selecciona GIF" msgid "Select GIF \"{0}\"" msgstr "Selecciona GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Selecciona els membres del grup del xat" @@ -10864,7 +10870,7 @@ msgstr "Selecciona l'idioma principal" msgid "Select telephone code" msgstr "Tria el codi de telèfon" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecciona el {emojiName} emoji com al teu avatar" @@ -10945,7 +10951,8 @@ msgstr "Envia el missatge" msgid "Send post to {name}" msgstr "Envia la publicació a {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Envia el missatge a..." @@ -10963,12 +10970,12 @@ msgstr "Envia el missatge des del teu telèfon" msgid "Send verification email" msgstr "Envia un correu de verificació" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Envia per missatge directe" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Envia per xat" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "Estableix la teva data de naixement a continuació i et permetrem tornar #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "defineix manualment el teu proveïdor d'allotjament" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "Configura el teu proveïdor d'allotjament manualment" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "Estableix un correu per a restablir la contrasenya" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Configuració" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Configuració de l'activitat d'altres persones" @@ -11036,49 +11043,49 @@ msgstr "Configuració de l'activitat d'altres persones" msgid "Settings for allowing others to be notified of your posts" msgstr "Configuració per permetre que altres persones rebin notificacions de les teves publicacions" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Configuració de les notificacions de \"m'agrada\"" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Configuració de les notificacions de mencions" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Configuració de les notificacions de nou seguidor" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Configuració de les notificacions de tota la resta" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Configuració de les notificacions de m'agrades a les teves republicacions" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Configuració de les notificacions per a noves sol·licituds de missatge" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Configuració de les notificacions de missatges nous" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Configuració de les notificacions de republicacions de les teves republicacions" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Configuració de les notificacions de citacions" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Configuració de les notificacions de respostes" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Configuració de les notificacions de republicacions" @@ -11109,14 +11116,14 @@ msgstr "Comparteix" #: src/ageAssurance/useVerificationFlow.ts:62 msgid "Share age range" -msgstr "" +msgstr "Comparteix el rang d'edat" #: src/view/com/profile/ProfileMenu.tsx:549 msgid "Share anyway" msgstr "Comparteix de totes maneres" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Comparteix el DID de l'autor" @@ -11125,9 +11132,9 @@ msgstr "Comparteix el DID de l'autor" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Comparteix comentaris" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Diàleg de compartició de l'enllaç" msgid "Share my profile" msgstr "Comparteix el meu perfil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Comparteix l'URI at:// de la publicació" @@ -11169,12 +11176,12 @@ msgstr "Comparteix el perfil" msgid "Share QR code" msgstr "Comparteix el codi QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Comparteix aquest canal" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Comparteix aquesta cerca" @@ -11186,8 +11193,8 @@ msgstr "Comparteix aquest starter pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparteix aquest starter pack i ajuda la gent de la teva comunitat a unir-se a Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,23 +11210,23 @@ msgstr "Comparteix els teus contactes per trobar amics" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughts…" -msgstr "" +msgstr "Comparteix el que penses…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Comprovador de preferències compartides" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 msgid "Sharing your age range reveals only the range associated with your Apple Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "Compartir el teu rang d'edat només revela el rang associat al teu Compte d'Apple, per exemple, que tens com a mínim 18 anys. <0>La teva edat exacta i la teva data de naixement mai no es comparteixen, i aquestes dades mai no surten d'aquest dispositiu. Per tant, només permet l'accés en aquest dispositiu. Com a alternativa, <1>pots utilitzar el nostre soci de confiança, KWS, per completar la teva verificació i habilitar l'accés a totes les plataformes." #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "Compartir el teu interval d'edat només revela l'interval associat al teu compte de Google, per exemple, que tens com a mínim 18 anys. <0>La teva edat exacta i la data de naixement no es comparteixen mai, i aquestes dades no surten mai d'aquest dispositiu. Per tant, només permet l'accés en aquest dispositiu. Com a alternativa, <1>pots utilitzar el nostre soci de confiança, KWS, per completar la verificació i habilitar l'accés a totes les plataformes." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Mostra" msgid "Show alt text" msgstr "Mostra el text alternatiu" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Mostra igualment" @@ -11274,9 +11281,9 @@ msgstr "Mostra la llista de totes maneres" msgid "Show lists of users to select from" msgstr "Mostra llistes d'usuaris per seleccionar" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Mostra més" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Mostra'n més" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Mostra l'advertiment i filtra-ho dels canals" msgid "Show when you’re live" msgstr "Mostra quan estàs en directe" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Mostra informació sobre quan es va crear aquesta publicació" @@ -11341,15 +11348,15 @@ msgstr "Mostra informació sobre quan es va crear aquesta publicació" msgid "Shows other accounts you can switch to" msgstr "Mostra altres comptes als quals pots canviar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Mostra el contingut" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Mostra el contingut" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "Inicia sessió com a {0}" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in as…" -msgstr "" +msgstr "Inicia la sessió com a…" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "Tancar la sessió?" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "Registra't" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Es requereix iniciar sessió" @@ -11469,7 +11476,7 @@ msgstr "Salta aquest pas" msgid "Skip contact sharing and continue to the app" msgstr "Omet la compartició de contactes i continua a l'aplicació" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Vols ometre les publicacions buides?" @@ -11487,7 +11494,7 @@ msgstr "Salta al pas següent" msgid "slide" msgstr "llisca" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Més petit" @@ -11499,14 +11506,14 @@ msgstr "Posposa el recordatori" msgid "So many thoughts, you should post one" msgstr "Tantes idees, n'hauries de publicar alguna" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Xarxes socials que tu controles." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Prova social a les publicacions" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Algú ha deixat el grup" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Algú ha reaccionat amb {0}" @@ -11554,7 +11561,7 @@ msgstr "Algú ha reaccionat amb {0}" msgid "Someone reacted {0} to {target}" msgstr "Algú ha reaccionat amb {0} a {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Algú ha respost" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Alguna cosa ha fallat, torna-ho a provar" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Alguna cosa ha fallat, torna-ho a provar d'aquí una estona." msgid "Something went wrong. Please try again." msgstr "Alguna cosa ha fallat, torna-ho a provar." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Alguna cosa no va a l'hora? Fes-nos-ho saber." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Correu brossa o altres comportaments no autèntics o enganys" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Esports" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Detecta publicacions que han agradat als teus amics i persones que segueixes." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Enceta una conversa i apareixerà aquí." msgid "Start a group chat" msgstr "Inicia un xat de grup" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Comença un nou xat" @@ -11682,17 +11689,17 @@ msgstr "Comença a afegir gent" msgid "Start adding people!" msgstr "Comença a afegir gent" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Inicia un xat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Comença un xat amb {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Starter pack" @@ -11715,12 +11722,16 @@ msgstr "Starter pack fet per tu" msgid "Starter pack is invalid" msgstr "Aquest starter pack és invàlid" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Starter packs" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Starter packs" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Els starter packs et permeten compartir els teus canals i persones preferides amb els teus amics." @@ -11728,7 +11739,7 @@ msgstr "Els starter packs et permeten compartir els teus canals i persones prefe msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Els starter packs et permeten compartir els teus canals i persones preferides amb els teus amics." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Els Starter Packs et permeten compartir els teus canals i persones preferides amb els teus amics." @@ -11742,7 +11753,7 @@ msgstr "Pàgina d'estat" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Pas {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "L'emmagatzematge s'ha esborrat, cal que reinicieu l'aplicació ara." msgid "Stored as part of a secure code for matching with others" msgstr "Emmagatzemat com a part d'un codi segur per a la coincidència amb altres persones" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Historial" @@ -11787,7 +11798,7 @@ msgstr "Envia l'apel·lació" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Envia comentaris" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Subscriu-te a {publicationTitle} a {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscriu-te a @{0} per a utilitzar aquestes etiquetes:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Verificat correctament" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Suggerit" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Comptes suggerits" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Ocàs" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Encara no s'ha activat la compatibilitat amb aquesta funció al teu país. Torna-ho a comprovar més tard." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Els comptes suspesos no poden participar en un xat de grup." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Els comptes suspesos no poden participar al xat." @@ -11921,8 +11934,8 @@ msgstr "Canvia a {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Fes la conversa privada." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Toca a continuació per a permetre que Bluesky accedeixi a la teva ubicació GPS. Farem servir aquestes dades per a determinar amb més precisió el contingut i les funcions disponibles a la teva regió." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Toca per a més detalls" @@ -11976,7 +11989,7 @@ msgstr "Toca per a tancar el menú contextual" msgid "Tap to copy this invite link" msgstr "Toca per copiar aquest enllaç d'invitació" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toca per a ignorar" @@ -12003,7 +12016,7 @@ msgstr "Toca per eliminar la teva reacció {0}" msgid "Tap to request access to join this group chat" msgstr "Toca per sol·licitar l'accés a aquest xat de grup" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Toca per tornar-ho a provar" @@ -12016,7 +12029,7 @@ msgstr "Toca per mostrar {0} reaccions" msgid "Tap to show all reactions" msgstr "Toca per mostrar totes les reaccions" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Toca per veure les reaccions" @@ -12032,7 +12045,7 @@ msgstr "Tasca completa - 10 seguint!" msgid "Task complete - 10 likes!" msgstr "Tasca completa - 10 m'agrades!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Ensenya el que t'agrada al nostre algorisme" @@ -12060,7 +12073,7 @@ msgstr "Condicions" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Gràcies pels teus comentaris! S'han enviat a l'operador del canal." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Gràcies pels teus comentaris!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "No s'ha pogut trobar aquest starter pack." msgid "That username is already taken" msgstr "Aquest nom d'usuari ja està agafat" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Això és tot, amics!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Això és tot!" @@ -12171,7 +12184,7 @@ msgstr "S'ha canviat el canal per Discover." #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "Les següents etiquetes s'han aplicat a aquesta publicació." #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "Sembla que el servidor està experimentant problemes. Torneu-ho a provar msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "L'starter pack que estàs provant de veure no és vàlid. En lloc d'això, podeu suprimir-lo." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "El tema del menú contextual" @@ -12238,7 +12251,7 @@ msgstr "El codi de verificació que has proporcionat no és vàlid. Assegura't q msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "El proveïdor de verificació no ha pogut enviar un codi al teu número de telèfon. Comprova'l i torna-ho a provar." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "No s'han pogut carregar els GIFs. Comprova la teva connexió i torna-ho msgid "There was a problem with your internet connection, please try again" msgstr "Hi ha hagut un problema amb la connexió a Internet. Torna-ho a intentar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Hi ha hagut un problema amb la connexió a Internet. Torna-ho a intentar msgid "There was an issue contacting the server" msgstr "Hi ha hagut un problema per a contactar amb el servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "S'ha produït un problema en contactar amb el servidor, comprova la teva connexió a Internet i torna-ho a provar." @@ -12283,8 +12296,8 @@ msgstr "S'ha produït un problema en contactar amb el servidor, comprova la teva msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar." @@ -12309,7 +12322,7 @@ msgstr "Hi ha hagut un problema en recuperar la informació del teu servei" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "S'ha produït un problema en eliminar aquest canal. Comprova la teva connexió a Internet i torna-ho a provar." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Aquests paràmetres només s'apliquen al canal Seguint." msgid "These URLs" msgstr "Aquestes URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Aquest xat és seu" @@ -12392,7 +12405,7 @@ msgstr "Aquest xat és seu" msgid "They won’t be able to rejoin unless you invite them again." msgstr "No s'hi podran tornar a unir tret que els hi tornis a convidar." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Aquesta {screenDescription} ha estat etiquetada:" @@ -12408,7 +12421,7 @@ msgstr "Aquest compte ha estat marcat com a automatitzat pel seu propietari." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Aquest compte té una o més verificacions, però actualment no està verificat." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Aquest compte ha sol·licitat que els usuaris estiguin registrats per a veure el seu perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Aquest canal està buit! Necessites seguir més usuaris o modificar la teva configuració d'idiomes." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Aquest canal és buit." @@ -12554,7 +12567,7 @@ msgstr "Aquest grup està bloquejat per una acció de moderació sobre el propie msgid "This handle is reserved. Please try a different one." msgstr "Aquest identificador està reservat. Si us plau, provi un altre." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "No s'ha pogut utilitzar aquesta imatge. Prova un format diferent com ara .jpg o .png." @@ -12572,7 +12585,7 @@ msgstr "Aquest enllaç de convit no és vàlid" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 msgid "This is just a one-time security check, since we haven't seen this account on this device before." -msgstr "" +msgstr "Es tracta d'una comprovació de seguretat única, ja que no havíem vist aquest compte en aquest dispositiu abans." #: src/features/liveNow/components/EditLiveDialog.tsx:171 #: src/features/liveNow/components/GoLiveDialog.tsx:161 @@ -12594,9 +12607,9 @@ msgstr "Aquesta etiqueta ha estat aplicada per tu." #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "Aquesta etiqueta s'ha aplicat a tot el compte d'usuari i apareixerà en totes les publicacions." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Aquest etiquetador no ha declarat quines etiquetes publica i pot ser que no estigui actiu." @@ -12621,13 +12634,13 @@ msgstr "Aquesta llista està buida." msgid "This message is hidden" msgstr "Aquest missatge està ocult" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Aquest missatge està ocult perquè aquest usuari t'està bloquejant." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Aquest missatge està ocult perquè heu blocat aquest usuari." @@ -12641,7 +12654,7 @@ msgstr "Aquesta persona t'ha bloquejat" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Aquesta publicació afirma haver estat creada el <0>{0}, però va ser vista per primera vegada per Bluesky el <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Aquesta publicació afirma haver estat creada el <0>{0}, però va se msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Aquesta publicació té un tipus de threadgate desconegut. És possible que la teva aplicació estigui obsoleta." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Aquesta publicació només és visible per als usuaris que han iniciat la sessió." @@ -12661,7 +12674,7 @@ msgstr "L'autor ha eliminat la publicació" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Aquesta publicació s'amagarà dels canals i fils. Això no es pot desfer." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "L'autor d'aquesta publicació ha deshabilitat les citacions." @@ -12698,11 +12711,12 @@ msgstr "Això només hauria de tardar uns minuts." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Aquest usuari no té un nom de visualització i, per tant, no es pot verificar." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Aquest usuari no té cap seguidor." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Aquest usuari t'ha bloquejat i no se li pot enviar missatges." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Aquest usuari t'ha bloquejat. No pots veure les seves publicacions." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Aquest usuari ha desactivat el xat i no se li poden enviar missatges." @@ -12733,17 +12748,17 @@ msgstr "Aquest usuari està inclòs a la llista <0>{0} que has silenciat." msgid "This user is new here. Press for more info about when they joined." msgstr "Aquest usuari és nou aquí. Prem per obtenir més informació sobre quan es van unir." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Aquest usuari no segueix a ningú." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Aquest vídeo no es pot reproduir al teu dispositiu. És possible que al teu navegador o sistema li faltin els còdecs de vídeo necessaris (H.264/AAC)." #: src/view/com/composer/videos/VideoPreview.web.tsx:65 msgid "This video can’t be previewed in your browser. It will still be uploaded." -msgstr "" +msgstr "Aquest vídeo no es pot previsualitzar al teu navegador. Tot i així, es carregarà." #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 msgid "This will create a new list with the same name, description, and members as this starter pack." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Això eliminarà irreversiblement el teu compte de Bluesky <0>{currentHandle} i totes les dades associades. Tingues en compte que això afectarà qualsevol altre servei del <1>protocol AT que utilitzis amb aquest compte." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Això eliminarà @{0} de la llista d'accés ràpid." @@ -12786,7 +12801,7 @@ msgstr "Preferències dels fils de debat" msgid "Threaded" msgstr "En mode fils de debat" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferències dels fils de debat" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Massa contactes: has superat el nombre de contactes que pots importar per trobar els teus amics" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Superior" @@ -12858,7 +12873,7 @@ msgstr "Superior" msgid "Top replies first" msgstr "Primer les respostes principals" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tema" @@ -12893,7 +12908,9 @@ msgstr "La traducció al mateix idioma no està disponible al teu dispositiu." msgid "Tree view" msgstr "Vista d'arbre" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendència" @@ -12902,7 +12919,7 @@ msgstr "Tendència" msgid "Trending GIFs" msgstr "GIFs de moda" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opcions dels temes del moment" @@ -12918,11 +12935,11 @@ msgstr "Trolejar" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La confiança sorgeix de les relacions, les comunitats i el context compartit, de manera que també estem habilitant <0>verificadors de confiança: organitzacions que poden emetre directament la verificació." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Prova un terme de cerca diferent o elimina alguns filtres." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Prova un terme de cerca diferent." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "No s'han pogut obtenir les sol·licituds d'unió." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "No s'ha pogut trobar un destinatari seleccionat." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "No s'ha pogut trobar el destinatari seleccionat." @@ -13024,12 +13043,12 @@ msgstr "No disponible" msgid "Unavailable feed information" msgstr "Informació del canal no disponible" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Vols desbloquejar el compte?" msgid "Unblock list" msgstr "Desbloqueja la llista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Deixa de seguir a {0}" msgid "Unfollow account" msgstr "Deixa de seguir el compte" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Deixa de seguir l'usuari" @@ -13132,7 +13151,7 @@ msgstr "Contingut per a adults sense etiquetar" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Contingut per a adults sense etiquetar, abusiu o no consentit" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Desfés el m'agrada" @@ -13192,7 +13211,7 @@ msgstr "Deixa de silenciar aquest xat de grup" msgid "Unmute thread" msgstr "Deixa de silenciar el fil de debat" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Deixa de silenciar el vídeo" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Deixa de fixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Deixa de fixar el canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Deixa de fixar a l'inici" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Desancora la llista de moderació" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} ja no està fixat a l'inici" @@ -13258,11 +13277,11 @@ msgstr "Dona't de baixa d'aquest etiquetador" msgid "Unsubscribed from list" msgstr "T'has dona't de baixa de la llista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Contingut del porta-retalls no compatible" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Tipus de vídeo no compatible: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "No s'ha pogut actualitzar la visibilitat de la resposta" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Enlloc d'això, penja una foto" @@ -13355,7 +13374,7 @@ msgstr "Puja dels Fitxers" msgid "Upload from Library" msgstr "Puja de la biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "S'està penjant el GIF..." @@ -13369,7 +13388,7 @@ msgstr "S'estan penjant imatges..." msgid "Uploading link thumbnail..." msgstr "S'està penjant la miniatura de l'enllaç..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "S'està penjant el vídeo..." @@ -13408,7 +13427,7 @@ msgstr "Utilitza-ho per a iniciar sessió a l'altra aplicació, juntament amb el msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Fes servir l'adreça electrònica del teu compte o una altra adreça electrònica real que controlis, en cas que KWS o Bluesky necessitin contactar amb tu." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "usuari" @@ -13482,7 +13501,7 @@ msgstr "El nom d'usuari només pot tenir lletres (a-z), nombres i guionets" #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "Nom d'usuari o correu" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13529,7 @@ msgstr "La verificació ha fallat, torna-ho a provar." msgid "Verification settings" msgstr "Configuració de verificació" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Configuració de verificació" @@ -13618,7 +13637,7 @@ msgstr "Vídeo" msgid "Video failed to process" msgstr "El vídeo no s'ha pogut processar" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Canal de vídeos" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Vídeo de: {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Vídeo de {0}. Toca per reproduir o pausar el vídeo" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videojocs" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Vídeo en pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Vídeo en reproducció" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "No s'ha trobat el vídeo." @@ -13653,7 +13672,7 @@ msgstr "No s'ha trobat el vídeo." msgid "Video settings" msgstr "Configuració de vídeo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Vídeo penjat" @@ -13662,17 +13681,17 @@ msgstr "Vídeo penjat" msgid "Video: {0}" msgstr "Vídeo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vídeos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Els vídeos han de tenir una durada inferior a 3 minuts." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Veure" @@ -13691,9 +13710,9 @@ msgstr "Veure l'avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Veure el perfil de {0}" @@ -13724,13 +13743,13 @@ msgstr "Veure l'entrada al blog per a més detalls" msgid "View debug entry" msgstr "Veure el registre de depuració" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Veure els detalls" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Veure el fil de debat complet" @@ -13761,7 +13780,7 @@ msgstr "Mostra'n més" msgid "View more trending videos" msgstr "Veure més vídeos del moment" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Veure la publicació" @@ -13798,11 +13817,11 @@ msgstr "Mostra l'enllaç d'invitació per a aquest xat de grup" msgid "View the labeling service provided by @{0}" msgstr "Veure el servei d'etiquetatge proporcionat per @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Veure les verificacions d'aquest usuari" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Veure els usuaris a qui els agrada aquest canal" @@ -13831,7 +13850,7 @@ msgstr "Veure les teves llistes de moderació" msgid "View your muted accounts" msgstr "Veure els teus comptes silenciats" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Veure les teves verificacions" @@ -13898,7 +13917,7 @@ msgstr "No hem pogut trobar aquesta llista. Probablement s'ha suprimit." #: src/screens/Login/LoginForm.tsx:348 msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." -msgstr "" +msgstr "No hem pogut trobar cap compte amb aquest nom d'usuari. Comprova que l'hagis escrit correctament, o <0>configura el proveïdor d'allotjament manualment." #: src/screens/Hashtag.tsx:260 msgid "We couldn't find any results for that tag." @@ -13922,7 +13941,7 @@ msgstr "No hem pogut carregar la configuració d'aquesta conversa" #: src/screens/Login/LoginForm.tsx:482 msgid "We couldn’t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." -msgstr "" +msgstr "No hem pogut verificar el teu proveïdor d'allotjament. Comprova la connexió a Internet o <0>configura el teu proveïdor d'allotjament manualment." #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -14001,7 +14020,7 @@ msgstr "T'avisarem quan trobem els teus amics." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "We’d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Ens encantaria conèixer la teva experiència provant les funcions beta!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Tenim problemes de xarxa, torna-ho a provar" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Tenim problemes de xarxa, torna-ho a provar" @@ -14043,7 +14062,7 @@ msgstr "Tenim problemes de xarxa, torna-ho a provar" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Estem introduint una nova capa de verificació a Bluesky: una marca de verificació fàcil de veure." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Estem molt contents que t'uneixis a nosaltres!" @@ -14064,13 +14083,15 @@ msgstr "Ho sentim, però no hem pogut resoldre aquesta llista. Si això continua 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/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." -msgstr "" +msgstr "Ho sentim, però no s'ha pogut completar la cerca." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 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." @@ -14078,7 +14099,7 @@ msgstr "Ens sap greu, però la teva cerca no s'ha pogut fer. Prova-ho d'aquí un msgid "We're sorry, you cannot access this screen at this time." msgstr "Ho sentim, no pots accedir a aquesta pantalla en aquest moment." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ho sentim! La publicació a la qual estàs responent s'ha suprimit." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "què hi ha de nou" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Què hi ha de nou" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Qui pot verrificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Vaja!" @@ -14220,21 +14241,21 @@ msgstr "Vols bloquejar aquest usuari i/o sortir d'aquesta conversa?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Vols desar això com a esborrany abans de veure la resta dels teus esborranys?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Vols desar-ho com a esborrany per editar-ho més tard?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Escriu una publicació" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Escriu una publicació" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escriu la teva resposta" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Estàs accedint a Bluesky des d'una regió que legalment ens obliga a verificar la teva edat abans de permetre't accedir a l'aplicació." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Estàs bloquejant {0}" @@ -14342,7 +14363,7 @@ msgstr "Ja no estàs emetent en directe" msgid "You are not allowed to upload videos." msgstr "No t'és permès pujar vídeos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Encara no segueixes a ningú" @@ -14362,7 +14383,7 @@ msgstr "Estàs verificat. Perdràs el teu estat de verificació si canvies el no msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Estàs verificat. Perdràs el teu estat de verificació si canvies el teu identificador. <0>Més informació." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Pots ajustar els teus interessos en qualsevol moment a la configuració de \"Contingut i multimèdia\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Ara pots iniciar sessió amb la nova contrasenya." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Només pots afegir fins a {MAX_GALLERY_IMAGES, plural, one {# imatge} other {# imatges}} per publicació" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Només pots desar esborranys de fins a 1000 caràcters." @@ -14439,9 +14460,9 @@ msgstr "Pots llegir l'historial del xat, però no pots enviar missatges nous." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Pots seleccionar fins a {MAX_GALLERY_IMAGES, plural, one {# imatge} other {# imatges}} en total." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Pots actualitzar-ho més tard des de la teva configuració." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "No pots afegir més de {EMOJI_REACTION_LIMIT, plural, one {# reacció amb emoji} other {# reaccions amb emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Encara no pots crear un xat de grup." @@ -14555,7 +14577,7 @@ msgstr "Has verificat correctament el teu correu. Pots tancar aquest diàleg." msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Has arribat temporalment al límit de pujades de vídeos. Torna-ho a provar més tard." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Tens canvis sense desar en aquest esborrany. Vols desar-los?" @@ -14563,7 +14585,7 @@ msgstr "Tens canvis sense desar en aquest esborrany. Vols desar-los?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Tens canvis sense desar. Vols desar-los abans de veure els teus esborranys?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Encara no has creat cap starter pack!" @@ -14614,7 +14636,7 @@ msgstr "Només pots afegir un total de {STARTER_PACK_MAX_SIZE, plural, one {}oth msgid "You may only add up to 3 feeds" msgstr "Només pots afegir 3 canals" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Has de ser el propietari del xat per a eliminar un membre." @@ -14622,7 +14644,7 @@ msgstr "Has de ser el propietari del xat per a eliminar un membre." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Has de tenir com a mínim 13 anys per utilitzar Bluesky. Llegeix les nostres <0>Condicions del servei per obtenir més informació." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Has de seguir almenys set persones més per generar un starter pack." @@ -14639,7 +14661,7 @@ msgstr "Has de permetre l'accés a la teva biblioteca multimèdia." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Has de verificar el teu correu abans de poder habilitar la verificació en dos passos." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Aquest xat és teu" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Segurament vols reiniciar l'aplicació ara." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Has reaccionat amb {0}" @@ -14667,15 +14689,15 @@ msgstr "Has reaccionat amb {0} a {target}" msgid "You recently changed your birthdate" msgstr "Has canviat la teva data de naixement fa poc" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Has respost" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Has respost a {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "T'has respost a tu mateix" @@ -14715,11 +14737,11 @@ msgstr "No podràs tornar a unir-te si no t'hi conviden." msgid "You: {message}" msgstr "Tu: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguiràs els usuaris i els canals suggerits un cop hagis acabat de crear el teu compte!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguiràs els usuaris suggerits un cop hagis acabat de crear el teu compte!" @@ -14791,7 +14813,7 @@ msgstr "Has arribat al final del contingut actiu." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Has arribat al final del teu canal! Cerca alguns comptes més per a seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Has arribat al nombre màxim d'esborranys" @@ -14799,7 +14821,7 @@ msgstr "Has arribat al nombre màxim d'esborranys" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Has arribat al nombre màxim de sol·licituds permeses. Torna-ho a provar més tard." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Has arribat al màxim de {MAX_FILTERS, plural, one {# filtre} other {# filtres}}. Afegeix més valors a un filtre existent en lloc de crear-ne de nous." @@ -14815,11 +14837,11 @@ msgstr "Has assolit el teu límit diari de pujades de vídeos (massa bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has assolit el teu límit diari de pujades de vídeos (massa vídeos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "T'has acabat els vídeos. Potser és un bon moment per a fer un descans." -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "El teu compte" @@ -14835,11 +14857,11 @@ msgstr "S'ha suspès el teu compte" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "El teu compte encara no té l'edat suficient per penjar vídeos. Torna-ho a provar més tard." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "El teu compte és massa nou" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "El teu compte ha de tenir com a mínim 7 dies d'antiguitat per crear un xat de grup nou." @@ -14924,14 +14946,14 @@ msgstr "El teu identificador complet serà <0>@{0}" #: src/screens/Login/components/HostingProviderDialog.tsx:182 msgid "Your hosting provider can’t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." -msgstr "" +msgstr "El vostre proveïdor d'allotjament no es pot detectar a partir d'una adreça de correu electrònic, així que s'utilitzarà el servei predeterminat de Bluesky. Introduïu el vostre nom d'usuari o configureu el proveïdor manualment." #: src/screens/Login/components/HostingProviderDialog.tsx:188 msgid "Your hosting provider is detected automatically from the username you enter." -msgstr "" +msgstr "El proveïdor d'allotjament es detecta automàticament a partir del nom d'usuari que introduïu." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "S'han actualitzat els teus interessos!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Els teus interessos ens ajuden a trobar el que t'agrada!" @@ -14967,11 +14989,11 @@ msgstr "La teva contrasenya s'ha canviat correctament! Fes servir la nova contra msgid "Your password must be at least 8 characters long." msgstr "La contrasenya ha de tenir almenys 8 caràcters." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "La teva publicació s'ha enviat" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Les teves publicacions s'han enviat" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "El teu idioma preferent" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "La teva foto de perfil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "La teva foto de perfil envoltada de cercles concèntrics de les fotos de perfil d'altres usuaris" @@ -14992,7 +15014,7 @@ msgstr "La teva foto de perfil envoltada de cercles concèntrics de les fotos de msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "El teu perfil, publicacions, canals i llistes ja no seran visibles per a altres usuaris de Bluesky. Pots reactivar el teu compte en qualsevol moment iniciant sessió." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "La teva resposta s'ha enviat" @@ -15005,13 +15027,13 @@ msgstr "El teu informe s'enviarà a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Seleccionar els teus interessos ens ajuda a mostrar-te el contingut que t'importa." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "El teu fil té publicacions buides que s'ometran. Les publicacions restants es publicaran com a fil." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you don’t recognize this provider, double-check your username." -msgstr "" +msgstr "El vostre nom d'usuari i contrasenya es compartiran amb <0>{host}. Si no reconeixeu aquest proveïdor, comproveu el vostre nom d'usuari." #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/cs/messages.po b/src/locale/locales/cs/messages.po index 526868c8fb..44e8ed95f1 100644 --- a/src/locale/locales/cs/messages.po +++ b/src/locale/locales/cs/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: cs\n" +"Language: cs_CZ\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Czech\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorie \"{interestsDisplayName}\" (aktivní)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blokovaná zpráva skryta)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(obsahuje vložený obsah)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(smazaná zpráva)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(neplatný odkaz na pozvánku ke konverzaci)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(zpráva odeslána před tím, než jste se připojili)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hodina} few {# hodiny} other {# hodin}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# štítek použit na váš příspěvek} few {# štítky použity na váš příspěvek} many {# štítků použito na váš příspěvek} other {# štítků použito na váš příspěvek}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# štítek použit} few {# štítky použity} many {# štítků použito} other {# štítků použito}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# označení To se mi líbí} few {# označení To se m #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# člen} few {# členové} other {# členů}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nová žádost o připojení} few {# nové žádosti #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# osoba zareagovala} few {# osoby zareagovaly} many {# osob zareagovalo} other {# osob zareagovalo}} – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Účet)" @@ -251,36 +252,13 @@ msgstr "{0} přidán do konverzace" msgid "{0} and {1} added to chat" msgstr "Přidáno do konverzace: {0} a {1}" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} a {1} se líbí" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} a {others, plural, one {{1} dalšímu} few {{2} dalším} many {{2} dalším} other {{2} dalším}}" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} a {othersLabel} se líbí" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} sledujících" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} vás blokuje" @@ -324,14 +302,6 @@ msgstr "{0} odešel/šla" msgid "{0} left the group" msgstr "{0} opustil/a skupinu" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} se líbí" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} z 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} napsal reakci na {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} a {memberCount, plural, one {# další přidán} few {# další přidáni} other {# dalších přidáno}} do konverzace" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} a {others, plural, one {{2} dalšímu} other {{3} dalším}} se líbí" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1}, a {othersLabel} se líbí" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "Váš účet byl ověřen díky {firstAuthorName}" msgid "{following} following" msgstr "{following} sledovaných" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} nemůže být přidán" @@ -698,7 +660,7 @@ msgstr "{handle} nemůže být přidán" msgid "{handle} can't be messaged" msgstr "Nemůžete posílat zprávy {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "Nemůžete posílat zprávy {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# nepřečtená položka} few {# nepře msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {nalezen # kontakt} few {nalezeny # kontakty} many {nalezeno # kontaktu} other {nalezeno # kontaktů}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} další} few {{1} další} many {{1} dalších} other {{1} dalších}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} se připojil/a k Bluesky před {timeAgoString}" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} se připojil/a k Bluesky pomocí startovacího balíčku před {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {Zbývá # znak} few {Zbývají # znaky} other {Zbývá # znaků}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} odpověděl/a" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} odpověděl/a uživateli {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} vám odpověděl/a" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# žádost} few {# žádosti} many {# žádo msgid "{requestCount}+ requests" msgstr "{requestCount}+ požadavků" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "před {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} je důvěryhodný ověřovatel" @@ -842,13 +795,13 @@ msgstr "Ověření uživatele {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {sledovaný} few {sledovaní} many {sledovan #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citace} few {citace} many {citace} other {citací}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} few {reposty} many {repostu} other {repostů}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {uložení} few {uložení} many {uložení} #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {se líbí} few {se líbí} many {se líbí} other {se líbí}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> vás přidal" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Přihlaste se<1> nebo si <2>vytvořte účet<3> <4>a vyhledávejte zprávy, sport, politiku a vše ostatní, co se na Bluesky děje." @@ -971,7 +924,7 @@ msgstr "30 dní" msgid "7 days" msgstr "7 dní" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Sbírka oblíbených feedů, které najdete na Bluesky, včetně News, Booksky, Game Dev, Blacksky a Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Došlo k chybě sítě. Zkontrolujte prosím své připojení k internet #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Byl zaslán nový kód" msgid "A new form of verification" msgstr "Nový způsob ověření" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Odpověď na zprávu odeslanou před tím, než jste se připojili" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Snímek obrazovky editoru příspěvků s novým tlačítkem vedle tlačítka pro odeslání příspěvku, na kterém je napsáno „Koncepty“, s duhovým efektem ohňostroje. Pod tím text v editoru zní „Hej, slyšeli jste tu novinku? Bluesky má teď koncepty!!!“." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Vybraný příjemce není sledován odesílatelem." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Žádost o přístup odeslána! Vlastník skupiny posoudí vaši žádos msgid "Accessibility" msgstr "Přístupnost" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Nastavení přístupnosti" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Účet byl ztlumen ze seznamu" msgid "Account options" msgstr "Možnosti účtu" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Účet byl odebrán z rychlého přístupu" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Účty s vroubkovanou modrou značkou zaškrtnutí <0><1/> mohou ověřovat ostatní. Tyto důvěryhodné ověřovatele vybírá Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktivita od ostatních" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Přidat alternativní text (volitelně)" msgid "Add another account" msgstr "Přidat jiný účet" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Přidat další příspěvek" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Přidat další příspěvek do vlákna" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Přidat další filtr vyhledávání" @@ -1253,7 +1213,7 @@ msgstr "Přidat automatický štítek k účtu" msgid "Add emoji reaction" msgstr "Přidat reakci emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Přidat filtr" @@ -1338,7 +1298,7 @@ msgstr "Přidat tento kanál mezi vaše kanály" msgid "Add to lists" msgstr "Přidat do seznamů" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Přidat do uložených příspěvků" @@ -1400,7 +1360,7 @@ msgstr "Dospělý" msgid "Adult content" msgstr "Obsah pro dospělé" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Umožnit přístup k přímým zprávám" msgid "Already have a code?" msgstr "Už máte kód?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Už máte účet?" @@ -1614,7 +1574,7 @@ msgstr "E-mail byl odeslán na {0}. Obsahuje potvrzovací kód, který můžete msgid "An error has occurred" msgstr "Došlo k chybě" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Nastala chyba" @@ -1631,7 +1591,7 @@ msgstr "Při načítání navrhovaných účtů došlo k chybě." msgid "An error occurred while fetching the feed." msgstr "Při načítání kanálu došlo k chybě." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Nastala chyba při generování startovacího balíčku. Chcete to zkusit znovu?" @@ -1640,11 +1600,11 @@ msgstr "Nastala chyba při generování startovacího balíčku. Chcete to zkusi msgid "An error occurred while hiding suggestion. {0}" msgstr "Došlo k chybě při skrývání návrhu. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Při načítání videa došlo k chybě. Opakujte akci později." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Při načítání videa došlo k chybě. Opakujte akci." @@ -1684,7 +1644,7 @@ msgstr "Došlo k chybě. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Ilustrace zobrazující uživatelské avatary pocházející z knihy kontaktů do aplikace Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Ilustrace několika Bluesky příspěvků vedle repostů, lajků a komentářů ikon" @@ -1705,17 +1665,15 @@ msgstr "Odkaz na pozvánku umožňuje lidem připojit se k této skupinové konv msgid "An issue not included in these options" msgstr "Problém, který není zahrnut v těchto možnostech" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Při vytváření skupinového chatu došlo k problému, zkuste to prosím znovu." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Při zahájení konverzace došlo k chybě, opakujte akci." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Při pokusu o otevření konverzace došlo k problému" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Libovolné datum" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Kdokoli" @@ -1802,7 +1760,7 @@ msgstr "Kdokoli, kdo mě sleduje" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Nikdo, kdo jej má, se již nebude moci připojit ani požádat o připojení. Vždy můžete vytvořit nový." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Názvy hesel aplikace musí mít nejméně 4 znaky" msgid "App passwords" msgstr "Hesla aplikace" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Hesla aplikace" @@ -1891,8 +1849,8 @@ msgstr "Odvolat toto rozhodnutí" msgid "Appeal this label" msgstr "Odvolat se proti tomuto štítku" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Použít žádost o přijetí změn" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archivováno z {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Archivovaný příspěvek" @@ -1980,7 +1938,7 @@ msgstr "Opravdu chcete odstranit tuto položku z vašich kanálů?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Opravdu chcete odvolat svou žádost o připojení k {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Opravdu chcete zrušit tento příspěvek?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Automatizovaný účet" @@ -2033,7 +1991,7 @@ msgstr "Automaticky" msgid "Automation label" msgstr "Automatický popisek" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatický popisek" @@ -2050,12 +2008,16 @@ msgstr "Automatické přehrávání videa a GIFů" msgid "Available" msgstr "Dostupný" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Před vytvořením příspěvku nebo odpovědí musíte nejprve ověřit svůj e-mail." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Před vytvořením startovacího balíčku musíte nejprve ověřit svůj e-mail." @@ -2135,10 +2097,10 @@ msgstr "Než budete moci dostávat oznámení o příspěvcích {name}, musíte #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2122,28 @@ msgstr "Začněte proces zajištění věku vyplněním níže uvedených polí. msgid "Beta Feature" msgstr "Funkce beta verze" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "Funkce beta verze" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Funkce beta verze mohou být nestabilní. Některé změny mohou vyžadovat opětovné načtení aplikace." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Funkce beta verze mohou být nestabilní. Některé změny mohou vyžadovat restartování aplikace." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "Datum narození" msgid "Birthday" msgstr "Narozeniny" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Zablokováno" msgid "Blocked accounts" msgstr "Blokované účty" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokované účty" @@ -2282,7 +2250,7 @@ msgstr "Blokované účty nemohou odpovědět ve vašich vláknech, zmínit vás 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 "Blokované účty nemohou odpovědět ve vašich vláknech, zmínit vás nebo jinak s vámi komunikovat. Neuvidíte jejich obsah a zabráníte jim, aby viděli váš obsah." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokování nebrání tomuto labelerovi v tom, aby na váš účet umístil štítky." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nemůže potvrdit pravost požadovaného data." @@ -2330,7 +2299,7 @@ msgstr "Bluesky je otevřená síť, kde si můžete vybrat svého poskytovatele msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky je otevřená síť, kde si můžete vybrat svého vlastního poskytovatele. Pokud jste zde nový/á, doporučujeme dodržet výchozí možnosti Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky je lepší s přáteli!" @@ -2358,7 +2327,7 @@ msgstr "Podmínky služby Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky ukládá vaše kontakty jako kódovaná data. Odstraněním kontaktů budou tato data okamžitě smazána." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky vybere sadu doporučených účtů od lidí ve vaší síti." @@ -2425,24 +2394,25 @@ msgstr "Procházet další návrhy na stránce Prozkoumat" msgid "Browse other feeds" msgstr "Procházet další kanály" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Procházet příspěvky o {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Procházet příspěvky označené {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Procházet startovací balíček {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Procházet téma {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Procházet téma {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Tlačítko pro návrat na domácí časovou osu" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Od {0}" @@ -2473,9 +2443,9 @@ msgstr "od @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Od <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Vytvořením účtu souhlasíte s <0>Podmínkami služby a <1>Zásad msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Vytvořením účtu souhlasíte s <0>Podmínkami služby." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Vámi" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Fotoaparát" @@ -2534,7 +2504,7 @@ msgstr "Je vyžadován přístup ke kameře" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Je vyžadován přístup ke kameře" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Zrušit opětovné aktivaci a odhlásit se" msgid "Cancel reply" msgstr "Zrušit odpověď" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Zrušit vyhledávání" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Změny startovacího balíčku nebudou po vytvoření zohledněny v seznamu. Seznam bude nezávislá kopie." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Konverzace ztlumena" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Konverzace nenalezena." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Možnosti konverzace" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Vlastníci konverzace nemohou opustit skupinovou konverzaci." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Příjemce konverzace není sledován odesílatelem." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Schránka žádostí o konverzaci" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Žádosti o konverzaci" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Nastavení konverzace" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Konverzace není ztlumena" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Konverzace" @@ -2810,7 +2781,7 @@ msgstr "Zkontrolujte <0>{currentEmail} pro e-mail s potvrzovacím kódem, kt #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Vraťte se později!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "Zvolte metodu ověření domény" msgid "Choose Feeds" msgstr "Vybrat kanály" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Vybrat za mě" @@ -2854,7 +2825,7 @@ msgstr "Vybrat osoby" msgid "Choose post languages" msgstr "Vybrat jazyky příspěvků" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Vyberte tuto barvu jako svého avatara" @@ -2879,7 +2850,7 @@ msgstr "Vyberte si svoji vlastní časovou osu! Kanály vytvořené komunitou v msgid "Choose your password" msgstr "Zvolte své heslo" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Zvolte své uživatelské jméno" @@ -2966,7 +2937,7 @@ msgstr "Klikněte zde pro zobrazení pozvánky na tuto skupinovou konverzaci" msgid "Click to open tag menu for {0}" msgstr "Klepnutím otevřete menu značky pro {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klikněte pro opakování neúspěšné zprávy" @@ -3003,7 +2974,7 @@ msgstr "Klikněte pro opakování neúspěšné zprávy" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Klikněte pro opakování neúspěšné zprávy" msgid "Close" msgstr "Zavřít" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Zavřít aktivní dialogové okno" @@ -3047,7 +3018,7 @@ msgstr "Zavřít banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Zavřít prohlížeč obrázků" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Zavřít nabídku" @@ -3090,7 +3061,7 @@ msgstr "Zavřít banner příchozích žádostí" msgid "Close this dialog" msgstr "Zavřít tento dialog" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Zavřít uvítací okno" @@ -3098,7 +3069,7 @@ msgstr "Zavřít uvítací okno" msgid "Closes password update alert" msgstr "Zavře upozornění o aktualizaci hesla" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Zavře editor příspěvku a zahodí koncept příspěvku" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Barva" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Režim barev" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Komiksy" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Obecné zásady komunity" @@ -3141,7 +3112,7 @@ msgstr "Obecné zásady komunity" msgid "Complete onboarding and start using your account" msgstr "Dokončit úvodní nastavení a začít používat svůj účet" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Dokončete výzvu" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Vytvořit nový příspěvek" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Napiš příspěvky dlouhé až {0, plural, one {# znak} few {# znaky} many {# znaků}other {# znaků}}" @@ -3160,11 +3131,11 @@ msgstr "Napiš příspěvky dlouhé až {0, plural, one {# znak} few {# znaky} m msgid "Compose reply" msgstr "Napište odpověď" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Komprese GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Komprese videa..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Kontaktujte náš tým podpory" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Kontakt na podporu" @@ -3253,7 +3224,7 @@ msgstr "Obsah & Média" msgid "Content and media" msgstr "Obsah a média" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Obsah a média" @@ -3265,10 +3236,6 @@ msgstr "Obsah zablokován" msgid "Content filters" msgstr "Filtry obsahu" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Obsah z celé sítě, o kterém si myslíme, že by se vám mohl líbit." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Jazyky obsahu" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Obsah propagující nebo zobrazující sebepoškozování" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Varování o obsahu" msgid "Content warnings" msgstr "Varování o obsahu" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Pozadí kontextové nabídky, kliknutím nabídku zavřete." @@ -3302,7 +3269,7 @@ msgstr "Pozadí kontextové nabídky, kliknutím nabídku zavřete." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Pokračovat ve vlákně..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Pokračovat na název skupiny" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Konverzace nenalezena." msgid "Copied build version to clipboard" msgstr "Verze sestavení zkopírována do schránky" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Odkaz zkopírován do schránky" @@ -3376,7 +3343,7 @@ msgstr "Odkaz zkopírován do schránky" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Kopírovat heslo aplikace" msgid "Copy at:// URI" msgstr "Kopírovat at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Kopírovat DID autora" @@ -3449,10 +3416,10 @@ msgstr "Kopírovat odkaz" msgid "Copy link to list" msgstr "Kopírovat odkaz do seznamu" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopírovat odkaz do příspěvku" @@ -3470,8 +3437,8 @@ msgstr "Kopírovat odkaz do startovacího balíčku" msgid "Copy message text" msgstr "Kopírovat text zprávy" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Kopírovat příspěvek at:// URI" @@ -3490,7 +3457,7 @@ msgstr "Kopírovat hodnotu TXT záznamu" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Pravidla autorských práv" @@ -3540,11 +3507,11 @@ msgstr "Nelze sledovat všechny shody. {0}" msgid "Could not leave chat" msgstr "Nelze opustit konverzaci" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Nelze opustit konverzaci." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nelze načíst kanál" @@ -3562,7 +3529,7 @@ msgstr "Profil se nepodařilo načíst" msgid "Could not mute chat" msgstr "Nelze ztlumit konverzaci" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Člena nebylo možné odebrat." @@ -3606,8 +3573,8 @@ msgstr "krávy prasata" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Vytvořit" @@ -3624,26 +3591,26 @@ msgstr "Vytvořit seznam z tohoto startovacího balíčku" msgid "Create a QR code for a starter pack" msgstr "Vytvořit QR kód pro startovací balíček" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Vytvořit startovací balíček" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Vytvořit startovací balíček" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Vytvořit pro mě startovací balíček" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Založit účet" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Založit účet" @@ -3666,15 +3633,15 @@ msgstr "Založit účet" msgid "Create an account without using this starter pack" msgstr "Vytvořit účet bez použití tohoto startovacího balíčku" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Místo toho vytvořit avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Vytvořit další" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Vytvořit skupinovou konverzaci" @@ -3741,9 +3708,9 @@ msgstr "Kultura" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Aktuální funkce beta verze" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Aktuální konverzace" @@ -3770,8 +3737,8 @@ msgstr "Nebezpečné látky nebo zneužívání drog" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Tmavý" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tmavý" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tmavý motiv" @@ -3814,7 +3781,7 @@ msgstr "Odmítnout tento návrh jazyka" msgid "Deepfake adult content" msgstr "Deepfake obsah pro dospělé" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Výchozí" @@ -3894,7 +3861,7 @@ msgstr "Smazat můj účet" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Smazat příspěvek" @@ -3988,7 +3955,7 @@ msgstr "Dialog: upravit, kdo může reagovat na tento příspěvek" msgid "Dialog: Set search filters" msgstr "Dialogové okno: Nastavit filtry vyhledávání" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Ztmavit" @@ -4002,7 +3969,7 @@ msgstr "Zakázat" msgid "Disable 2FA" msgstr "Vypnout 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Vypnout titulky" @@ -4045,9 +4012,9 @@ msgstr "Neaktivní" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Zahodit" msgid "Discard changes?" msgstr "Zahodit změny?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Zahodit koncept?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Zahodit příspěvek?" @@ -4079,6 +4046,10 @@ msgstr "Odpojit Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Odradit aplikace od zobrazení mého účtu odhlášeným uživatelům" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Odradit aplikace od zobrazení mého účtu odhlášeným uživatelům" msgid "Discover new custom feeds" msgstr "Objevte nové vlastní kanály" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Objevte nové kanály" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Objevte nové kanály" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Odmítnout" @@ -4103,19 +4070,19 @@ msgstr "Odmítnout" msgid "Dismiss banner" msgstr "Odmítnout banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Odmítnout chybu" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Odmítnout úvodního průvodce" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Odmítnout zájmy" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Odmítnout banner živých událostí" @@ -4142,7 +4109,7 @@ msgstr "Zobrazit větší odznaky alternativního textu" msgid "Display name" msgstr "Zobrazované jméno" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Zapomeňte na trolly a clickbait. Najděte skutečné lidi a konverzace, na kterých vám záleží." @@ -4205,8 +4172,8 @@ msgstr "Žádné obavy! Všechny stávající zprávy a nastavení jsou uložen #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Žádné obavy! Všechny stávající zprávy a nastavení jsou uložen msgid "Done" msgstr "Hotovo" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Dvojitým klepnutím nebo dlouhým stisknutím zprávy přidáte reakci" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Dvojitým klepnutím zavřete dialog" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Dvojitým klepnutím dáte lajk" @@ -4328,6 +4295,7 @@ msgstr "Poruchy příjmu potravy" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Upravit obrázek" msgid "Edit interaction settings" msgstr "Upravit nastavení interakcí" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Upravit zájmy" @@ -4397,7 +4365,7 @@ msgstr "Upravit stav živého vysílání" msgid "Edit moderation list" msgstr "Upravit seznam moderování" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Upravit moje kanály" @@ -4406,6 +4374,11 @@ msgstr "Upravit moje kanály" msgid "Edit name" msgstr "Upravit název" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Upravit lidi" @@ -4444,7 +4417,7 @@ msgstr "Upravit seznam uživatelů" msgid "Edit who can reply" msgstr "Upravit, kdo může odpovídat" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Upravit svůj startovací balíček" @@ -4500,8 +4473,8 @@ msgstr "Vložit HTML kód" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Vložit příspěvek" @@ -4509,7 +4482,7 @@ msgstr "Vložit příspěvek" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Vložte tento příspěvek na svůj web. Stačí zkopírovat následující úryvek a vložit jej do HTML kódu vašeho webu." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Vestavěný přehrávač videa" @@ -4531,9 +4504,9 @@ msgstr "Povolit obsah pro dospělé" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Povolit funkce beta verze" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Zapnout titulky" @@ -4550,12 +4523,13 @@ msgstr "Povolit externí média" msgid "Enable media players for" msgstr "Povolit přehrávače médií pro" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Povolte oznámení pro účet tak, že navštívíte jeho profil a stisknete <0>ikonu zvonečku <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Povolit push oznámení" @@ -4581,7 +4555,7 @@ msgstr "Povolit trendující videa ve vašem kanálu Objevit" msgid "Enabled" msgstr "Povoleno" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Konec kanálu" @@ -4608,7 +4582,7 @@ msgstr "Zadejte slovo nebo štítek" msgid "Enter code" msgstr "Zadejte kód" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Přejít na celou obrazovku" @@ -4650,11 +4624,11 @@ msgstr "Zadejte své uživatelské jméno a heslo" msgid "Enters full screen" msgstr "Přejde do režimu celé obrazovky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Zábava" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Chyba" @@ -4684,7 +4658,7 @@ msgstr "Při ukládání souboru došlo k chybě" msgid "Error receiving captcha response." msgstr "Chyba při přijímání odpovědi captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Chyba: {error}" @@ -4696,8 +4670,8 @@ msgstr "Odpovídat může každý" msgid "Everybody can reply to this post." msgstr "Na tento příspěvek může odpovědět kdokoli." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Všichni" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Všichni" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Vše ostatní" @@ -4738,7 +4712,7 @@ msgstr "Vyloučit uživatele, které sledujete" msgid "Excludes users you follow" msgstr "Vyloučí uživatele, které sledujete" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Ukončit režim celé obrazovky" @@ -4755,11 +4729,11 @@ msgstr "Rozbalit seznam uživatelů" msgid "Expand or collapse the full post you are replying to" msgstr "Rozbalit nebo sbalit celý příspěvek, na který odpovídáte" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Rozbalit text příspěvku" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Rozbalí nebo sbalí text příspěvku" @@ -4802,15 +4776,15 @@ msgstr "Explicitní nebo potenciálně znepokojivý obsah." msgid "Explicit sexual images." msgstr "Explicitní sexuální obrázky." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Prozkoumat" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Prozkoumat aplikaci" @@ -4844,7 +4818,7 @@ msgstr "Externí média" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Externí média mohou webům umožnit shromažďovat informace o vás a vašem zařízení. Žádné informace se neodesílají ani nevyžadují, dokud nestisknete tlačítko „přehrát“." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Předvolby externích médií" @@ -4886,7 +4860,7 @@ msgstr "Nepodařilo se změnit uživatelské jméno. Zkuste to prosím znovu." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Nepodařilo se zkopírovat odkaz" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Nepodařilo se opustit skupinovou konverzaci" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Nepodařilo se načíst konverzace" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Nepodařilo se načíst kanály" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Nepodařilo se načíst předvolby kanálů" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Nepodařilo se načíst nastavení oznámení." @@ -5012,14 +4987,14 @@ msgstr "Nepodařilo se načíst předvolbu." msgid "Failed to load profiles" msgstr "Profily se nepodařilo načíst" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Nepodařilo se načíst doporučené kanály" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Nepodařilo se načíst doporučené sledování" @@ -5027,12 +5002,12 @@ msgstr "Nepodařilo se načíst doporučené sledování" msgid "Failed to lock group chat" msgstr "Nepodařilo se uzamknout skupinovou konverzaci" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Nepodařilo se označit všechny konverzace jako přečtené" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Nepodařilo se zrušit váš požadavek. Zkuste to prosím znovu." msgid "Failed to resolve location. Please try again." msgstr "Nepodařilo se zjistit polohu. Zkuste to prosím znovu." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Nepodařilo se uložit koncept" @@ -5191,7 +5166,7 @@ msgstr "Falešný účet nebo bot" msgid "False information about elections" msgstr "Nepravdivé informace o volbách" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Kanál" @@ -5212,7 +5187,7 @@ msgstr "Tvůrce kanálu" msgid "Feed identifier" msgstr "Identifikátor kanálu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Nabídka kanálu" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Zpětná vazba byla odeslána provozovateli kanálu" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Kanály aktualizovány!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Kanály, které by se vám mohly líbit." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Načíst aktualizaci" @@ -5273,11 +5244,11 @@ msgstr "Načíst aktualizaci" msgid "File saved successfully!" msgstr "Soubor byl úspěšně uložen!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Filtrovat podle autora" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrovat podle autora (aktuálně: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Filtrovat toto vyhledávání podle {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrujte, kdo si může nastavit oznámení o vaší aktivitě" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrujte, od koho dostáváte oznámení" @@ -5352,8 +5323,8 @@ msgstr "Najít účty ke sledování" msgid "Find and invite friends" msgstr "Najít a pozvat přátele" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Najít kontakty" @@ -5387,7 +5358,7 @@ msgstr "Najděte své přátele" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Najděte své přátele na Bluesky tím, že ověříte své telefonní číslo a najdete shody mezi svými kontakty. Chráníme vaše informace a vy máte kontrolu nad tím, co se stane dál. <0>Zjistit více" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Najděte své lidi" @@ -5429,7 +5400,7 @@ msgstr "Zaměřit vyhledávací pole" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Sledovat {0}" msgid "Follow {displayName}" msgstr "Sledovat {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Sledovat {handle}" @@ -5453,11 +5424,11 @@ msgstr "Sledovat {handle}" msgid "Follow 10 accounts" msgstr "Sledovat 10 účtů" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Začněte sledováním 10 lidí" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Sledovat 7 účtů" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Sledující se mohou připojit" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Sledující uživatele @{0}, které znáte" @@ -5544,7 +5515,7 @@ msgstr "Sledující, které znáte" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Sledujete {0}" msgid "Following {displayName}" msgstr "Sledujete {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Sledujete {handle}" @@ -5578,21 +5549,21 @@ msgstr "Sledujete {handle}" msgid "Following feed preferences" msgstr "Předvolby kanálu Sledované" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Předvolby kanálu Sledované" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sleduje vás" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Písmo" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Velikost písma" @@ -5612,13 +5583,13 @@ msgstr "Z bezpečnostních důvodů potřebujeme zaslat potvrzovací kód na va msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Z bezpečnostních důvodů si toto heslo nebudete moci znovu zobrazit. Pokud toto heslo aplikace ztratíte, budete muset vygenerovat nové." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pro nejlepší zážitek doporučujeme používat výchozí písmo motivu." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Pro vás" @@ -5628,7 +5599,7 @@ msgstr "Pro vás" msgid "Forever" msgstr "Navždy" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Zapomeňte na šum" @@ -5647,11 +5618,13 @@ msgstr "Zapomněli jste heslo?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Čtyři bubliny zpráv představující skupinový chat. První zpráva: \"Slyšeli jste tu novinku? Bluesky teď má skupinové chaty!\" Druhá zpráva: \"ty jo, to ne\" Třetí zpráva: \"Páni, 50 lidí v jednom chatu!“ Čtvrtá zpráva: \"Můžete také posílat odkazy s pozvánkami!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Osvoboďte svůj kanál" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Od" @@ -5674,7 +5647,7 @@ msgstr "Z <0/>" msgid "From these people" msgstr "Od těchto lidí" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Vygenerovat startovací balíček" @@ -5712,45 +5685,45 @@ msgstr "Germ DM znovu připojeno" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features we’re testing." -msgstr "" +msgstr "Získejte rychlý přístup k experimentálním funkcím, které testujeme." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Získat pomoc" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Dostávejte oznámení o připojeních ke startovacímu balíčku, ověřeních a dalších aktivitách." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Dostávejte upozornění, když vás někdo začne sledovat." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Dostávejte oznámení, když se lidem líbí vaše příspěvky." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Dostávejte oznámení, když se lidem líbí vaše reposty." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Dostávejte oznámení, když vás někdo zmíní." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Dostávejte oznámení, když lidé citují vaše příspěvky." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Dostávejte upozornění, když lidé odpoví na vaše příspěvky." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Dostávejte oznámení, když lidé repostují vaše příspěvky." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Dostávejte oznámení, když lidé repostují vaše reposty." @@ -5762,15 +5735,15 @@ msgstr "Dostávejte oznámení, když vám lidé pošlou žádost o zprávu." msgid "Get notifications when people send you messages." msgstr "Dostávejte oznámení, když vám lidé pošlou zprávu." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Dostávejte oznámení, když je aktivita u příspěvků, k jejichž odběru jste přihlášeni." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Dostávejte upozornění na nové příspěvky" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Dostávejte upozornění na nové příspěvky od uživatele {name}" @@ -5799,11 +5772,11 @@ msgstr "Začínáme" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF nahrán" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Dejte svému profilu tvář" @@ -5813,20 +5786,20 @@ msgstr "Glorifikace násilí" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Začít vysílat živě na" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Přejít na profil uživatele {0}" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Název skupinové konverzace byl aktualizován" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Nastavení skupinové konverzace" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Skupinové konverzace mohou mít maximálně {0, plural, one {# osobu} few {# osoby} many {# osob} other {# osob}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Skupina je uzamčena" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Název skupiny" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Název skupiny je příliš dlouhý. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {Maximální počet znaků je #.} few {Maximální počet znaků je #.} many {Maximální počet znaků je #.} other {Maximální počet znaků je #.}}" @@ -6077,7 +6051,7 @@ msgstr "Škodlivé nebo vysoce rizikové aktivity" msgid "Harming or endangering minors" msgstr "Poškozování nebo ohrožování nezletilých" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Máte kód? <0>Klikněte sem." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Máme špatnou polohu? <0>Klepnutím sem aktualizujte svou polohu pomocí GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Máte potíže?" @@ -6114,7 +6088,7 @@ msgstr "Bluesky je uchovává po dobu 7 dnů kvůli prevenci zneužití, poté b msgid "Help" msgstr "Nápověda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Pomozte lidem poznat, že nejste bot, nahráním obrázku nebo vytvořením avatara." @@ -6140,7 +6114,7 @@ msgstr "Ahoj!" msgid "Hidden" msgstr "Skryto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Skryto vaším nastavením moderování." @@ -6148,9 +6122,9 @@ msgstr "Skryto vaším nastavením moderování." msgid "Hidden list" msgstr "Skrytý seznam" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Skrytý seznam" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Skrýt" @@ -6198,7 +6172,7 @@ msgstr "Skrýt odpověď pro všechny" msgid "Hide reply for me" msgstr "Skrýt odpověď pro mě" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Skrýt tuto kartu" @@ -6218,12 +6192,12 @@ msgstr "Skrýt tuto odpověď?" msgid "Hide translation" msgstr "Skrýt překlad" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Skrýt populární témata" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Skrýt populární témata?" @@ -6240,7 +6214,7 @@ msgstr "Skrýt seznam uživatelů" msgid "Hide verification badges" msgstr "Skrýt ověřovací odznaky" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Skryje obsah" @@ -6293,8 +6267,8 @@ msgstr "Hmm, nepodařilo se nám načíst tuto moderační službu." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Vydržte! Přístup k videu zpřístupňujeme postupně a vy stále čekáte ve frontě. Zkuste to brzy znovu!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Poskytovatel hostingu: {0}" msgid "Hosting provider: Bluesky" msgstr "Poskytovatel hostingu: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Populární" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Jak to funguje:" @@ -6409,6 +6379,7 @@ msgstr "Pokud změníte svou e-mailovou adresu, 2FA ověření e-mailem bude dea msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Pokud si chcete změnit heslo, zašleme vám kód pro ověření, že se jedná o váš účet." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Pokud chcete omezit, kdo může dostávat oznámení o aktivitě vašeho účtu, můžete to změnit v <0>Nastavení → Soukromí a zabezpečení." @@ -6548,7 +6519,7 @@ msgstr "V aplikaci, push, všichni" msgid "In-app, push, people you follow" msgstr "V aplikaci, push, lidé, které sledujete" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Prázdná schránka" @@ -6560,6 +6531,7 @@ msgstr "Schránka je prázdná!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Zatím jste tu jen vy! Přidejte do svého startovacího balíčku další lidi pomocí vyhledávání výše." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID úlohy: {0}" @@ -6816,8 +6788,8 @@ msgstr "Připojit se ke konverzaci" msgid "Journalism" msgstr "Žurnalistika" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Pokračovat v úpravách" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Web KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Označeno {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Označeno autorem." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Štítky" @@ -6852,7 +6824,7 @@ msgstr "Štítky přidány" msgid "Labels applied to this post" msgstr "Štítky přiřazené k tomuto příspěvku" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Štítky jsou poznámky u uživatelů a obsahu. Lze je použít ke skrývání, varování a kategorizaci sítě." @@ -6864,7 +6836,7 @@ msgstr "Štítky na vašem účtu" msgid "Language" msgstr "Jazyk" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Nastavení jazyka" @@ -6874,7 +6846,7 @@ msgstr "Nastavení jazyka" msgid "Languages" msgstr "Jazyky" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Větší" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Naposledy spuštěno právě teď" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Nejnovější" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Zjistit více" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Zjistit více" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Zjistěte více o tom, <0>jak používat pokročilé vyhledávání." @@ -6937,8 +6909,8 @@ msgstr "Zjistit více o importu kontaktů" msgid "Learn more about self hosting your PDS." msgstr "Zjistěte více o vlastním hostování vašeho PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Zjistěte více o moderování použitém na tento obsah" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Více informací o těchto změnách a o tom, jak nám sdělit svůj názor, se dozvíte v našem příspěvku na blogu." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Zjistit více o tomto varování" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Více informací najdete v <0>nastavení účtu." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Zjistit více." @@ -6993,8 +6965,8 @@ msgstr "Opustit" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Opouštíte Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Opuštěním této konverzace ji trvale uzamknete a nebudete se moci znovu připojit." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Opustili jste skupinovou konverzaci." @@ -7042,7 +7014,7 @@ msgstr "Opustili jste skupinovou konverzaci." msgid "left to go." msgstr "zbývá." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Nech mě vybrat" @@ -7057,7 +7029,7 @@ msgstr "Jdeme na to!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Světlý" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Světlý" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "To se mi líbí" @@ -7076,7 +7048,7 @@ msgstr "To se mi líbí" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "To se mi líbí ({0, plural, one {# označení To se mi líbí} few {# označení To se mi líbí} many {# označení To se mi líbí} other {# označení To se mi líbí}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Lajkněte 10 příspěvků" @@ -7085,7 +7057,7 @@ msgstr "Lajkněte 10 příspěvků" msgid "Like 10 posts to train the Discover feed" msgstr "Lajkněte 10 příspěvků a naučte tak kanál Objevovat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Lajkněte tento kanál" @@ -7093,8 +7065,8 @@ msgstr "Lajkněte tento kanál" msgid "Like this labeler" msgstr "Lajknout tohoto labelera" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Líbí se uživatelům" @@ -7111,27 +7083,45 @@ msgstr "Líbí se" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Líbí se {0, plural, one {# uživateli} few {# uživatelům} many {# uživatelům} other {# uživatelům}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "To se líbí {likeCount, plural, one {# uživateli} few {# uživatelům} many {# uživatelům} other {# uživatelům}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Lajky" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Lajky vašich repostů" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Lajky u tohoto příspěvku" @@ -7144,7 +7134,7 @@ msgstr "Lineární" msgid "Link copied to clipboard" msgstr "Odkaz zkopírován do schránky" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Seznam" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Seznam již není ztlumen" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "ŽIVĚ" msgid "Live event happening now: {0}" msgstr "Probíhá živé vysílání: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Živá událost skryta" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Živá událost zobrazena" @@ -7279,12 +7269,12 @@ msgstr "Funkce živého vysílání je v beta verzi" msgid "Live link" msgstr "Odkaz na živé vysílání" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Načíst další" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Načíst další doporučené kanály" @@ -7292,8 +7282,8 @@ msgstr "Načíst další doporučené kanály" msgid "Load new notifications" msgstr "Načíst nová oznámení" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Uzamknout tuto skupinovou konverzaci" msgid "Locked" msgstr "Uzamčeno" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Protokol" @@ -7387,7 +7377,7 @@ msgstr "Zamilované GIFy" msgid "Make adjustments to email settings for your account" msgstr "Upravte nastavení e-mailu pro váš účet" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Vytvořit jeden pro mě" @@ -7418,15 +7408,15 @@ msgstr "Ručně" msgid "Mark all as read" msgstr "Označit vše jako přečtené" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Označit všechny konverzace jako přečtené" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Označit jako přečtené" msgid "Marked all as read" msgstr "Vše označeno jako přečtené" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Všechny konverzace označeny jako přečtené" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Všechny žádosti byly označeny jako přečtené" @@ -7456,8 +7446,12 @@ msgstr "Všechny žádosti byly označeny jako přečtené" msgid "Maybe later" msgstr "Možná později" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Média" @@ -7475,7 +7469,7 @@ msgstr "Média uložená na jiném zařízení" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Média, která mohou být znepokojující nebo nevhodná pro některé publikum." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Člen byl odebrán ze skupinového chatu." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "zmíněné uživatele" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Zmínky" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Zpráva smazána" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Zprávu se nepodařilo odeslat." @@ -7563,15 +7557,15 @@ msgstr "Zpráva je příliš dlouhá ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Možnosti zprávy" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Zprávy" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Zprávy od této osoby jsou skryté, dokud vás blokuje." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Zprávy od této osoby jsou skryté, dokud ji blokujete." @@ -7592,7 +7586,7 @@ msgstr "Zavádějící" msgid "Missing media" msgstr "Chybějící média" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderace" @@ -7636,7 +7630,7 @@ msgstr "Moderační seznam aktualizován" msgid "Moderation lists" msgstr "Seznamy moderování" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Seznamy moderování" @@ -7645,7 +7639,7 @@ msgstr "Seznamy moderování" msgid "moderation settings" msgstr "nastavení moderování" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Stavy moderování" @@ -7786,7 +7780,7 @@ msgstr "Ztlumeno" msgid "Muted accounts" msgstr "Ztlumené účty" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Ztlumené účty" @@ -7867,7 +7861,6 @@ msgstr "Potřebujete nahlásit porušení autorských práv, právní žádost n msgid "Nevermind, create a handle for me" msgstr "To nevadí, vytvořte mi uživatelské jméno" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nové" @@ -7893,11 +7886,11 @@ msgstr "N{postsCount, plural, one {ový příspěvek} few {ové příspěvky} ma #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nová konverzace" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Nová funkce" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Noví sledující" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nová skupinová konverzace" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nová skupinová konverzace" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nový skupinový chat s:" @@ -7966,13 +7959,13 @@ msgstr "Nový seznam" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Nové žádosti o zprávu" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Nové zprávy" @@ -7982,12 +7975,12 @@ msgstr "Nové zprávy" msgid "New password" msgstr "Nové heslo" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nový příspěvek" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Nejnovější odpovědi jako první" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Zprávy" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Další obrázek" msgid "Night" msgstr "Noční" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Žádné reklamy, žádné invazivní sledování, žádné pasti na pozornost. Bluesky respektuje váš čas a pozornost." @@ -8067,7 +8060,7 @@ msgstr "Zatím žádná hesla aplikací" #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "V tuto chvíli nejsou žádné funkce beta verze." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8091,7 @@ msgstr "Není nastaveno vypršení platnosti" msgid "No feeds found. Try searching for something else." msgstr "Nebyly nalezeny žádné kanály. Zkuste vyhledat něco jiného." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Zatím žádní sledující" @@ -8118,7 +8111,7 @@ msgstr "Žádný obrázek" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Zatím žádné lajky" @@ -8135,7 +8128,7 @@ msgstr "Žádné seznamy" msgid "No longer following {0}" msgstr "Již nesledujete {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Zatím žádná média" @@ -8143,7 +8136,7 @@ msgstr "Zatím žádná média" msgid "No messages yet" msgstr "Zatím žádné zprávy" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Konec nekonečného scrollování v algoritmech plných balastu. Najděte si kanály, které pracují pro vás, ne proti vám." @@ -8184,12 +8177,12 @@ msgstr "Nikdo nemůže posílat zprávy" msgid "No posts here" msgstr "Žádné příspěvky" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Zatím žádné příspěvky" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Zatím žádné citace" @@ -8202,7 +8195,7 @@ msgstr "Zatím žádné nedávné GIFy. Vyberte nějaký a zobrazí se zde." msgid "No replies" msgstr "Žádné odpovědi" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Zatím žádné odpovědi" @@ -8217,13 +8210,13 @@ msgstr "Žádný výsledek" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Žádné výsledky" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Žádné výsledky pro „{0}“." @@ -8236,23 +8229,23 @@ msgstr "Nebyly nalezeny žádné výsledky" msgid "No results found for \"{query}\"" msgstr "Nebyly nalezeny žádné výsledky pro \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "Pro „<0>{query}“ nebyly s použitými pokročilými filtry vyhledávání nalezeny žádné výsledky." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Pro „<0>{query}“ nebyly nalezeny žádné výsledky." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Pro váš dotaz s použitými pokročilými filtry vyhledávání nebyly nalezeny žádné výsledky." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Žádné výsledky." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Zatím žádné startovací balíčky" @@ -8265,7 +8258,7 @@ msgstr "Ne, děkuji" msgid "No translation received from your device." msgstr "Z vašeho zařízení nebyl přijat žádný překlad." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Zatím žádné video příspěvky" @@ -8278,7 +8271,7 @@ msgstr "Nikdo" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Tohle se zatím nikomu nelíbí. Možná byste mohli být první!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Tento příspěvek zatím nikdo necitoval. Možná byste mohli být první!" @@ -8298,6 +8291,10 @@ msgstr "Nekonsenzuální intimní snímky" msgid "Non-sexual Nudity" msgstr "Nesexuální nahota" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Není k dispozici na této platformě." msgid "Not followed by anyone you’re following" msgstr "Není sledován nikým z těch, které sledujete" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nenalezeno" @@ -8333,7 +8330,7 @@ msgstr "Poznámka o sdílení" 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 "Poznámka: Bluesky je otevřená a veřejná síť. Toto nastavení omezuje viditelnost vašeho obsahu pouze v aplikaci a na webu Bluesky a jiné aplikace toto nastavení nemusí respektovat. Váš obsah může být i nadále zobrazován nepřihlášeným uživatelům prostřednictvím jiných aplikací a webových stránek." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Poznámka: Tento příspěvek je viditelný pouze pro přihlášené uživatele." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Zatím nic uloženo" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Nastavení oznámení" @@ -8353,11 +8350,12 @@ msgstr "Nastavení oznámení" msgid "Notification sounds" msgstr "Zvuky oznámení" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Ale ne!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Dobře" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Resetovat onboarding" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Jeden z vybraných příjemců nepovoluje skupinové chaty." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Jeden z vybraných příjemců vás zablokoval a nelze mu zaslat zprávu." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "U jednoho nebo více souborů GIF chybí alternativní text." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "U jednoho nebo více obrázků chybí alternativní text." @@ -8454,11 +8454,11 @@ msgstr "Jeden nebo více vybraných souborů není podporován." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Jeden nebo více vybraných souborů je příliš velký. Maximální velikost je {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Jeden nebo více příspěvků je příliš dlouhých na uložení jako koncept. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Maximální počet znaků je # znak.} few {Maximální počet znaků jsou # znaky.} many {Maximální počet znaků je # znaků.} other {Maximální počet znaků je # znaků.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "U jednoho nebo více videí chybí alternativní text." @@ -8471,7 +8471,7 @@ msgstr "Odpovídat mohou pouze {0}." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Přidáno pouze {0} z {1} {2, plural, one {obrázku} few {obrázků} many {obrázků} other {obrázků}}; limit je {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "Pouze příspěvky s videem" msgid "Only replies" msgstr "Pouze odpovědi" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Podporovány jsou pouze soubory WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Jejda, tento profil neexistuje. Zkuste naskenovat jiný." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Jejda!" @@ -8544,7 +8544,7 @@ msgstr "Jejda!" msgid "Open advanced search options" msgstr "Otevřít pokročilé možnosti vyhledávání" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Otevřít editor avatara" @@ -8570,21 +8570,22 @@ msgstr "Otevřít možnosti konverzace" msgid "Open draft" msgstr "Otevřít koncept" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Otevřít nabídku" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Otevřít výběr emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Otevřít obrazovku s informacemi o kanálu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Otevřít nabídku možností kanálu" @@ -8627,7 +8628,7 @@ msgstr "Otevřít stránku pro ladění moderace" msgid "Open muted words and tags settings" msgstr "Otevřít nastavení ztlumených slov a značek" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Otevřít balíček" @@ -8699,7 +8700,7 @@ msgstr "Otevře další podrobnosti pro položku ladění" msgid "Opens alt text dialog" msgstr "Otevře dialogové okno alternativního textu" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Otevře fotoaparát zařízení" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Otevře průvodce vytvořením nového účtu Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Otevře průvodce pro přihlášení do vašeho stávajícího účtu Bluesky" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Heslo bylo aktualizováno!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pozastavit" @@ -8925,12 +8926,12 @@ msgstr "Pozastavit" msgid "Pause GIF" msgstr "Pozastavit GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pozastavit video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Lidé" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Lidé, které {ownerName} sleduje, mohou požádat o připojení" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Lidé sledovaní uživatelem @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Lidé sledující @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Lidé, které sleduji" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Lidé, které sleduji, mohou požádat o připojení" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Lidé, které sledujete" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Obrázky určené pro dospělé." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Připnout kanál" @@ -9034,7 +9035,7 @@ msgstr "Připnout kanál" msgid "Pin to home" msgstr "Připnout na domovskou obrazovku" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Připnout na domovskou stránku" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Připnuto" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} připnuto na Domů" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Připnuto k vašim kanálům" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Přehrát" @@ -9076,8 +9077,8 @@ msgstr "Přehrát {0}" msgid "Play GIF" msgstr "Přehrát GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Přehrát video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Napište prosím svou zprávu níže:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politika" @@ -9269,7 +9270,7 @@ msgstr "Politika" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Příspěvek" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Příspěvek" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Přidat fotku" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Přidat video" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Zveřejnit vše" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Přesto odeslat" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Příspěvek zablokován" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Příspěvek od @{0}" @@ -9340,7 +9341,7 @@ msgstr "Příspěvek skrytý vámi" msgid "Post interaction settings" msgstr "Nastavení interakcí s příspěvkem" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Nastavení interakcí s příspěvky" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Příspěvek připnut" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Příspěvek uložen" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Příspěvek odepnut" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Příspěvky" @@ -9398,6 +9396,10 @@ msgstr "Příspěvky lze ztlumit podle jejich textu, štítků nebo obojího. Do msgid "Posts hidden" msgstr "Příspěvky skryty" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potenciálně zavádějící odkaz" @@ -9449,20 +9451,21 @@ msgstr "Soukromí" msgid "Privacy and security" msgstr "Soukromí a zabezpečení" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Soukromí a zabezpečení" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Nastavení soukromí a zabezpečení" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Zásady ochrany osobních údajů" msgid "Privacy violation of a minor" msgstr "Porušení soukromí nezletilé osoby" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Zpracovávání GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Zpracovávání videa..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Veřejné, sdílitelné seznamy uživatelů pro hromadné ztlumení nebo blokování." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publikovat příspěvek" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publikovat příspěvky" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publikovat odpovědi" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publikovat odpověď" @@ -9599,12 +9602,12 @@ msgstr "Citování příspěvků zakázáno" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citace" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citace tohoto příspěvku" @@ -9647,7 +9650,7 @@ msgstr "Reaktivovat váš účet" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Přečíst {0, plural, one {# další odpověď} few {# další odpovědi} many {# dalších odpovědí} other {# dalších odpovědí}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Přečtěte si, jak používat pokročilé vyhledávací filtry" @@ -9657,11 +9660,11 @@ msgstr "Přečtěte si, jak používat pokročilé vyhledávací filtry" msgid "Read blog post" msgstr "Přečíst blogový příspěvek" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Zobrazit méně" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Číst více" @@ -9687,11 +9690,11 @@ msgstr "Přečíst Zásady ochrany osobních údajů Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Přečíst si Podmínky služby Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Skutečné konverzace." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Skuteční lidé." @@ -9721,10 +9724,6 @@ msgstr "Nedávná hledání" msgid "Recently used" msgstr "Nedávno použité" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Doporučené" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Znovu připojit" @@ -9748,7 +9747,7 @@ msgstr "Odmítnout požadavek na konverzaci" msgid "Reject join request" msgstr "Odmítnout požadavek na přidání" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Znovu načíst konverzace" @@ -9766,7 +9765,7 @@ msgstr "Znovu načíst konverzace" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Odebrat" @@ -9792,8 +9791,8 @@ msgstr "Odebrat uživatele {displayName}?" msgid "Remove {q}" msgstr "Odebrat {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Odebrat účet" @@ -9845,15 +9844,15 @@ msgstr "Odebrat filtr" msgid "Remove from chat" msgstr "Odebrat z konverzace" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Odebrat z mých kanálů" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Odebrat z rychlého přístupu?" @@ -9862,7 +9861,7 @@ msgstr "Odebrat z rychlého přístupu?" msgid "Remove from saved feeds" msgstr "Odebrat z uložených kanálů" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Odebrat z uložených příspěvků" @@ -9880,8 +9879,8 @@ msgstr "Odstranit obrázek" msgid "Remove live status" msgstr "Odebrat stav živého vysílání" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Odebrat člena" @@ -9943,7 +9942,7 @@ msgstr "Odebráno ze seznamu" msgid "Removed from saved feeds" msgstr "Odebráno z uložených kanálů" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Odebráno z uložených příspěvků" @@ -9952,7 +9951,7 @@ msgstr "Odebráno z uložených příspěvků" msgid "Removed from starter pack" msgstr "Odebráno ze startovacího balíčku" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Odpovězeno vám" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Zpráva od {senderName}, na kterou bylo odpovězeno, klepnutím se na ni přesunete" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Zpráva, na kterou bylo odpovězeno, byla odeslána před tím, než jste se připojili" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Zpráva, na kterou bylo odpovězeno, klepnutím na ni přejdete" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Odpovědi" @@ -10037,7 +10037,7 @@ msgstr "Odpovědi na tento příspěvek jsou zakázány." msgid "Reply" msgstr "Odpovědět" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Odpovědět" @@ -10098,8 +10098,8 @@ msgstr "Nahlásit konverzaci" msgid "Report dialog" msgstr "Dialog nahlášení" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Nahlásit kanál" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Repostováno vámi" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Reposty" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reposty tohoto příspěvku" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Reposty vašich repostů" @@ -10253,7 +10253,7 @@ msgstr "Požádáno" msgid "Requests" msgstr "Žádosti" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Zopakuje poslední akci, která skončila chybou" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Vrátí se na domovskou stránku" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Vrátí se na předchozí stránku" @@ -10446,27 +10446,27 @@ msgstr "Uložit datum narození" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Uložit změny" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Uložit změny?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Uložit koncept" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Uložit koncept?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Uložit QR kód" msgid "Save these options for next time" msgstr "Uložit tato nastavení pro příště" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Uložit do mých kanálů" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Uložené kanály" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Uložené příspěvky" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Uloženo do vašich kanálů" @@ -10520,8 +10520,8 @@ msgstr "Uloženo do vašich kanálů" msgid "Say hello!" msgstr "Pozdravte!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Pozdravte někoho" @@ -10535,7 +10535,7 @@ msgstr "Skenovat" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Naskenovat QR kód" @@ -10543,15 +10543,15 @@ msgstr "Naskenovat QR kód" msgid "Science" msgstr "Věda" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Posunout doleva" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Posunout doprava" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Přejít na zprávu, na kterou je tato odpověď" @@ -10564,8 +10564,8 @@ msgstr "Přejít nahoru" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Hledat" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Hledat příspěvky uživatele @{0}" @@ -10612,11 +10612,11 @@ msgstr "Hledat {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Hledejte kanály, které chcete doporučit ostatním." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Hledat další účty" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Hledat další kanály" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Hledat GIFy" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Vyhledávání je po odhlášení momentálně nedostupné" @@ -10709,6 +10709,7 @@ msgstr "Pracovní nabídky v Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Zobrazit více" @@ -10716,8 +10717,12 @@ msgstr "Zobrazit více" msgid "See more suggested profiles" msgstr "Zobrazit další doporučené profily" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Zobrazit doporučené účty" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Posuvník přehrávání. Pomocí šipek se můžete posouvat dopředu a dozadu, mezerníkem přehrávání spustíte nebo pozastavíte" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Vybrat kategorii „{interestsDisplayName}“" @@ -10748,7 +10753,7 @@ msgstr "Vybrat {0}" msgid "Select {langName}" msgstr "Vybrat {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Vyberte barvu" @@ -10764,11 +10769,11 @@ msgstr "Vybrat účet" msgid "Select an app language" msgstr "Vyberte jazyk aplikace" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Vyberte avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Vyberte emoji" @@ -10780,12 +10785,13 @@ msgstr "Vyberte možnost" msgid "Select app language" msgstr "Vyberte jazyk aplikace" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Vyberte soubor s titulky (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Vybrat konverzaci „{name}“" @@ -10826,7 +10832,7 @@ msgstr "Vybrat GIF" msgid "Select GIF \"{0}\"" msgstr "Vybrat GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Vybrat účastníky skupinové konverzace" @@ -10864,7 +10870,7 @@ msgstr "Vyberte primární jazyk" msgid "Select telephone code" msgstr "Vyberte telefonní předvolbu" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Vybrat emoji {emojiName} jako svůj avatar" @@ -10945,7 +10951,8 @@ msgstr "Odeslat zprávu" msgid "Send post to {name}" msgstr "Odeslat příspěvek uživateli {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Odeslat příspěvek..." @@ -10963,12 +10970,12 @@ msgstr "Odeslat zprávu z vašeho telefonu" msgid "Send verification email" msgstr "Odeslat ověřovací e-mail" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Odeslat přímou zprávou" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Nastavit poskytovatele hostingu ručně" msgid "Sets email for password reset" msgstr "Nastaví e-mail pro obnovení hesla" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Nastavení" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Nastavení pro aktivitu od ostatních" @@ -11036,49 +11043,49 @@ msgstr "Nastavení pro aktivitu od ostatních" msgid "Settings for allowing others to be notified of your posts" msgstr "Nastavení pro umožnění ostatním dostávat upozornění na vaše příspěvky" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Nastavení oznámení o lajcích" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Nastavení oznámení o zmínkách" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Nastavení oznámení o nových sledujících" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Nastavení oznámení pro vše ostatní" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Nastavení oznámení o lajcích vašich repostů" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Nastavení oznámení o nových žádostech o zprávu" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Nastavení oznámení pro nové zprávy" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Nastavení oznámení o repostech vašich repostů" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Nastavení oznámení o citacích" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Nastavení oznámení o odpovědích" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Nastavení oznámení o repostech" @@ -11115,8 +11122,8 @@ msgstr "Sdílet věkové rozmezí" msgid "Share anyway" msgstr "Přesto sdílet" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Sdílet DID autora" @@ -11125,9 +11132,9 @@ msgstr "Sdílet DID autora" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Sdílet zpětnou vazbu" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialogové okno pro sdílení odkazu" msgid "Share my profile" msgstr "Sdílet můj profil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Sdílet příspěvek at:// URI" @@ -11169,12 +11176,12 @@ msgstr "Sdílet profil" msgid "Share QR code" msgstr "Sdílet QR kód" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Sdílet tento kanál" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Sdílet toto hledání" @@ -11186,8 +11193,8 @@ msgstr "Sdílet tento startovací balíček" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Sdílejte tento startovací balíček a pomozte lidem připojit se k vaší komunitě na Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Sdílejte své kontakty a najděte přátele" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughts…" -msgstr "" +msgstr "Sdílejte své myšlenky…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Tester sdílených předvoleb" @@ -11219,7 +11226,7 @@ msgstr "Sdílením vašeho věkového rozmezí odhalíte pouze rozmezí spojené msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Sdílení věkového rozmezí odhalí pouze rozmezí spojené s vaším účtem Google – například že je vám alespoň 18 let. <0>Vaše přesné datum narození ani věk nejsou nikdy sdíleny a tato data nikdy neopouštějí toto zařízení. Umožňují tedy přístup pouze na tomto zařízení. Případně <1>můžete využít našeho důvěryhodného partnera KWS a dokončit ověření, které vám umožní přístup na všech platformách." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Zobrazit" msgid "Show alt text" msgstr "Zobrazit alternativní text" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Přesto zobrazit" @@ -11274,8 +11281,8 @@ msgstr "Přesto zobrazit seznam" msgid "Show lists of users to select from" msgstr "Zobrazit seznamy uživatelů k výběru" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Zobrazit více" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Zobrazit varování a odfiltrovat z kanálů" msgid "Show when you’re live" msgstr "Zobrazit, když právě vysíláte živě" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Zobrazí informace o tom, kdy byl tento příspěvek vytvořen" @@ -11341,15 +11348,15 @@ msgstr "Zobrazí informace o tom, kdy byl tento příspěvek vytvořen" msgid "Shows other accounts you can switch to" msgstr "Zobrazí další účty, na které lze přepnout" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Zobrazí obsah" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Zobrazí obsah" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Odhlásit se?" msgid "Sign up" msgstr "Zaregistrovat se" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Vyžadováno přihlášení" @@ -11469,7 +11476,7 @@ msgstr "Přeskočit" msgid "Skip contact sharing and continue to the app" msgstr "Přeskočit sdílení kontaktů a pokračovat do aplikace" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Přeskočit prázdné příspěvky?" @@ -11487,7 +11494,7 @@ msgstr "Přeskočit na další krok" msgid "slide" msgstr "snímek" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Menší" @@ -11499,14 +11506,14 @@ msgstr "Odloží připomenutí" msgid "So many thoughts, you should post one" msgstr "Tolik myšlenek, měli byste nějakou zveřejnit" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Sociální sítě pod vaší kontrolou." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Sociální doporučení u příspěvků" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Někdo opustil skupinu" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Někdo zareagoval {0}" @@ -11554,7 +11561,7 @@ msgstr "Někdo zareagoval {0}" msgid "Someone reacted {0} to {target}" msgstr "Někdo reagoval {0} na {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Někdo odpověděl" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Něco se pokazilo, zkuste to prosím znovu" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Něco se pokazilo. Zkuste to prosím za chvíli znovu." msgid "Something went wrong. Please try again." msgstr "Něco se pokazilo. Zkuste to prosím znovu." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Něco není v pořádku? Dejte nám vědět." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam nebo jiné neautentické chování či klamání" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sport" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Zobrazovat příspěvky, které se líbily vašim přátelům a lidem, které sledujete." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Začněte konverzaci a objeví se zde." msgid "Start a group chat" msgstr "Začít skupinovou konverzaci" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Zahájit novou konverzaci" @@ -11682,17 +11689,17 @@ msgstr "Začněte přidávat lidi" msgid "Start adding people!" msgstr "Začněte přidávat lidi!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Zahájit konverzaci" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Zahájit konverzaci s uživatelem {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startovací balíček" @@ -11715,12 +11722,16 @@ msgstr "Startovací balíček od vás" msgid "Starter pack is invalid" msgstr "Startovací balíček je neplatný" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startovací balíčky" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Startovací balíčky vám umožňují snadno sdílet vaše oblíbené kanály a lidi s vašimi přáteli." @@ -11728,7 +11739,7 @@ msgstr "Startovací balíčky vám umožňují snadno sdílet vaše oblíbené k msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Startovací balíčky vám umožňují sdílet vaše oblíbené kanály a lidi s vašimi přáteli." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Startivacá balíčky vám umožňují sdílet vaše oblíbené kanály a lidi s vašimi přáteli." @@ -11742,7 +11753,7 @@ msgstr "Stavová stránka" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Krok {0} z {1}" @@ -11754,7 +11765,7 @@ msgstr "Úložiště bylo vymazáno, nyní je nutné aplikaci restartovat." msgid "Stored as part of a secure code for matching with others" msgstr "Uloženo jako součást zabezpečeného kódu pro porovnání s ostatními" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "Odeslat odvolání" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Odeslat zpětnou vazbu" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Odebírat {publicationTitle} na {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Přihlaste se k odběru @{0} pro použití těchto štítků:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Úspěšně ověřeno" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Doporučené" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Doporučené účty" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Západ slunce" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Podpora této funkce ve vaší zemi zatím nebyla povolena! Zkuste to prosím později." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Pozastavené účty se nemohou účastnit skupinové konverzace." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Pozastavené účty se nemohou účastnit konverzace." @@ -11921,8 +11934,8 @@ msgstr "Přepnout na {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systémové" @@ -11945,7 +11958,7 @@ msgstr "Přesuňte konverzaci do soukromí." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Klepnutím níže povolíte aplikaci Bluesky přístup k vaší GPS poloze. Tyto údaje pak použijeme k přesnějšímu určení obsahu a funkcí dostupných ve vašem regionu." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Klepnutím zobrazíte podrobnosti" @@ -11976,7 +11989,7 @@ msgstr "Klepnutím zavřete kontextovou nabídku" msgid "Tap to copy this invite link" msgstr "Klepnutím zkopírujete tento odkaz pozvánky" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Klepnutím zavřete" @@ -12003,7 +12016,7 @@ msgstr "Klepnutím odeberete svou reakci {0}" msgid "Tap to request access to join this group chat" msgstr "Klepnutím požádejte o přístup do této skupinové konverzace" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Klepnutím to zkuste znovu" @@ -12016,7 +12029,7 @@ msgstr "Klepnutím zobrazíte reakce {0}" msgid "Tap to show all reactions" msgstr "Klepnutím zobrazíte všechny reakce" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Klepnutím zobrazíte reakce" @@ -12032,7 +12045,7 @@ msgstr "Úkol splněn – 10 sledovaných!" msgid "Task complete - 10 likes!" msgstr "Úkol splněn – 10 lajků!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Naučte náš algoritmus, co se vám líbí" @@ -12060,7 +12073,7 @@ msgstr "Podmínky" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Děkujeme za vaši zpětnou vazbu! Byla odeslána provozovateli kanálu. #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Děkujeme za vaši zpětnou vazbu." #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Tento startovací balíček nebyl nalezen." msgid "That username is already taken" msgstr "Toto uživatelské jméno je již obsazeno" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "A to je vše, přátelé!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "To je všechno!" @@ -12216,7 +12229,7 @@ msgstr "Zdá se, že server má problémy. Zkuste to prosím za chvíli znovu." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Startovací balíček, který se snažíte zobrazit, je neplatný. Můžete jej místo toho smazat." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Předmět kontextové nabídky" @@ -12238,7 +12251,7 @@ msgstr "Zadaný ověřovací kód je neplatný. Ujistěte se, že jste použili msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Poskytovateli ověření se nepodařilo odeslat kód na vaše telefonní číslo. Zkontrolujte prosím své telefonní číslo a zkuste to znovu." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Motiv" @@ -12266,7 +12279,7 @@ msgstr "Při načítání GIFů nastal problém. Zkontrolujte připojení a zkus msgid "There was a problem with your internet connection, please try again" msgstr "Došlo k problému s vaším internetovým připojením, zkuste to prosím znovu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Došlo k problému s vaším internetovým připojením, zkuste to pros msgid "There was an issue contacting the server" msgstr "Při kontaktování serveru došlo k problému" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Při kontaktování serveru došlo k chybě, zkontrolujte prosím připojení k internetu a zkuste to znovu." @@ -12283,8 +12296,8 @@ msgstr "Při kontaktování serveru došlo k chybě, zkontrolujte prosím připo msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Při načítání oznámení došlo k potížím. Klepnutím to zkuste znovu." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Při načítání příspěvků došlo k potížím. Klepněte sem pro opětovný pokus." @@ -12309,7 +12322,7 @@ msgstr "Při načítání informací o službě došlo k potížím" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Při odebírání tohoto kanálu došlo k chybě. Zkontrolujte prosím připojení k internetu a zkuste to znovu." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Tato nastavení se vztahují pouze na kanál Sledovaní." msgid "These URLs" msgstr "Tyto adresy URL" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Vlastní tento chat" @@ -12392,7 +12405,7 @@ msgstr "Vlastní tento chat" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Nebudou se moci znovu připojit, pokud je znovu nepozvete." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Tento {screenDescription} byl označen:" @@ -12408,7 +12421,7 @@ msgstr "Tento účet byl jeho vlastníkem označen jako automatizovaný." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Tento účet má jeden nebo více pokusů o ověření, ale momentálně není ověřený." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Tento účet požaduje, aby se uživatelé pro zobrazení jeho profilu přihlásili." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tento kanál je prázdný! Možná budete muset sledovat více uživatelů nebo upravit nastavení jazyka." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Tento kanál je prázdný." @@ -12554,7 +12567,7 @@ msgstr "Tato skupina je uzamčena z důvodu moderačního zásahu vůči vlastn msgid "This handle is reserved. Please try a different one." msgstr "Toto uživatelské jméno je rezervováno. Zkuste prosím jiné." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Tento obrázek nelze použít. Zkuste jiný formát, například .jpg nebo .png." @@ -12596,7 +12609,7 @@ msgstr "Tento štítek jste použili vy." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Tento štítek byl použit na celý uživatelský účet a zobrazí se u všech příspěvků." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Tento labeler neuvedl, jaké štítky vydává, a nemusí být aktivní." @@ -12621,13 +12634,13 @@ msgstr "Tento seznam je prázdný." msgid "This message is hidden" msgstr "Tato zpráva je skrytá" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Tato zpráva je skrytá, protože vás tento uživatel blokuje." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Tato zpráva je skrytá, protože tohoto uživatele blokujete." @@ -12641,7 +12654,7 @@ msgstr "Tato osoba vás blokuje" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Tento příspěvek tvrdí, že byl vytvořen <0>{0}, ale Bluesky jej poprvé zaznamenala <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Tento příspěvek tvrdí, že byl vytvořen <0>{0}, ale Bluesky jej msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Tento příspěvek má neznámý typ threadgate. Vaše aplikace může být zastaralá." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Tento příspěvek je viditelný pouze pro přihlášené uživatele." @@ -12661,7 +12674,7 @@ msgstr "Tento příspěvek byl odstraněn jeho autorem" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Tento příspěvek bude skryt z kanálů a vláken. Tuto akci nelze vrátit zpět." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Autor tohoto příspěvku zakázal citování příspěvků." @@ -12698,11 +12711,12 @@ msgstr "Mělo by to zabrat jen několik minut." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Tento uživatel nemá zobrazované jméno, a proto nemůže být ověřen." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Tento uživatel nemá žádné sledující." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Tento uživatel vás zablokoval a nelze mu zaslat zprávu." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Tento uživatel vás zablokoval. Nemůžete zobrazit jeho obsah." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Tento uživatel zakázal konverzaci a nelze mu posílat zprávy." @@ -12733,11 +12748,11 @@ msgstr "Tento uživatel je zařazen v seznamu <0>{0}, který jste ztlumili." msgid "This user is new here. Press for more info about when they joined." msgstr "Tento uživatel je tu nový. Stiskněte pro více informací o tom, kdy se přidal." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Tento uživatel nikoho nesleduje." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Toto video nelze přehrát na vašem zařízení. Ve vašem prohlížeči nebo systému mohou chybět požadované video kodeky (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Tímto nevratně smažete svůj účet Bluesky <0>{currentHandle} a všechna související data. Vezměte na vědomí, že to ovlivní i další služby <1>AT Protocol, které s tímto účtem používáte." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Tímto odeberete @{0} ze seznamu rychlého přístupu." @@ -12786,7 +12801,7 @@ msgstr "Předvolby vláken" msgid "Threaded" msgstr "Vláknové" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Předvolby vláken" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Příliš mnoho kontaktů – překročili jste počet kontaktů, které můžete importovat, abyste našli své přátele" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Nejlepší" @@ -12858,7 +12873,7 @@ msgstr "Nejlepší" msgid "Top replies first" msgstr "Nejlepší odpovědi jako první" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Téma" @@ -12893,7 +12908,9 @@ msgstr "Překlad do stejného jazyka není na vašem zařízení k dispozici." msgid "Tree view" msgstr "Stromové zobrazení" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Populární" @@ -12902,7 +12919,7 @@ msgstr "Populární" msgid "Trending GIFs" msgstr "Populární GIFy" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Možnosti trendování" @@ -12918,11 +12935,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Důvěra vzniká ze vztahů, komunit a sdíleného kontextu, proto také zavádíme <0>důvěryhodné ověřovatele: organizace, které mohou přímo vydávat ověření." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Zkuste jiný vyhledávací výraz nebo odstraňte některé filtry." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Zkuste jiný vyhledávací výraz." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Nepodařilo se načíst požadavky na přidání." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Vybraného příjemce se nepodařilo najít." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Vybraného příjemce se nepodařilo najít." @@ -13024,12 +13043,12 @@ msgstr "Nedostupné" msgid "Unavailable feed information" msgstr "Informace o kanálu nejsou k dispozici" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Odblokovat účet?" msgid "Unblock list" msgstr "Odblokovat seznam" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Přestat sledovat {0}" msgid "Unfollow account" msgstr "Přestat sledovat účet" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Přestane sledovat uživatele" @@ -13132,7 +13151,7 @@ msgstr "Neoznačený obsah pro dospělé" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Neoznačený, urážlivý nebo nekonsensuální obsah pro dospělé" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Zrušit lajk" @@ -13192,7 +13211,7 @@ msgstr "Zrušit ztlumení této skupinové konverzace" msgid "Unmute thread" msgstr "Zrušit ztlumení vlákna" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Zrušit ztlumení videa" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Odepnout" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Odepnout kanál" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Odepnout z domovské obrazovky" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Odepnout seznam moderování" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} odepnuto z Domů" @@ -13258,11 +13277,11 @@ msgstr "Zrušit odběr tohoto labelera" msgid "Unsubscribed from list" msgstr "Odhlášeno ze seznamu" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Nepodporovaný obsah schránky" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Nepodporovaný typ videa: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Aktualizace viditelnosti odpovědi se nezdařila" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Nahrát místo toho fotku" @@ -13355,7 +13374,7 @@ msgstr "Nahrát ze souboru" msgid "Upload from Library" msgstr "Nahrát z knihovny" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Nahrávání GIF..." @@ -13369,7 +13388,7 @@ msgstr "Nahrávání obrázků..." msgid "Uploading link thumbnail..." msgstr "Nahrávání náhledu odkazu..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Nahrávání videa..." @@ -13408,7 +13427,7 @@ msgstr "Toto použijte k přihlášení do jiné aplikace spolu se svým uživat msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Použijte e-mailovou adresu svého účtu nebo jinou skutečnou e-mailovou adresu, kterou kontrolujete, pro případ, že vás bude potřebovat kontaktovat KWS nebo Bluesky." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "uživatel" @@ -13510,7 +13529,7 @@ msgstr "Ověření se nezdařilo, zkuste to prosím znovu." msgid "Verification settings" msgstr "Nastavení ověření" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Nastavení ověření" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Zpracování videa se nezdařilo" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Video kanál" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Video od {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video od {0}. Klepnutím video přehrajete nebo pozastavíte" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videohry" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video je pozastaveno" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video se přehrává" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video nenalezeno." @@ -13653,7 +13672,7 @@ msgstr "Video nenalezeno." msgid "Video settings" msgstr "Nastavení videa" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video nahráno" @@ -13662,17 +13681,17 @@ msgstr "Video nahráno" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videa" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videa musí být kratší než 3 minuty." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Zobrazit" @@ -13691,9 +13710,9 @@ msgstr "Zobrazit profilový obrázek uživatele {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Zobrazit profil uživatele {0}" @@ -13724,13 +13743,13 @@ msgstr "Zobrazit blogový příspěvek pro více informací" msgid "View debug entry" msgstr "Zobrazit záznam ladění" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Zobrazit podrobnosti" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Zobrazit celé vlákno" @@ -13761,7 +13780,7 @@ msgstr "Zobrazit více" msgid "View more trending videos" msgstr "Zobrazit další populární videa" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Zobrazit příspěvek" @@ -13798,11 +13817,11 @@ msgstr "Zobrazit odkaz s pozvánkou do této skupinové konverzace" msgid "View the labeling service provided by @{0}" msgstr "Zobrazit službu označování poskytovanou uživatelem @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Zobrazit ověření tohoto uživatele" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Zobrazit uživatele, kteří mají rádi tento kanál" @@ -13831,7 +13850,7 @@ msgstr "Zobrazit vaše seznamy moderování" msgid "View your muted accounts" msgstr "Zobrazit vaše ztlumené účty" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Zobrazit vaše ověření" @@ -14001,7 +14020,7 @@ msgstr "Až najdeme vaše přátele, dáme vám vědět." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "We’d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Rádi bychom se dozvěděli o Vašich zkušenostech s testováním funkcí beta verze!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Máme problémy se sítí, zkuste to znovu" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Máme problémy se sítí, zkuste to znovu" @@ -14043,7 +14062,7 @@ msgstr "Máme problémy se sítí, zkuste to znovu" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Představujeme novou vrstvu ověření na Bluesky – snadno viditelnou značku zaškrtnutí." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Jsme moc rádi, že se k nám přidáváte!" @@ -14064,13 +14083,15 @@ msgstr "Je nám líto, ale tento seznam se nám nepodařilo načíst. Pokud prob msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Omlouváme se, ale momentálně se nepodařilo načíst vaše ztlumená slova. Zkuste to prosím znovu." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." -msgstr "" +msgstr "Omlouváme se, ale Vaše hledání nelze dokončit." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Omlouváme se, ale vaše vyhledávání nemohlo být dokončeno. Zkuste to prosím znovu za pár minut." @@ -14078,7 +14099,7 @@ msgstr "Omlouváme se, ale vaše vyhledávání nemohlo být dokončeno. Zkuste msgid "We're sorry, you cannot access this screen at this time." msgstr "Omlouváme se, k této obrazovce nyní nemáte přístup." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Omlouváme se! Příspěvek, na který odpovídáte, byl smazán." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "co se děje" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Co se děje?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Kdo může ověřovat?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Jejda!" @@ -14220,21 +14241,21 @@ msgstr "Chcete tohoto uživatele zablokovat a/nebo opustit tuto konverzaci?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Chcete tento příspěvek uložit jako koncept před zobrazením vašich konceptů?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Chcete tento příspěvek uložit jako koncept a upravit ho později?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Napsat příspěvek" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Napsat příspěvek" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Napište svou odpověď" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Přistupujete k Bluesky z regionu, který nám zákonně ukládá ověřit váš věk, než vám umožníme aplikaci používat." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Blokujete uživatele {0}" @@ -14342,7 +14363,7 @@ msgstr "Již nevysíláte živě" msgid "You are not allowed to upload videos." msgstr "Nemáte oprávnění nahrávat videa." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Zatím nikoho nesledujete" @@ -14362,7 +14383,7 @@ msgstr "Jste ověřeni. Pokud změníte své zobrazované jméno, ztratíte stat msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Jste ověřeni. Pokud změníte svoje uživatelské jméno, ztratíte status ověření. <0>Zjistit více." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Své zájmy můžete kdykoli upravit v nastavení „Obsah a média“." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Nyní se můžete přihlásit pomocí svého nového hesla." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "K jednomu příspěvku můžete přidat maximálně {MAX_GALLERY_IMAGES, plural, one {# obrázek} few {# obrázky} many {# obrázků} other {# obrázků}}" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Koncepty můžete ukládat pouze do délky 1000 znaků." @@ -14439,9 +14460,9 @@ msgstr "Můžete číst historii konverzace, ale nemůžete odesílat nové zpr msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Celkem můžete vybrat až {MAX_GALLERY_IMAGES, plural, one {# obrázek} few {# obrázky} many {# obrázků} other {# obrázků}}." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Toto můžete později změnit v nastavení." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Nemůžete přidat více než {EMOJI_REACTION_LIMIT, plural, one {# emoji reakci} few {# emoji reakce} many {# emoji reakcí} other {# emoji reakcí}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Zatím nemůžete vytvořit skupinový chat." @@ -14555,7 +14577,7 @@ msgstr "Vaše e-mailová adresa byla úspěšně ověřena. Toto dialogové okno msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Dočasně jste dosáhli limitu pro nahrávání videí. Zkuste to prosím později." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "V tomto konceptu máte neuložené změny, chcete je uložit?" @@ -14563,7 +14585,7 @@ msgstr "V tomto konceptu máte neuložené změny, chcete je uložit?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Máte neuložené změny. Chcete je uložit před zobrazením vašich konceptů?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Zatím jste nevytvořili žádný startovací balíček!" @@ -14614,7 +14636,7 @@ msgstr "Můžete přidat maximálně {STARTER_PACK_MAX_SIZE, plural, one {{START msgid "You may only add up to 3 feeds" msgstr "Můžete přidat maximálně 3 kanály" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Pro odebrání člena musíte být vlastníkem konverzace." @@ -14622,7 +14644,7 @@ msgstr "Pro odebrání člena musíte být vlastníkem konverzace." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Pro používání Bluesky musí být vám alespoň 13 let. Více informací naleznete v našich <0>Podmínkách služby." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "K vygenerování startovacího balíčku musíte sledovat alespoň sedm dalších lidí." @@ -14639,7 +14661,7 @@ msgstr "Musíte povolit přístup ke své knihovně médií." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Než budete moci povolit e-mailové 2FA, musíte ověřit svou e-mailovou adresu." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Tuto konverzaci vlastníte vy" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Pravděpodobně budete chtít aplikaci nyní restartovat." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Reagovali jste {0}" @@ -14667,15 +14689,15 @@ msgstr "Reagovali jste {0} na {target}" msgid "You recently changed your birthdate" msgstr "Nedávno jste změnili své datum narození" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Odpověděli jste" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Odpověděli jste uživateli {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Odpověděli jste sami sobě" @@ -14715,11 +14737,11 @@ msgstr "Nebudete se moci znovu připojit, pokud nebudete pozváni." msgid "You: {message}" msgstr "Vy: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Jakmile dokončíte vytváření účtu, začnete sledovat doporučené uživatele a kanály!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Jakmile dokončíte vytváření účtu, začnete sledovat doporučené uživatele!" @@ -14791,7 +14813,7 @@ msgstr "Dosáhli jste konce aktivního obsahu." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Dostali jste se na konec svého kanálu! Najděte si další účty, které můžete sledovat." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Dosáhli jste maximálního počtu konceptů" @@ -14799,7 +14821,7 @@ msgstr "Dosáhli jste maximálního počtu konceptů" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Dosáhli jste maximálního počtu povolených požadavků. Zkuste to prosím znovu později." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Dosáhli jste maximálního počtu {MAX_FILTERS, plural, one {# filtru} few {# filtrů} many {# filtrů} other {# filtrů}}. Místo vytváření nových přidejte další hodnoty do stávajícího filtru." @@ -14815,11 +14837,11 @@ msgstr "Dosáhli jste svého denního limitu pro nahrávání videí (příliš msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Dosáhli jste denního limitu pro nahrávání videí (příliš mnoho videí)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Došla vám videa ke sledování. Možná je vhodný čas si dát pauzu?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Váš účet" @@ -14835,11 +14857,11 @@ msgstr "Váš účet byl pozastaven" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Váš účet ještě není dostatečně starý na nahrávání videí. Zkuste to prosím později." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Váš účet je příliš nový" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Pro vytvoření nové skupinové konverzace musí být váš účet starý alespoň 7 dní." @@ -14930,8 +14952,8 @@ msgstr "Vašeho poskytovatele hostingu nelze zjistit z e-mailové adresy, proto msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Poskytovatel hostingu je automaticky rozpoznán z uživatelského jména, které zadáte." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Vaše zájmy byly aktualizovány!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Vaše zájmy nám pomáhají najít to, co se vám líbí!" @@ -14967,11 +14989,11 @@ msgstr "Vaše heslo bylo úspěšně změněno! Od této chvíle při přihlašo msgid "Your password must be at least 8 characters long." msgstr "Vaše heslo musí mít alespoň 8 znaků." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Váš příspěvek byl odeslán" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Vaše příspěvky byly odeslány" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Váš preferovaný jazyk" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Váš profilový obrázek" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Vaše profilová fotka obklopená soustřednými kruhy profilových fotek ostatních uživatelů" @@ -14992,7 +15014,7 @@ msgstr "Vaše profilová fotka obklopená soustřednými kruhy profilových fote 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 "Váš profil, příspěvky, kanály a seznamy už nebudou viditelné pro ostatní uživatele Bluesky. Účet můžete kdykoli znovu aktivovat přihlášením." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Vaše odpověď byla odeslána" @@ -15005,7 +15027,7 @@ msgstr "Vaše hlášení bude odesláno na <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Vámi vybrané zájmy nám pomáhají poskytovat vám obsah, který vás zajímá." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Vaše vlákno obsahuje prázdné příspěvky, které budou přeskočeny. Zbývající příspěvky budou zveřejněny jako vlákno." diff --git a/src/locale/locales/cy/messages.po b/src/locale/locales/cy/messages.po index 843671517a..8c4037e09d 100644 --- a/src/locale/locales/cy/messages.po +++ b/src/locale/locales/cy/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: cy\n" +"Language: cy_GB\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Welsh\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categori \"{interestsDisplayName}\" (gweithredol)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(neges wedi'i rhwystro wedi'i chuddio)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(yn cynnwys cynnwys wedi'i fewnosod)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(neges wedi'i dileu)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(dolen gwahodd i sgwrs annilys)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(neges wedi'i hanfon cyn i chi ymuno)" @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# awr} other {# awr}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural, one {# label wedi'i osod i'ch postiad} other {# label wedi'u gosod i'ch postiad}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural, zero {}one {# label wedi'i osod} two {# label wedi'u gosod} few {# label wedi'u gosod} many {# label wedi'u gosod} other {# label wedi'u gosod}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# yn hoffi} other {# yn hoffi}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# aelod} other {# aelod}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, zero {}one {# cais i ymuno} two {# gais i ymuno} few {# cais #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, zero {}one {# person} two {# berson} few {# person} many {# person} other {# person}} reacted – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Cyfrif)" @@ -251,36 +252,13 @@ msgstr "Mae {0} wedi'i ychwangu i'r sgwrs" msgid "{0} and {1} added to chat" msgstr "Mae {0} a {1} wedi'u hychwangu i'r sgwrs" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "Yn dilyn {0}" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "Mae {0} yn eich rhwystro" @@ -324,14 +302,6 @@ msgstr "Mae {0} wedi gadael" msgid "{0} left the group" msgstr "Ymunodd {0} â'r grŵp" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} allan 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "Ymatebodd {0} i {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "Mae {0}, {1} a {memberCount, plural, zero {}one {# arall} two {# arall} few {# arall} many {# arall} other {# arall}} wedi'u hychwanegu i'r sgwrs" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "Mae {firstAuthorName} wedi'ch gwirio" msgid "{following} following" msgstr "{following} yn dilyn" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "Dim modd ychwanegu {handle}" @@ -698,7 +660,7 @@ msgstr "Dim modd ychwanegu {handle}" msgid "{handle} can't be messaged" msgstr "Does dim modd anfon neges at {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "Does dim modd negesu {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# eitem heb ei darllen} other {# eitem msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# cysylltiad wedi'i ganfod} two {# cysylltiad wedi'u canfod} few {# cysylltiad wedi'u canfod} many {# cysylltiad wedi'u canfod} other {# cysylltiad wedi'u canfod}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "Ymunodd {profileName} â Bluesky {timeAgoString} yn ôl" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "Ymunodd {profileName} â Bluesky gan ddefnyddio pecyn cychwyn {timeAgoString} yn ôl" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, zero {}one {# nod yn weddill} two {# nod yn weddill} few {# nod yn weddill} many {# nod yn weddill} other {# nod yn weddill}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "Atebodd {replierDisplayName}" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "Atebodd {replierDisplayName} i {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "Atebodd {replierDisplayName} i chi" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, zero {}one {# cais} two {# gais} few {# cais} man msgid "{requestCount}+ requests" msgstr "{requestCount}+ cais" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} awr yn ôl" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "Mae {userName} yn ddilysydd dibynadwy" @@ -842,13 +795,13 @@ msgstr "Dilysiadau {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {yn dilyn} other {yn dilyn}}Crybwyll" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, zero {}one {yn dyfynnu} two {yn dyfynnu} few {yn dyfynnu} many {yn dyfynnu} other {yn dyfynnu}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, zero {}one {yn ailbostio} two {yn ailbostio} few {yn ailbostio} many {yn ailbostio} other {yn ailbostio}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, zero {}one {yn cadw} two {yn cadw} few {yn cadw} #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, zero {}one {hoffi} two {hoffi} few {hoffi} many {hoffi} other {hoffi}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "Mae <0>{displayName}<1/><2> wedi'ch ychwanegu" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Mewngofnodwch<1> neu <2>grëwch cyfrif<3> <4>i chwilio am newyddion, chwaraeon, gwleidyddiaeth, a phopeth arall sy'n digwydd ar Bluesky." @@ -971,7 +924,7 @@ msgstr "30 diwrnod" msgid "7 days" msgstr "7 diwrnod" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Casgliad o ffrydiau poblogaidd sydd i'w cael ar Bluesky, gan gynnwys Newyddion, Booksky, Game Dev, Blacksky, a Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Digwyddodd gwall rhwydwith. Gwiriwch eich cysylltiad rhwydwaith" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Mae cod newydd wedi'i anfon" msgid "A new form of verification" msgstr "Math newydd o ddilysu" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Ateb i neges a anfonwyd cyn i chi ymuno" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Llun sgrin o'r cyfansoddwr postiadau gyda botymau newydd nesaf at y botwm postio sy'n dweud \"Drafftiau\", gydag effaith tân gwyllt enfys. Isod, mae testun yn y cyfansoddwr yn dweud \"Hei, glywest ti'r newyddion? Mae gan Bluesky drafftiau nawr." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Dyw'r derbynnydd penodol ddim yn cael ei ddilyn gan yr anfonwr." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Cais am fynediad! Bydd perchennog y grŵp yn adolygu eich cais." msgid "Accessibility" msgstr "Hygyrchedd" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Gosodiadau Hygyrchedd" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Cyfrif wedi'i Dewi gan y Rhestr" msgid "Account options" msgstr "Dewisiadau cyfrif" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Cyfrif wedi'i dynnu o fynediad cyflym" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Mae cyfrifon gyda marc siec glas cregynog <0><1/> yn gallu dilysu eraill. Mae'r dilyswyr dibynadwy hyn yn cael eu dewis gan Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Gweithgaredd gan eraill" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Hysbysiadau gweithgaredd" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Ychwanegu testun amgen (dewisol)" msgid "Add another account" msgstr "Ychwanegu cyfrif arall" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Ychwanegu postiad arall" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Ychwanegu postiad arall i edefyn" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Ychwanegu hidlydd chwilio arall" @@ -1253,7 +1213,7 @@ msgstr "Ychwanegu label awtomatiaeth i'r cyfrif" msgid "Add emoji reaction" msgstr "Ychwanegu adwaith emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Ychwanegu hidlydd" @@ -1338,7 +1298,7 @@ msgstr "Ychwanegu'r ffrwd hon at eich ffrydiau" msgid "Add to lists" msgstr "Ychwanegu at y rhestrau" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Ychwanegu i'r postiadau wedi'u cadw" @@ -1400,7 +1360,7 @@ msgstr "Oedolyn" msgid "Adult content" msgstr "Cynnwys oedolion" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Yn caniatáu mynediad i negeseuon uniongyrchol" msgid "Already have a code?" msgstr "Oes gennych chi god yn barod?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Oes gennych chi gyfrif yn barod?" @@ -1614,7 +1574,7 @@ msgstr "Mae e-bost wedi'i anfon at {0}. Mae'n cynnwys cod cadarnhau y gallwch ei msgid "An error has occurred" msgstr "Digwyddodd gwall" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Digwyddodd gwall" @@ -1631,7 +1591,7 @@ msgstr "Digwyddodd gwall wrth estyn y cyfrifon hyn." msgid "An error occurred while fetching the feed." msgstr "Digwyddodd gwall wrth nôl y ffrwd." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Digwyddodd gwall wrth gynhyrchu'ch pecyn cychwyn. Eisiau ceisio eto?" @@ -1640,11 +1600,11 @@ msgstr "Digwyddodd gwall wrth gynhyrchu'ch pecyn cychwyn. Eisiau ceisio eto?" msgid "An error occurred while hiding suggestion. {0}" msgstr "Digwyddodd gwall wrth guddio awgrym. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Digwyddodd gwall wrth lwytho'r fideo. Ceisiwch eto yn nes ymlaen." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Digwyddodd gwall wrth lwytho'r fideo. Ceisiwch eto." @@ -1684,7 +1644,7 @@ msgstr "Digwyddodd gwall.{0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Darlun yn dangos afatarau defnyddwyr yn llifo o lyfr cysylltiadau i'r ap Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Darlun o nifer o bostiadau Bluesky ynghyd ag eiconau ailbostio, hoffi a sylwadau" @@ -1705,17 +1665,15 @@ msgstr "Mae gwahoddiad yn caniatáu i bobl ymuno â'r grŵp sgwrsio hwn heb gael msgid "An issue not included in these options" msgstr "Mater nad yw wedi'i gynnwys yn yr opsiynau hyn" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Digwyddodd gwall wrth greu grŵp, ceisiwch eto." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Digwyddodd gwall wrth gychwyn sgwrs, ceisiwch eto." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Digwyddodd mater wrth geisio agor y sgwrs" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Unrhyw ddyddiad" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Unrhyw un" @@ -1802,7 +1760,7 @@ msgstr "Unrhyw un sy'n fy nilyn" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Fydd neb sydd ganddo'n barod ddim yn gallu ymuno neu ofyn i ymuno. Gallwch bob amser greu un newydd." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Rhaid i enwau cyfrinair ap fod o leiaf 4 nod" msgid "App passwords" msgstr "Cyfrineiriau apiau" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Cyfrineiriau Apiau" @@ -1858,7 +1816,7 @@ msgstr "Apelio label \"{0}\"" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "Apelio'r label" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1847,10 @@ msgstr "Apelio'r penderfyniad hwn" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "Apelio'r label hwn" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Gosod Cais Tynnu" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Wedi'i archifo o {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Post wedi'i archifo" @@ -1980,7 +1938,7 @@ msgstr "Ydych chi'n siŵr eich bod am dynnu hwn o'ch ffrydiau?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Ydych chi'n siŵr eich bod am dynnu'n ôl eich cais i ymuno â {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Ydych chi'n siŵr yr hoffech chi gael gwared ar y postiad hwn?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Cyfrif Awtomataidd" @@ -2033,7 +1991,7 @@ msgstr "Awtomatig" msgid "Automation label" msgstr "Label awtomatiaeth" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Label Awtomatiaeth" @@ -2050,12 +2008,16 @@ msgstr "Awtochwarae fideos a GIFs" msgid "Available" msgstr "Ar gael" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Cyn creu postiad neu ateb, rhaid i chi ddilysu'ch e-bost yn gyntaf." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Cyn creu pecyn cychwyn, rhaid i chi wirio'ch e-bost yn gyntaf." @@ -2135,10 +2097,10 @@ msgstr "Cyn i chi dderbyn hysbysiadau am bostiadau {name}, rhaid i chi yn gyntaf #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2122,28 @@ msgstr "Cychwynnwch y broses sicrwydd oed drwy lanw'r meysydd isod." msgid "Beta Feature" msgstr "Nodwedd Beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "Nodweddion beta" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Gall nodweddion beta fod yn ansad. Efallai y bydd angen ail-lwytho'r ap ar gyfer rhai newidiadau." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Efallai y bydd nodweddion beta yn ansad. Efallai y bydd angen ailgychwyn yr ap ar gyfer rhai newidiadau." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "Dyddiad geni" msgid "Birthday" msgstr "Penblwydd" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Ddim ar gael" msgid "Blocked accounts" msgstr "Cyfrifon wedi'u rhwystro" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cyfrifon wedi'u Rhwystro" @@ -2282,7 +2250,7 @@ msgstr "Does dim modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, 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 "Does dim modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwylliadau, na rhyngweithio â chi fel arall. Fyddwch chi ddim yn gweld eu cynnwys a byddan nhw'n cael eu hatal rhag gweld eich un chi." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Dyw rhwystro ddim yn atal y labelwr hwn rhag gosod labeli ar eich cyfrif." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Dyw Bluesky ddim yn gallu cadarnhau dilysrwydd y dyddiad honedig." @@ -2330,7 +2299,7 @@ msgstr "Mae Bluesky yn rhwydwaith agored lle gallwch ddewis eich darparwr gweste msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Mae Bluesky yn rhwydwaith agored lle gallwch ddewis eich darparwr gwesteio. Os ydych chi'n newydd yma, rydym yn argymell cadw at y dewis Bluesky Social rhagosodedig." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Mae Bluesky yn well gyda ffrindiau!" @@ -2358,7 +2327,7 @@ msgstr "Telerau Gwasanaeth Cymdeithasol Bluesky" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Mae Bluesky yn cadw'ch cysylltiadau fel data wedi'i amgodio. Bydd tynnu'ch cysylltiadau yn dileu'r data hwn yn syth." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bydd Bluesky yn dewis set o gyfrifon wedi'u hargymhell gan bobl yn eich rhwydwaith." @@ -2425,24 +2394,25 @@ msgstr "Porwch ragor o awgrymiadau ar y dudalen Archwilio" msgid "Browse other feeds" msgstr "Porwch ffrydiau eraill" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Porwch bostiadau am {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Porwch bostiadau sydd wedi'u tagio â {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Porwch becyn cychwyn {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Porwi pwnc {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Porwch bwnc {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Botwm i fynd nôl i'r llinell amser cartref" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Gan {0}" @@ -2473,9 +2443,9 @@ msgstr "gan {0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Gan <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth a'r <1>P msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Gennych chi" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camera" @@ -2534,7 +2504,7 @@ msgstr "Mae angen mynediad i'r camera" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Mae angen mynediad i'r camera" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Diddymu'r ailweithredu ac allgofnodi" msgid "Cancel reply" msgstr "Diddymu'r ateb" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Diddymu'r chwilio" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Bydd newidiadau i'r pecyn cychwyn ddim yn cael eu hadlewyrchu i'r rhestr ar ôl eu creu. Bydd y rhestr yn gopi annibynnol." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Sgwrs wedi'i thewi" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Heb ganfod y sgwrs." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Dewisiadau sgwrsio" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Gall perchnogion sgwrs ddim gadael sgwrs grŵp." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Dyw derbynnydd y sgwrs ddim yn cael ei ddilyn gan yr anfonwr." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Dewch derbyn cais am sgwrs" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Ceisiadau am sgyrsiau" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Gosodiadau sgyrsiau" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Dad-dewi sgyrsiau" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Sgyrsiau" @@ -2810,7 +2781,7 @@ msgstr "Gwiriwch <0>{currentEmail} am e-bost gyda'r cod cadarnhau i'w roi is #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Dewch nôl yn nes ymlaen!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "Dewiswch ddull dilysu parth" msgid "Choose Feeds" msgstr "Dewiswch Ffrydiau" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Dewiswch i mi" @@ -2854,7 +2825,7 @@ msgstr "Dewiswch Bobl" msgid "Choose post languages" msgstr "Dewis ieithoedd postiadau" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Dewiswch y lliw hwn fel eich afatar" @@ -2879,7 +2850,7 @@ msgstr "Dewiswch eich llinell amser eich hun! Mae ffrydiau adeiladwyd gan y gymu msgid "Choose your password" msgstr "Dewiswch eich cyfrinair" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Dewiswch eich enw defnyddiwr" @@ -2966,7 +2937,7 @@ msgstr "Cliciwch yma i weld y ddolen gwahodd ar gyfer y grŵp sgwrsio yma" msgid "Click to open tag menu for {0}" msgstr "Clicio i agor dewislen tagiau {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd" @@ -3003,7 +2974,7 @@ msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd" msgid "Close" msgstr "Cau" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Cau'r deialog gweithredol" @@ -3047,7 +3018,7 @@ msgstr "Cau'r faner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Cau'r darllenydd delweddau" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Caewch y ddewislen" @@ -3090,7 +3061,7 @@ msgstr "Cau'r faner ceisiadau sy'n dod i mewn" msgid "Close this dialog" msgstr "Cau'r ddeialog hon" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Cau'r modal croeso" @@ -3098,7 +3069,7 @@ msgstr "Cau'r modal croeso" msgid "Closes password update alert" msgstr "Yn cau'r rhybudd diweddaru cyfrinair" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Yn cau cyfansoddwr postiad ac yn dileu postiad drafft" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Lliw" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modd lliw" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Comics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Canllawiau Cymunedol" @@ -3141,7 +3112,7 @@ msgstr "Canllawiau Cymunedol" msgid "Complete onboarding and start using your account" msgstr "Cwblhewch y cyflwyniad a dechreuwch ddefnyddio'ch cyfrif" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Cwblhewch yr her" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Cyfansoddi postiad newydd" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Cyfansoddwch bostiadau hyd at {0, plural, zero {} one {# nod} two {# nod} few {# characters} many {# nod}other {# nod}}" @@ -3160,11 +3131,11 @@ msgstr "Cyfansoddwch bostiadau hyd at {0, plural, zero {} one {# nod} two {# nod msgid "Compose reply" msgstr "Ysgrifennu ateb" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Yn cywasgu GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Yn cywasgu fideo..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Cysylltwch â'n tîm cefnogi" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Cysylltu â'n chefnogaeth" @@ -3253,7 +3224,7 @@ msgstr "Cynnwys a Chyfryngau" msgid "Content and media" msgstr "Cynnwys a chyfryngau" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Cynnwys a Chyfryngau" @@ -3265,10 +3236,6 @@ msgstr "Cynnwys wedi'i Rhwystro" msgid "Content filters" msgstr "Hidlo cynnwys" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Cynnwys o bob rhan o'r rhwydwaith rydyn ni'n meddwl y gallech chi eu hoffi." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Ieithoedd cynnwys" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Cynnwys sy'n hyrwyddo neu'n dangos hunan niweidio" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Rhybudd Cynnwys" msgid "Content warnings" msgstr "Rhybuddion cynnwys" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Cefndir ddewislen cyd-destun, cliciwch i gau'r ddewislen." @@ -3302,7 +3269,7 @@ msgstr "Cefndir ddewislen cyd-destun, cliciwch i gau'r ddewislen." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Parhau â'r trywydd..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Parhau i'r enw grŵp" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Heb ganfod y sgwrs." msgid "Copied build version to clipboard" msgstr "Fersiwn adeiladu wedi'i gopïo i'r clipfwrdd" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Wedi copïo'r ddolen i'r clipfwrdd" @@ -3376,7 +3343,7 @@ msgstr "Wedi copïo'r ddolen i'r clipfwrdd" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copïo Cyfrinair Ap" msgid "Copy at:// URI" msgstr "Copïwch yn: // URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copïo DID awdur" @@ -3449,10 +3416,10 @@ msgstr "Copïo Dolen" msgid "Copy link to list" msgstr "Copïo dolen i'r rhestr" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copïo dolen i'r postiad" @@ -3470,8 +3437,8 @@ msgstr "Copïo'r ddolen i'r pecyn cychwyn" msgid "Copy message text" msgstr "Copïo testun neges" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copïo postiad yn: // URI" @@ -3490,7 +3457,7 @@ msgstr "Copïo gwerth cofnod TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polisi Hawlfraint" @@ -3540,11 +3507,11 @@ msgstr "Methu dilyn pob cyfatebiaeth. {0}" msgid "Could not leave chat" msgstr "Methu gadael y sgwrs" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Methwyd gadael y sgwrs." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Methu llwytho ffrwd" @@ -3562,7 +3529,7 @@ msgstr "Methwyd llwytho proffil" msgid "Could not mute chat" msgstr "Methu tewi sgwrs" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Methwyd tynnu aelod." @@ -3606,8 +3573,8 @@ msgstr "gwartheg moch" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Creu" @@ -3624,26 +3591,26 @@ msgstr "Crëwch restr o'r pecyn cychwyn hwn" msgid "Create a QR code for a starter pack" msgstr "Creu cod QR ar gyfer pecyn cychwyn" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Creu pecyn cychwyn" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Crëwch Becyn Cychwyn" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Creu pecyn cychwyn i mi" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Creu cyfrif" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Creu cyfrif" @@ -3666,15 +3633,15 @@ msgstr "Creu cyfrif" msgid "Create an account without using this starter pack" msgstr "Crëwch gyfrif heb ddefnyddio'r pecyn cychwyn hwn" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Creu afatar yn lle hynny" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Creu un arall" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Creu grŵp sgwrsio" @@ -3741,9 +3708,9 @@ msgstr "Diwylliant" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Nodweddion beta cyfredol" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Y sgwrs gyfredol" @@ -3770,8 +3737,8 @@ msgstr "Sylweddau peryglus neu gamdriniaeth cyffuriau" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Tywyll" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tywyll" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Thema dywyll" @@ -3814,7 +3781,7 @@ msgstr "Gwrthod awgrym yr iaith hon" msgid "Deepfake adult content" msgstr "Cynnwys ffugiol dwys oedolion" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Rhagosodiad" @@ -3894,7 +3861,7 @@ msgstr "Dileu fy ngyfrif" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Dileu postiad" @@ -3988,7 +3955,7 @@ msgstr "Deialog: addaswch pwy all ryngweithio â'r postiad hwn" msgid "Dialog: Set search filters" msgstr "Deialog: Gosod hidlwyr chwilio" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Tywyllu" @@ -4002,7 +3969,7 @@ msgstr "Analluogi" msgid "Disable 2FA" msgstr "Analluogi 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Analluogi capsiynau" @@ -4045,9 +4012,9 @@ msgstr "Analluogwyd" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Dileu" msgid "Discard changes?" msgstr "Dileu'r newidiadau?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Dileu'r drafft?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Dileu'r postiad?" @@ -4079,6 +4046,10 @@ msgstr "Datgysylltwch Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Gofynnwch i apiau beidio dangos fy nghyfrif i ddefnyddwyr sydd wedi allgofnodi" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Gofynnwch i apiau beidio dangos fy nghyfrif i ddefnyddwyr sydd wedi allg msgid "Discover new custom feeds" msgstr "Darganfod ffrydiau cyfaddas newydd" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Darganfod ffrydiau newydd" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Darganfod Ffrydiau Newydd" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Cau" @@ -4103,19 +4070,19 @@ msgstr "Cau" msgid "Dismiss banner" msgstr "Cau'r faner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Cau'r gwall" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Cau'r canllaw cychwyn arni" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Diystyru diddordebau" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Cau baner digwyddiad byw" @@ -4142,7 +4109,7 @@ msgstr "Dangos bathodynnau testun amgen mwy" msgid "Display name" msgstr "Enw dangos" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Rhowch y gorau i fwydro a physgota. Dewch o hyd i bobl go-iawn a sgyrsiau sy'n bwysig i chi." @@ -4205,8 +4172,8 @@ msgstr "Peidiwch â phoeni! Mae'r holl negeseuon a gosodiadau wedi'u cadw a bydd #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Peidiwch â phoeni! Mae'r holl negeseuon a gosodiadau wedi'u cadw a bydd msgid "Done" msgstr "Gorffen" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tapio dwywaith neu bwyso'n hir i ychwanegu ymateb" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tapiwch ddwywaith i gau'r ddeialog" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tapio dwywaith i'w hoffi" @@ -4328,6 +4295,7 @@ msgstr "Anhwylderau bwyta" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Golygu delwedd" msgid "Edit interaction settings" msgstr "Golygu gosodiadau rhyngweithio" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Golygu diddordebau" @@ -4397,7 +4365,7 @@ msgstr "Golygu statws byw" msgid "Edit moderation list" msgstr "Golygu rhestr cymedroli" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Golygu Fy Ffrydiau" @@ -4406,6 +4374,11 @@ msgstr "Golygu Fy Ffrydiau" msgid "Edit name" msgstr "Golygu enw" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Golygu hysbysiadau gan {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Golygu Pobl" @@ -4444,7 +4417,7 @@ msgstr "Golygu rhestr defnyddwyr" msgid "Edit who can reply" msgstr "Golygu pwy all ateb" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Golygu eich pecyn cychwyn" @@ -4500,8 +4473,8 @@ msgstr "Mewnblannu cod HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Mewnblannu postiad" @@ -4509,7 +4482,7 @@ msgstr "Mewnblannu postiad" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Mewnblanwch y postiad hon yn eich gwefan. Copïwch y pwt canlynol a'i gludo i god HTML eich gwefan." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Chwaraewr fideo wedi'i fewnblannu" @@ -4531,9 +4504,9 @@ msgstr "Galluogi cynnwys oedolion" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Galluogi nodweddion beta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Galluogi capsiynau" @@ -4550,12 +4523,13 @@ msgstr "Galluogi cyfryngau allanol" msgid "Enable media players for" msgstr "Galluogi chwaraewyr cyfryngau ar gyfer" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Galluogwch hysbysiadau am gyfrif drwy fynd i'w proffil a phwyso'r <0>eicon cloch <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Galluogi gwthio hysbysiadau" @@ -4581,7 +4555,7 @@ msgstr "Galluogi fideos sy'n trendio yn eich ffrwd Darganfod" msgid "Enabled" msgstr "Galluogwyd" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Diwedd y ffrwd" @@ -4608,7 +4582,7 @@ msgstr "Rhowch air neu dag" msgid "Enter code" msgstr "Rhowch y cod" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Mynd i'r sgrin lawn" @@ -4650,11 +4624,11 @@ msgstr "Rhowch eich enw defnyddiwr a chyfrinair" msgid "Enters full screen" msgstr "Yn mynd i'r sgrin lawn" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Adloniant" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Gwall" @@ -4684,7 +4658,7 @@ msgstr "Bu gwall wrth gadw ffeil" msgid "Error receiving captcha response." msgstr "Gwall wrth dderbyn ymateb captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Gwall: {error}" @@ -4696,8 +4670,8 @@ msgstr "Gall pawb ateb" msgid "Everybody can reply to this post." msgstr "Gall pawb ateb i'r postiad hwn." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Pawb" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Pawb" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Popeth arall" @@ -4728,7 +4702,7 @@ msgstr "Ydy popeth yn edrych yn iawn?" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 msgid "Exclude" -msgstr "" +msgstr "Eithrio" #: src/components/dialogs/MutedWords.tsx:320 msgid "Exclude users you follow" @@ -4738,7 +4712,7 @@ msgstr "Eithrio defnyddwyr rydych yn eu dilyn" msgid "Excludes users you follow" msgstr "Yn eithrio defnyddwyr rydych yn eu dilyn" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Gadael y sgrin lawn" @@ -4755,11 +4729,11 @@ msgstr "Ehangu rhestr o ddefnyddwyr" msgid "Expand or collapse the full post you are replying to" msgstr "Ehangu neu leihau'r postiad llawn rydych yn ateb iddo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Estyn testun postiad" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Yn ehangu neu'n lleihau testun postiad" @@ -4802,15 +4776,15 @@ msgstr "Cyfryngau di-noethol neu a allai beri gofid." msgid "Explicit sexual images." msgstr "Delweddau di-noethol amlwg." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Darganfod" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Archwilio'r ap" @@ -4844,7 +4818,7 @@ msgstr "Cyfryngau Allanol" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Gall cyfryngau allanol ganiatáu i wefannau gasglu gwybodaeth amdanoch chi a'ch dyfais. Does dim gwybodaeth yn cael ei anfon na gofyn amdano nes i chi bwyso'r botwm \"chwarae\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Dewisiadau Cyfryngau Allanol" @@ -4886,7 +4860,7 @@ msgstr "Wedi methu newid enw dangos. Ceisiwch eto." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Methu copïo dolen" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Wedi methu gadael grŵp sgwrsio" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Wedi methu llwytho sgyrsiau" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Wedi methu llwytho ffrydiau" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Wedi methu llwytho dewisiadau ffrydiau" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Wedi methu llwytho gosodiadau hysbysu." @@ -5012,14 +4987,14 @@ msgstr "Methu llwytho dewis." msgid "Failed to load profiles" msgstr "Wedi methu llwytho proffiliau" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Wedi methu llwytho'r ffrydiau awgrymwyd" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Wedi methu llwytho'r awgrymiadau dilyn" @@ -5027,12 +5002,12 @@ msgstr "Wedi methu llwytho'r awgrymiadau dilyn" msgid "Failed to lock group chat" msgstr "Wedi methu cloi grŵp sgwrsio" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Methwyd nodi pob sgwrs wedi'i darllen" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5053,7 +5028,7 @@ msgstr "Wedi methu datgysylltu Germ DM. Gwall: {0}" #: src/screens/Messages/JoinRequests.tsx:223 msgid "Failed to reject join request" -msgstr "" +msgstr "Methwyd â gwrthod y cais i ymuno" #: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." @@ -5096,7 +5071,7 @@ msgstr "Methwyd diddymu eich cais. Ceisiwch eto." msgid "Failed to resolve location. Please try again." msgstr "Wedi methu canfod y lleoliad. Ceisiwch eto." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Wedi methu cadw drafft" @@ -5191,7 +5166,7 @@ msgstr "Cyfrif ffug neu fot" msgid "False information about elections" msgstr "Gwybodaeth ffug am etholiadau" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Ffrwd" @@ -5212,7 +5187,7 @@ msgstr "Crëwr ffrwd" msgid "Feed identifier" msgstr "Dynodydd ffrwd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Dewislen ffrwd" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Adborth wedi'i anfon at weithredwr ffrwd" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Diweddarwyd y ffrydiau!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Ffrydiau rydyn ni'n meddwl y gallech chi eu hoffi." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Estyn diweddariad" @@ -5273,11 +5244,11 @@ msgstr "Estyn diweddariad" msgid "File saved successfully!" msgstr "Ffeil wedi'i chadw'n llwyddiannus!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Hidlo yn ôl awdur" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Hidlo yn ôl awdur ({currentLabel} - ar hyn o bryd)" @@ -5310,7 +5281,7 @@ msgstr "Hidlo'r chwilio hwn yn ôl {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Hidlo pwy all ddewis i dderbyn hysbysiadau am eich gweithgareddau" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Hidlo gan bwy rydych yn derbyn hysbysiadau" @@ -5318,7 +5289,7 @@ msgstr "Hidlo gan bwy rydych yn derbyn hysbysiadau" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "Hidlau" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5323,8 @@ msgstr "Chwilio am gyfrifon i'w dilyn" msgid "Find and invite friends" msgstr "Dewch o hyd i ffrindiau a'u gwahodd" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Chwilio am Gysylltiadau" @@ -5387,7 +5358,7 @@ msgstr "Chwilio am eich ffrindiau" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Chwiliwch am eich ffrindiau ar Bluesky drwy wirio eich rif ffôn a'u cyfateb â'ch ffrindiau. Rydym yn diogelu eich manylion chi a chi sy'n rheoli beth sy'n digwydd nesaf. <0>Dysgu rhagor" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Chwiliwch am eich pobl chi" @@ -5429,7 +5400,7 @@ msgstr "Canolbwyntio'r maes chwilio" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Dilynwch {0}" msgid "Follow {displayName}" msgstr "Dilyn {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Dilynwch {handle}" @@ -5453,11 +5424,11 @@ msgstr "Dilynwch {handle}" msgid "Follow 10 accounts" msgstr "Dilynwch 10 cyfrif" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Dilynwch 10 person i gychwyn arni" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Dilynwch 7 cyfrif" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Gall dilynwyr ymuno" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Dilynwyr @{0} rydych chi'n eu hadnabod" @@ -5544,7 +5515,7 @@ msgstr "Dilynwyr rydych chi'n eu hadnabod" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Yn dilyn {0}" msgid "Following {displayName}" msgstr "Yn dilyn {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Yn dilyn {handle}" @@ -5578,21 +5549,21 @@ msgstr "Yn dilyn {handle}" msgid "Following feed preferences" msgstr "Dewisiadau ffrydio Yn dilyn" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Dewisiadau Ffrydio Yn Dilyn" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Yn eich dilyn chi" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Ffont" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Maint ffont" @@ -5612,13 +5583,13 @@ msgstr "Am resymau diogelwch, bydd angen i ni anfon cod cadarnhau i'ch cyfeiriad msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Am resymau diogelwch, fyddwch chi ddim yn gallu gweld hwn eto. Os byddwch chi'n colli cyfrinair yr ap hwn, bydd angen i chi gynhyrchu un newydd." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "I gael y profiad gorau, rydym yn argymell defnyddio ffont y thema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "I Chi" @@ -5628,7 +5599,7 @@ msgstr "I Chi" msgid "Forever" msgstr "Am Byth" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Anghofiwch y dwndwr" @@ -5647,18 +5618,20 @@ msgstr "Wedi anghofio'ch cyfrinair?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Pedwar swigen neges yn cynrychioli sgwrs grŵp. Neges gyntaf: \"Glywsoch chi'r newyddion? Mae gan Bluesky sgyrsiau grŵp nawr!\" Ail neges: \"na, wir\" Trydedd neges: \"Waw, 50 o bobl mewn un sgwrs!\" Pedwaredd neges: \"Gallwch anfon dolenni gwahodd hefyd!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Ryddhewch eich ffrwd" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Oddi wrth" #: src/screens/Hashtag.tsx:123 msgid "From {sanitizedAuthor}" -msgstr "" +msgstr "Gan {sanitizedAuthor}" #: src/screens/Hashtag.tsx:124 msgid "From @{sanitizedAuthor}" @@ -5672,9 +5645,9 @@ msgstr "Oddi wrth <0/>" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 msgid "From these people" -msgstr "" +msgstr "Gan y bobl yma" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Creu pecyn cychwyn" @@ -5712,65 +5685,65 @@ msgstr "Germ DM wedi'i ail gysylltu" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features we’re testing." -msgstr "" +msgstr "Cael mynediad cynnar at nodweddion arbrofol rydym yn eu profi." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Cael cymorth" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Cael hysbysiadau ar gyfer paciau cychwyn, gwirio a gweithgareddau eraill." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Cael hysbysiadau pan fydd pobl yn eich dilyn." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Cael hysbysiadau pan fydd pobl yn hoffi'ch postiadau." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Cael hysbysiadau pan fydd pobl yn hoffi eich ailbostiadau." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Cael hysbysiadau pan fydd pobl yn eich crybwyll chi." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Cael hysbysiadau pan fydd pobl yn dyfynnu eich postiadau." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Cael hysbysiadau pan fydd pobl yn ateb i'ch postiadau." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Cael hysbysiadau pan fydd pobl yn ail bostio'ch postiadau chi." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Cael hysbysiadau pan mae pobl yn ailbostio eich alibostiadau." #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:33 msgid "Get notifications when people send you message requests." -msgstr "" +msgstr "Cael hysbysiadau pan fydd pobl yn anfon atoch chi geisiadau neges." #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:23 msgid "Get notifications when people send you messages." -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Cael hysbysiadau pan mae gweithgaredd ar bostiadau rydych wedi tanysgrifio iddyn nhw." +msgstr "Cael hysbysiadau pan fydd pobl yn anfon negeseuon atoch chi." #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Cael gwybod am bostiadau newydd" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Cael gwybod am bostiadau ac atebion o'r cyfrifon rydych chi'u eu dewis." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Cael gwybod am bostiadau newydd gan {name}" @@ -5799,11 +5772,11 @@ msgstr "Cychwyn arni" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF wedi'i lwytho i fyny" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Rhowch wyneb i'ch proffil" @@ -5813,20 +5786,20 @@ msgstr "Gogoneddu trais" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5849,9 @@ msgid "Go live for" msgstr "Ewch yn fyw am" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "Mynd i broffil {0}" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Diweddarwyd enw grŵp sgwrsio" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Gosodiadau grwpiau sgwrsio" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Gall sgyrsiau grŵp gael uchafswm o {0, plural, zero {# pobl} one {# person} two {# berson} few {# pherson} many {# pherson} other {# person}} yn unig." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Mae'r grŵp wedi'i gloi" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Enw grŵp" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Mae enw'r grŵp yn rhy hir. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, zero {Uchafswm nifer y nodau yw #.} one {Uchafswm nifer y nodau yw #.} two {Uchafswm nifer y nodau yw #.} few {Uchafswm nifer y nodau yw #.} many {Uchafswm nifer y nodau yw #.} other {Uchafswm nifer y nodau yw #.}}" @@ -6077,7 +6051,7 @@ msgstr "Gweithgareddau niweidiol neu risg uchel" msgid "Harming or endangering minors" msgstr "Niweidio neu beryglu plant dan oed" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashnod" @@ -6098,7 +6072,7 @@ msgstr "Oes gennych chi god? <0>Cliciwch yma." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Ydy eich lleoliad yn anghywir gennym ni? <0>Tapiwch yma i ddiweddaru eich lleoliad gyda GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Yn cael trafferth?" @@ -6114,7 +6088,7 @@ msgstr "Wedi ei gadw gan Bluesky am 7 diwrnod i osgoi camddefnydd, yna ei ddileu msgid "Help" msgstr "Cymorth" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Helpwch bobl i wybod nad ydych chi'n bot trwy lwytho llun neu greu afatar." @@ -6140,7 +6114,7 @@ msgstr "Helo 'na!" msgid "Hidden" msgstr "Cuddiedig" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Wedi'i guddio gan eich gosodiadau cymedroli." @@ -6148,9 +6122,9 @@ msgstr "Wedi'i guddio gan eich gosodiadau cymedroli." msgid "Hidden list" msgstr "Rhestr gudd" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Rhestr gudd" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Cuddio" @@ -6181,7 +6155,7 @@ msgstr "Cuddio rhestrau" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "Cuddio cyfrinair" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6172,7 @@ msgstr "Cuddio ateb i bawb" msgid "Hide reply for me" msgstr "Cuddio ateb i mi" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Cuddio'r cerdyn hwn" @@ -6218,12 +6192,12 @@ msgstr "Cuddio'r ateb hwn?" msgid "Hide translation" msgstr "Cuddio'r cyfieithiad" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Cuddio pynciau sy'n trendio" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Cuddio pynciau sy'n trendio?" @@ -6240,7 +6214,7 @@ msgstr "Cuddio rhestr defnyddwyr" msgid "Hide verification badges" msgstr "Cuddio bathodynnau dilysu" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Yn cuddio'r cynnwys" @@ -6255,11 +6229,11 @@ msgstr "Hmm, mae'n edrych fel eich bod wedi mewngofnodi gyda <0>Chyfrinair ApSettings → Privacy and Security." msgstr "Os ydych chi eisiau cyfyngu ar bwy sy'n gallu derbyn hysbysiadau am weithgaredd eich cyfrif, gallwch ei newid yn <0>Gosodiadau → Preifatrwydd a Diogelwch." @@ -6548,7 +6519,7 @@ msgstr "O fewn yr ap, gwthio, pawb" msgid "In-app, push, people you follow" msgstr "O fewn yr ap, gwthio, pobl rydych yn eu dilyn" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Blwch derbyn gwag" @@ -6560,36 +6531,37 @@ msgstr "Dim yn y blwch derbyn!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" -msgstr "" +msgstr "Cynnwys" #. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 msgid "Include or exclude matching posts (currently: {0})" -msgstr "" +msgstr "Cynnwys neu beidio cynnwys postiadau tebyg: (cyfredol: {0})" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 msgid "Include posts and/or replies (currently: {currentLabel})" -msgstr "" +msgstr "Cynnwys postiadau a/neu atebion (cyfredol: {currentLabel})" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 msgid "Include posts made since this date" -msgstr "" +msgstr "Cynnwys postiadau ers y dyddiad yma" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 msgid "Include posts made until this date" -msgstr "" +msgstr "Cynnwys postiadau hyd y dyddiad yma" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 msgid "Include these results" -msgstr "" +msgstr "Cynnwys y canlyniadau yma" #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Dim ond chi ar hyn o bryd! Ychwanegwch fwy o bobl at eich pecyn cychwyn trwy chwilio uchod." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID gwaith: {0}" @@ -6816,8 +6788,8 @@ msgstr "Ymunwch â'r sgwrs" msgid "Journalism" msgstr "Newyddiaduraeth" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Cadwch i olygu" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Gwefan KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Wedi'i labelu gan {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Wedi'i labelu gan yr awdur." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Labeli" @@ -6850,9 +6822,9 @@ msgstr "Labeli wedi'u hychwanegu" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "Labeli wedi'u gosodi i'r postiad yma" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Anodiadau ar ddefnyddwyr a chynnwys yw labeli. Mae modd eu defnyddio i guddio, rhybuddio, a chategoreiddio'r rhwydwaith." @@ -6862,9 +6834,9 @@ msgstr "Labeli ar eich cyfrif" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 msgid "Language" -msgstr "" +msgstr "Iaith" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Gosodiadau Iaith" @@ -6874,7 +6846,7 @@ msgstr "Gosodiadau Iaith" msgid "Languages" msgstr "Ieithoedd" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Mwy" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Newydd ei gychwyn" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Diweddaraf" @@ -6904,14 +6876,14 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Dysgu rhagor" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Dysgu Rhagor" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." -msgstr "" +msgstr "Dysgu rhagor am <0>sut i ddefnyddio chwilio uwch." #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 msgid "Learn more about age assurance" @@ -6937,8 +6909,8 @@ msgstr "Dysgu rhagor am fewnforio cysylltiadau" msgid "Learn more about self hosting your PDS." msgstr "Dysgu rhagor am hunan westeio eich PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Dysgu rhagor am y cymedroli wedi'i osod i'r cynnwys hwn" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Dysgwch ragor am y newidiadau yma a sut i rannu eich barn gyda ni drwy ddarllen ein cofnod blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Dysgwch ragor am y rhybudd hwn" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Mae rhagor o wybodaeth yn eich <0>gosodiadau cyfrif" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Dysgu rhagor." @@ -6993,8 +6965,8 @@ msgstr "Gadael" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Gadael Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Bydd gadael y sgwrs hon yn ei chloi'n barhaol a fyddwch chi ddim yn gallu ailymuno." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Wedi gadael y grŵp sgwrsio." @@ -7042,7 +7014,7 @@ msgstr "Wedi gadael y grŵp sgwrsio." msgid "left to go." msgstr "chwith i fynd." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Gadewch i mi ddewis" @@ -7057,7 +7029,7 @@ msgstr "Ffwrdd â ni!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Golau" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Golau" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Hoffi" @@ -7076,7 +7048,7 @@ msgstr "Hoffi" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Yn hoffi ({0, plural, one {# yn hoffi} other {# yn hoffi}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Yn hoffi 10 postiad" @@ -7085,7 +7057,7 @@ msgstr "Yn hoffi 10 postiad" msgid "Like 10 posts to train the Discover feed" msgstr "Yn hoffi 10 postiad i hyfforddi'r ffrwd Darganfod" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Yn hoffi'r ffrwd hon" @@ -7093,8 +7065,8 @@ msgstr "Yn hoffi'r ffrwd hon" msgid "Like this labeler" msgstr "Yn hoffi'r labelwr hwn" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Wedi'i hoffi gan" @@ -7111,27 +7083,45 @@ msgstr "Wedi'i Hoffi Gan" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Wedi'i hoffi gan {0, plural, one {# defnyddiwr} other {# defnyddiwr}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Hoffwyd gan {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Hoffwyd gan {0} a {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Wedi'i hoffi gan {likeCount, plural, one {# defnyddiwr} other {# defnyddiwr}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Yn hoffi" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Yn hoffi eich ail bostiadau" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Yn hoffi'r postiad hwn" @@ -7144,7 +7134,7 @@ msgstr "Llinol" msgid "Link copied to clipboard" msgstr "Dolen wedi'i chopïo i'r clipfwrdd" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Rhestr" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Rhestr heb ei thewi" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "BYW" msgid "Live event happening now: {0}" msgstr "Digwyddiadau byw'n digwydd nawr: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Digwyddiad byw cudd" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Amlygu digwyddiad cudd" @@ -7279,12 +7269,12 @@ msgstr "Mae nodwedd byw yn y cyflwr beta" msgid "Live link" msgstr "Cyswllt byw" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Llwytho rhagor" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Llwytho rhagor o ffrydiau wedi'u hawgrymu" @@ -7292,8 +7282,8 @@ msgstr "Llwytho rhagor o ffrydiau wedi'u hawgrymu" msgid "Load new notifications" msgstr "Llwytho hysbysiadau newydd" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Cloi'r grŵp sgwrsio hwn" msgid "Locked" msgstr "Wedi cloi" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Cofnod" @@ -7387,7 +7377,7 @@ msgstr "GIF caru" msgid "Make adjustments to email settings for your account" msgstr "Gwnewch addasiadau i osodiadau e-bost eich cyfrif" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Gwnewch un i mi" @@ -7411,22 +7401,22 @@ msgstr "Rheoli eich geiriau a thagiau wedi'u tewi" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "Â llaw" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "Nodi'r cyfan fel wedi'u darllen" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Nodi'r holl sgyrsiau fel wedi'u darllen" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marcio fel weedi darllen" msgid "Marked all as read" msgstr "Wedi marcio'r cyfan fel wedi'u darllen" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Nodi'r holl sgyrsiau fel wedi'u darllen" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Wedi nodi pob cais wedi'i ddarllen" @@ -7456,8 +7446,12 @@ msgstr "Wedi nodi pob cais wedi'i ddarllen" msgid "Maybe later" msgstr "Efallai yn nes ymlaen" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Cyfryngau" @@ -7475,7 +7469,7 @@ msgstr "Cyfryngau wedi'u cadw ar ddyfais arall" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Cyfryngau a all fod yn annymunol neu'n amhriodol i rai cynulleidfaoedd." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Aelod wedi'i dynnu o'r grŵp sgwrsio." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "defnyddwyr wedi'u crybwyll" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Crybwylliadau" @@ -7502,7 +7496,7 @@ msgstr "Crybwylliadau" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 msgid "Mentions of these people" -msgstr "" +msgstr "Crybwyll y bobl yma" #: src/components/Menu/index.tsx:119 msgid "Menu" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Neges wedi'i dileu" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Methodd y neges a mynd." @@ -7563,15 +7557,15 @@ msgstr "Neges yn rhy hir ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Dewisiadau negeseuon" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Negeseuon" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Mae negeseuon gan y person yma wedi'u cuddio tra'u bod nhw yn eich rhwystro." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Mae negeseuon gan y person yma wedi'u cuddio tra'ch bod chi'n eu rhwystro." @@ -7592,7 +7586,7 @@ msgstr "Camarweiniol" msgid "Missing media" msgstr "Cyfryngau coll" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Cymedroli" @@ -7636,7 +7630,7 @@ msgstr "Rhestr cymedroli wedi'i diweddaru" msgid "Moderation lists" msgstr "Rhestrau cymedroli" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Rhestrau Cymedroli" @@ -7645,7 +7639,7 @@ msgstr "Rhestrau Cymedroli" msgid "moderation settings" msgstr "gosodiadau cymedroli" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Cyflyrau cymedroli" @@ -7786,7 +7780,7 @@ msgstr "Wedi'i dewi" msgid "Muted accounts" msgstr "Cyfrifon wedi'u tewi" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cyfrifon Wedi'u Tewi" @@ -7867,7 +7861,6 @@ msgstr "Angen adrodd ar fater torri hawlfraint, cais cyfreithiol, neu gydymffurf msgid "Nevermind, create a handle for me" msgstr "Dim gwahaniaeth, crëwch enw dangos i mi" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Newydd" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {postiad} other {postiad}} newydd gan {firstAut #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Sgwrs newydd" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Nodwedd Newydd" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Dilynwyr newydd" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Grŵp sgwrsio newydd" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Grŵp sgwrsio newydd" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Grŵp sgwrsio newydd gyda:" @@ -7966,15 +7959,15 @@ msgstr "Rhestr newydd" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" -msgstr "" +msgstr "Ceisiadau neges newydd" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" -msgstr "" +msgstr "Negeseuon newydd" #: src/screens/Login/SetNewPasswordForm.tsx:130 #: src/screens/Settings/components/ChangePasswordDialog.tsx:204 @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Cyfrinair newydd" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Postiad newydd" @@ -8011,7 +8004,7 @@ msgstr "Pecyn cychwyn newydd" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "Newydd i Bluesky? <0>Cofrestrwch" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Atebion diweddaraf yn gyntaf" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Newyddion" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Delwedd nesaf" msgid "Night" msgstr "Nos" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Dim hysbysebion, dim tracio ymwthiol, dim maglau ymgysylltu. Mae Bluesky'n parchu'ch amser a'ch sylw." @@ -8067,7 +8060,7 @@ msgstr "Dim cyfrineiriau apiau eto" #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Dim nodweddion beta ar hyn o bryd." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8091,7 @@ msgstr "Dim dyddiad dod i ben wedi'i osod" msgid "No feeds found. Try searching for something else." msgstr "Heb ganfod unrhyw ffrydiau. Ceisiwch chwilio am rywbeth arall." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Dim dilynwyr eto" @@ -8118,7 +8111,7 @@ msgstr "Dim delwedd" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Neb yn hoffi eto" @@ -8135,7 +8128,7 @@ msgstr "Dim rhestrau" msgid "No longer following {0}" msgstr "Dim yn dilyn {0} bellach" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Dim cyfryngau eto" @@ -8143,7 +8136,7 @@ msgstr "Dim cyfryngau eto" msgid "No messages yet" msgstr "Dim negeseuon eto" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Dim rhagor o algorithmau sgrolio gwae, ofer. Darganfyddwch ffrydiau sy'n gweithio drosoch chi, nid yn eich erbyn." @@ -8184,12 +8177,12 @@ msgstr "Gall neb anfon negeseuon" msgid "No posts here" msgstr "Dim postiadau yma" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Dim postiadau eto" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Dim dyfyniadau eto" @@ -8200,9 +8193,9 @@ msgstr "Dim GIFau diweddar eto. Dewiswch un i'w weld yma." #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 msgid "No replies" -msgstr "" +msgstr "Dim atebion" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Dim atebion eto" @@ -8217,13 +8210,13 @@ msgstr "Dim canlyniad" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Dim canlyniadau" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Dim canlyniadau ar gyfer \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Heb ganfod canlyniad" msgid "No results found for \"{query}\"" msgstr "Heb ganfod canlyniadau \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." -msgstr "" +msgstr "Heb ganfod unrhyw ganlyniadau ar gyfer “<0>{query}” gyda'r hidlwyr chwilio uwch." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Dim canlyniadau i \"<0>{query}\"." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." -msgstr "" +msgstr "Heb ganfod unrhyw ganlyniadau ar gyfer eich ymholiad gyda'r hidlwyr chwilio uwch." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Dim canlyniadau." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Dim Pecynnau Cychwyn eto" @@ -8265,7 +8258,7 @@ msgstr "Dim diolch" msgid "No translation received from your device." msgstr "Dim cyfieithiadau wedi'u derbyn o'ch dyfais." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Dim postiadau fideo eto" @@ -8278,7 +8271,7 @@ msgstr "Neb" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Does neb wedi hoffi hwn eto. Efallai y dylech chi fod y cyntaf!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Does neb wedi dyfynnu hwn eto. Efallai y dylech chi fod y cyntaf!" @@ -8298,10 +8291,14 @@ msgstr "Delweddau personol heb gydsyniad" msgid "Non-sexual Nudity" msgstr "Noethni nad yw'n rhywiol" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Dim" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" -msgstr "" +msgstr "Dim un o'r geiriau hyn" #: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 msgid "Not available on this platform" @@ -8316,8 +8313,8 @@ msgstr "Nid yw ar gael ar y platfform yma." msgid "Not followed by anyone you’re following" msgstr "Ddim yn cael ei ddilyn gan neb rydych chi'n ei ddilyn" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Heb ei Ganfod" @@ -8333,7 +8330,7 @@ msgstr "Nodyn am rannu" 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 "Nodyn: Mae Bluesky yn rhwydwaith agored a chyhoeddus. Dim ond yn cyfyngu ar welededd eich cynnwys ar ap a gwefan Bluesky y mae'r gosodiad hwn yn ei wneud. Efallai na fydd apiau eraill yn parchu'r gosodiad hwn. Mae'n bosibl y bydd eich cynnwys yn dal i gael ei ddangos i ddefnyddwyr sydd wedi allgofnodi gan apiau a gwefannau eraill." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Sylw: Dim ond ar gyfer aelodau sydd wedi mewngofnodi mae'r postiad hwn yn weladwy." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Dim wedi'i gadw eto" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Gosodiadau hysbysu" @@ -8353,11 +8350,12 @@ msgstr "Gosodiadau hysbysu" msgid "Notification sounds" msgstr "Seiniau hysbysu" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "O na!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "Iawn" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Iawn" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Ailosod cyflwyno" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Dyw un o'ch derbynwyr chi ddim yn caniatáu sgyrsiau grŵp." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Mae un o'ch derbynwyr chi wedi'ch rhwystro a does dim modd anfon neges ato." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Does dim testun amgen ar un neu fwy o GIFau." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Does dim testun amgen ar un neu fwy o fideos." @@ -8454,11 +8454,11 @@ msgstr "Dyw un neu fwy o'r ffeiliau hyn ddim yn cael eu cynnal." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Mae un neu fwy o'r ffeiliau hyn yn rhy fawr. Uchafswm maint yw {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Mae un neu ragor o bostiadau'n rhy hir i gadw fel drafft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Uchafswm nifer y nodau yw #.} other {Uchafswm nifer y nodau yw #.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Does dim testun amgen ar un neu fwy o fideos." @@ -8471,7 +8471,7 @@ msgstr "Dim ond {0} all ateb." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Dim ond {0} o {1} {2, plural, zero {delweddau} one {ddelwedd} two {ddelwedd} few {delwedd} many {delwedd} other {delwedd}} wedi'i hychwanegu; y terfyn yw {MAX_GALLERY_IMAGES}" @@ -8509,17 +8509,17 @@ msgstr "Dim ond pobl mae perchennog y sgwrs yn eu dilyn all ymuno" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" -msgstr "" +msgstr "Dim ond postiadau gyda chyfryngau" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 msgid "Only posts with videos" -msgstr "" +msgstr "Dim ond postiadau gyda fideos" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 msgid "Only replies" -msgstr "" +msgstr "Dim ond atebion" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Dim ond ffeiliau WebVTT (.vtt) sy'n cael eu cefnogi" @@ -8532,19 +8532,19 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Wps, dyw'r proffil hwn ddim yn bodoli. Rhowch gynnig ar sganio un arall." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Wps!" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 msgid "Open advanced search options" -msgstr "" +msgstr "Agor y dewisiadau chwilio uwch" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Agor y crëwr avatar" @@ -8570,21 +8570,22 @@ msgstr "Agor dewisiadau sgyrsiau" msgid "Open draft" msgstr "Agor drafft" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Agor dewislen drôr" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Agor y dewisydd emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Agor sgrin manylion ffrwd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Agor dewislen dewisiadau ffrwd" @@ -8627,7 +8628,7 @@ msgstr "Agor tudalen dadfygio cymedroli" msgid "Open muted words and tags settings" msgstr "Agor gosodiadau geiriau wedi'u tewi a thagiau" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Agor pecyn" @@ -8681,7 +8682,7 @@ msgstr "Yn agor deialog i ychwanegu rhybudd cynnwys at eich postiad" #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "Yn agor deialog i newid y darparwr gwesteio rydych yn mewngofnodi iddo" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8700,7 @@ msgstr "Yn agor manylion ychwanegol cofnod dadfygio" msgid "Opens alt text dialog" msgstr "Yn agor deialog testun amgen" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Yn agor camera ar ddyfais" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Yn agor llif i greu cyfrif Bluesky newydd" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Yn agor llif i fewngofnodi i'ch cyfrif Bluesky presennol" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Cyfrinair wedi'i ddiweddaru!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Oedi" @@ -8925,12 +8926,12 @@ msgstr "Oedi" msgid "Pause GIF" msgstr "Oedi GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Oedi fideo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Pobl" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Mae'r rhai mae {ownerName} yn eu dilyn yn gallu gofyn i ymuno" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Pobl yn cael eu dilyn gan @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Pobl yn dilyn @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Pobl rwy'n eu dilyn" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Mae'r rhai rwy'n eu dilyn yn gallu gofyn i gael ymuno" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Pobl rydych chi'n eu dilyn" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Lluniau ar gyfer oedolion." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Pinio'r frwd" @@ -9034,7 +9035,7 @@ msgstr "Pinio'r frwd" msgid "Pin to home" msgstr "Pinio i cartref" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Pinio i Cartref" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Piniwyd" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Wedi'i binio {0} i Cartref" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Wedi'i binio i'ch ffrydiau" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Chwarae" @@ -9076,8 +9077,8 @@ msgstr "Chwarae {0}" msgid "Play GIF" msgstr "Chwarae GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Chwarae fideo" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Ysgrifennwch eich neges isod:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Gwleidyddiaeth" @@ -9269,7 +9270,7 @@ msgstr "Gwleidyddiaeth" msgid "Porn" msgstr "Pornograffi" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Postio" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Postio" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Postiwch lun" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Postiwch fideo" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Postio'r Cyfan" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Postio beth bynnag" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Postiad wedi'i rwystro" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Postiad gan @{0}" @@ -9340,7 +9341,7 @@ msgstr "Postiad Wedi'i Guddio Gennych Chi" msgid "Post interaction settings" msgstr "Gosodiadau rhyngweithio postiadau" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Gosodiadau Rhyngweithio Postiadau" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Postiad wedi'i binio" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Postiad wedi'i gadw" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,14 +9378,15 @@ msgstr "Postiad wedi ei ddadbinio" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postiadau" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 msgid "Posts and replies" -msgstr "" +msgstr "Postiadau ac atebion" #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." @@ -9398,6 +9396,10 @@ msgstr "Mae modd tewi postiadau ar sail eu testun, eu tagiau neu'r ddau. Rydym y msgid "Posts hidden" msgstr "Postiadau wedi'u cuddio" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Postiadau, Atebion" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Dolen camarweiniol posib" @@ -9449,20 +9451,21 @@ msgstr "Preifatrwydd" msgid "Privacy and security" msgstr "Preifatrwydd a diogelwch" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Preifatrwydd a Diogelwch" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Gosodiadau Preifatrwydd a Diogelwch" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polisi Preifatwydd" msgid "Privacy violation of a minor" msgstr "Torri ar breifatrwydd plentyn dan oed" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Yn prosesu GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Yn prosesu fideo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Rhestrau cyhoeddus, y mae modd eu rhannu o ddefnyddwyr i'w tewi neu eu rhwystro'n lluosog." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Cyhoeddi postiad" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Cyhoeddi postiadau" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Cyhoeddi atebion" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Cyhoeddi ateb" @@ -9599,12 +9602,12 @@ msgstr "Analluogwyd postiadau dyfyniad" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Dyfyniadau" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Dyfyniadau'r postiad hwn" @@ -9647,21 +9650,21 @@ msgstr "Ail agorwch eich cyfrif" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Darllenwch{0, plural, zero {}one {# ateb arall} two {# ateb arall} few {# ateb arall} many {# ateb arall} other {# ateb arall}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" -msgstr "" +msgstr "Darllenwch am sut i ddefnyddio hidlyddion chwilio uwch" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Darllen postiad blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Darllen llai" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Darllen mwy" @@ -9687,11 +9690,11 @@ msgstr "Darllenwch Bolisi Preifatrwydd Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Darllenwch Delerau Gwasanaeth Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Sgyrsiau go-iawn." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Pobl go-iawn." @@ -9721,10 +9724,6 @@ msgstr "Chwilio diweddar" msgid "Recently used" msgstr "Defnyddiwyd yn ddiweddar" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Argymhellwyd" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Ailgysylltu" @@ -9748,7 +9747,7 @@ msgstr "Gwrthod cais am sgwrs" msgid "Reject join request" msgstr "Gwrthod cais i ymuno" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Ail-lwytho sgyrsiau" @@ -9766,7 +9765,7 @@ msgstr "Ail-lwytho sgyrsiau" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Tynnu" @@ -9790,10 +9789,10 @@ msgstr "Tynnu {displayName}?" #: src/screens/Search/components/SearchHistory.tsx:182 msgid "Remove {q}" -msgstr "" +msgstr "Tynnu {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Tynnu cyfrif" @@ -9839,21 +9838,21 @@ msgstr "Tynnu ffrwd?" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 msgid "Remove filter" -msgstr "" +msgstr "Tynnu hidlydd" #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Tynnu o'r sgwrs" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Tynnu o fy ffrydiau" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Tynnu o fynediad cyflym?" @@ -9862,7 +9861,7 @@ msgstr "Tynnu o fynediad cyflym?" msgid "Remove from saved feeds" msgstr "Tynnu o'r ffrydiau wedi'u cadw" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Tynnu o'r postiadau wedi'u cadw" @@ -9880,8 +9879,8 @@ msgstr "Tynnu delwedd" msgid "Remove live status" msgstr "Dileu statws byw" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Tynnu aelod" @@ -9943,7 +9942,7 @@ msgstr "Wedi'i dynnu o'r rhestr" msgid "Removed from saved feeds" msgstr "Wedi'i dynnu o'r ffrydiau sydd wedi'u cadw" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Wedi'i dynnu o'r postiadau wedi'u cadw" @@ -9952,7 +9951,7 @@ msgstr "Wedi'i dynnu o'r postiadau wedi'u cadw" msgid "Removed from starter pack" msgstr "Wedi ei dynnu o'r pecyn cychwyn" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Mewn ymateb i chi" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Neges a atebwyd gan {senderName}, tapiwch i sgrolio ati" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" -msgstr "" +msgstr "Anfonwyd y neges yr atebwyd iddi cyn i chi ymuno" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Neges a atebwyd, tapiwch i sgrolio ati" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Atebion" @@ -10037,7 +10037,7 @@ msgstr "Mae atebion i'r postiad hwn wedi'u hanalluogi." msgid "Reply" msgstr "Ateb" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Ateb" @@ -10098,8 +10098,8 @@ msgstr "Adrodd ar sgwrs" msgid "Report dialog" msgstr "Deialog adrodd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Adrodd ar ffrwd" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Wedi'i ail-bostio gennych chi" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Ail bostiadau" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Ail-bostiadau'r postiad hwn" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Ail bostiadau eich ail bostiadau" @@ -10253,7 +10253,7 @@ msgstr "Gofynnwyd" msgid "Requests" msgstr "Ceisiadau" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10333,7 +10333,7 @@ msgstr "Ailosod cyfrinair" #: src/screens/Login/LoginForm.tsx:422 msgid "Reset your password by sending a code to your email" -msgstr "" +msgstr "Ailosodwch eich cyfrinair drwy anfon cod i'ch e-bost" #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 @@ -10358,10 +10358,10 @@ msgstr "Yn ceisio'r weithred olaf eto, oedd yn wallus" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Yn mynd nôl i'r dudalen gartref" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Yn mynd nôl i'r dudalen flaenorol" @@ -10406,7 +10406,7 @@ msgstr "Yn mynd nôl i'r cam blaenorol" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "Datgelu cyfrinair" #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "Cadw dyddiad geni" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Cadw'r newidiadau" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Cadw newidiadau?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Cadw drafft" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Cadw drafft?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Cadw cod QR" msgid "Save these options for next time" msgstr "Cadw'r dewisiadau hyn ar gyfer y tro nesaf" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Cadw i fy ffrydiau" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Ffrydiau wedi'u Cadw" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Postiadau Wedi'u Cadw" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Wedi'i gadw i'ch ffrydiau" @@ -10520,8 +10520,8 @@ msgstr "Wedi'i gadw i'ch ffrydiau" msgid "Say hello!" msgstr "Dywedwch helo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Dywedwch helo wrth rywun" @@ -10535,7 +10535,7 @@ msgstr "Sganio" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Sganio cod QR" @@ -10543,15 +10543,15 @@ msgstr "Sganio cod QR" msgid "Science" msgstr "Gwyddoniaeth" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Sgrolio i'r chwith" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Sgrolio i'r dde" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Sgrolio i'r neges y mae hyn yn ateb iddi" @@ -10564,8 +10564,8 @@ msgstr "Sgrolio i'r brig" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Chwilio" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Chwilio postiadau @{0}" @@ -10602,21 +10602,21 @@ msgstr "Chwiliwch am \"{interestsDisplayName}\" (gweithredol)" #: src/screens/Search/components/AutocompleteResults.tsx:49 msgid "Search for “{searchText}”" -msgstr "" +msgstr "Chwilio am \"{searchText}\"" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "Chwilio am {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "Chwiliwch am ffrydiau rydych chi am eu hawgrymu i eraill." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Chwilio am ragor o gyfrifon" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Chwilio am ragor o ffrydiau" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Chwilio GIFau" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Dyw chwilio ddim ar gael pan nad ydych wedi mewngofnodi" @@ -10661,7 +10661,7 @@ msgstr "Chwilio proffiliau" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 msgid "Search query" -msgstr "" +msgstr "Ymholiad chwilio" #: src/screens/Profile/ProfileSearch.tsx:38 msgid "Search..." @@ -10709,6 +10709,7 @@ msgstr "Gweld swyddi yn Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Gweld rhagor" @@ -10716,8 +10717,12 @@ msgstr "Gweld rhagor" msgid "See more suggested profiles" msgstr "Gweld rhagor o broffiliau diddorol" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Gweld cyfrifon sy'n cael eu hawgrymu" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Llithrydd chwilio. Defnyddiwch y bysellau saeth i chwilio ymlaen ac yn ôl, a lle i chwarae/oedi" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Dewiswch gategori \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Dewiswch {0}" msgid "Select {langName}" msgstr "Dewis {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Dewiswch liw" @@ -10764,11 +10769,11 @@ msgstr "Dewiswch gyfrif" msgid "Select an app language" msgstr "Dewiswch iaith ap" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Dewiswch afatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Dewiswch emoji" @@ -10780,12 +10785,13 @@ msgstr "Dewis opsiwn" msgid "Select app language" msgstr "Dewis iaith yr ap" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Dewis ffeil capsiynau (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Dewis sgwrs \"{name}\"" @@ -10801,7 +10807,7 @@ msgstr "Dewis hyd" #. placeholder {0}: labels[filter.field].title #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 msgid "Select filter type (currently: {0})" -msgstr "" +msgstr "Dewis y math o hidlydd (ar hyn o bryd: {0})" #: src/screens/Login/index.tsx:166 msgid "Select from an existing account" @@ -10826,7 +10832,7 @@ msgstr "Dewiswch GIF" msgid "Select GIF \"{0}\"" msgstr "Dewiswch GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Dewis aelodau o grŵp sgwrsio" @@ -10864,7 +10870,7 @@ msgstr "Dewis prif iaith" msgid "Select telephone code" msgstr "Dewis cod ffôn" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Dewiswch yr emoji {emojiName} fel eich afatar" @@ -10945,7 +10951,8 @@ msgstr "Anfonwch neges" msgid "Send post to {name}" msgstr "Anfon postiad at {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Anfonwch bostiad i..." @@ -10963,12 +10970,12 @@ msgstr "Anfon y neges o'ch ffôn" msgid "Send verification email" msgstr "Anfonwch e-bost dilysu" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Anfonwch trwy neges uniongyrchol" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "Rhowch eich dyddiad geni isod a byddwn yn eich cael yn ôl i bostio a da #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "gosod eich darparwr gwesteio â llaw" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "Gosod eich darparwr gwesteio â llaw" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "Yn gosod e-bost ar gyfer ailosod cyfrinair" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Gosodiadau" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Gosodiadau gweithgareddau gan eraill" @@ -11036,49 +11043,49 @@ msgstr "Gosodiadau gweithgareddau gan eraill" msgid "Settings for allowing others to be notified of your posts" msgstr "Gosodiadau ar gyfer caniatáu i eraill gael gwybod am eich postiadau" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Gosodiadau hysbysiadau hoffi" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Gosodiadau hysbysiadau crybwyll" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Gosodiadau hysbysiadau dilynwr newydd" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Gosodiadau hysbysiadau popeth arall" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Gosodiadau hysbysiadau hoffi eich ail bostiadau" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" -msgstr "" +msgstr "Gosodiadau ar gyfer hysbysiadau am geisiadau negeseuon newydd" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" -msgstr "" +msgstr "Gosodiadau hysbysiadau ar gyfer negeseuon newydd" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Gosodiadau hysbysiadau ail bostiadau eich ail bostiadau" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Gosodiadau hysbysiadau dyfynnu" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Gosodiadau hysbysiadau ateb" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Gosodiadau hysbysiadau ail bostio" @@ -11115,8 +11122,8 @@ msgstr "Rhannu ystod oed" msgid "Share anyway" msgstr "Rhannwch beth bynnag" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Rhanwch DID awdur" @@ -11125,9 +11132,9 @@ msgstr "Rhanwch DID awdur" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Rhannu adborth" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Deialog rhannu dolen" msgid "Share my profile" msgstr "Rhannu fy mhroffil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Rhannu postiad i:// URI" @@ -11169,14 +11176,14 @@ msgstr "Rhannu Proffil" msgid "Share QR code" msgstr "Rhannwch god QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Rhannwch y ffrwd hon" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" -msgstr "" +msgstr "Rhannu'r chwilio hwn" #: src/screens/StarterPack/StarterPackScreen.tsx:440 msgid "Share this starter pack" @@ -11186,8 +11193,8 @@ msgstr "Rhannwch y pecyn cychwyn hwn" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Rhannwch y pecyn cychwynnol hwn a helpwch bobl i ymuno â'ch cymuned ar Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,23 +11210,23 @@ msgstr "Rhannwch eich cysylltiadau er mwyn darganfod ffrindiau" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughts…" -msgstr "" +msgstr "Rhannu eich meddyliau…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Profwr Dewisiadau Rhannu" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 msgid "Sharing your age range reveals only the range associated with your Apple Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "Mae rhannu eich ystod oedran yn datgelu dim ond yr ystod sy'n gysylltiedig â'ch Cyfrif Apple – er enghraifft, eich bod yn 18 oed o leiaf. <0>Nid yw eich union oedran a'ch pen-blwydd byth yn cael eu rhannu, ac nid yw'r data hwn byth yn gadael y ddyfais hon. Felly, mae'n galluogi mynediad ar y ddyfais hon yn unig. Fel arall, <1>gallwch ddefnyddio ein partner dibynadwy, KWS, i gwblhau eich dilysiad a galluogi mynediad ar bob llwyfan." #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "Mae rhannu eich ystod oedran yn datgelu dim ond yr ystod sy'n gysylltiedig â'ch Cyfrif Google – er enghraifft, eich bod o leiaf 18 oed. <0>Nid yw eich union oedran a'ch pen-blwydd byth yn cael eu rhannu, ac nid yw'r data hwn byth yn gadael y ddyfais hon. Felly, mae'n galluogi mynediad ar y ddyfais hon yn unig. Fel arall, <1>gallwch ddefnyddio ein partner dibynadwy, KWS, i gwblhau eich dilysiad a galluogi mynediad ar bob llwyfan." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Dangos" msgid "Show alt text" msgstr "Dangos testun amgen" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Dangos beth bynnag" @@ -11274,9 +11281,9 @@ msgstr "Dangos rhestr beth bynnag" msgid "Show lists of users to select from" msgstr "Yn dangos rhestrau o ddefnyddwyr i ddews ohonyn nhw" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Dangos Rhagor" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Dangos rhagor" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Dangos rhybudd a hidlo o ffrydiau" msgid "Show when you’re live" msgstr "Dangos pan fyddwch yn fyw" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Yn dangos manylion pryd cafodd y postiad hwn ei chreu" @@ -11341,15 +11348,15 @@ msgstr "Yn dangos manylion pryd cafodd y postiad hwn ei chreu" msgid "Shows other accounts you can switch to" msgstr "Yn dangos cyfrifon eraill y gallwch newid iddyn nhw" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Yn dangos y cynnwys" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Yn dangos y cynnwys" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "Mewngofnodi fel {0}" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in as…" -msgstr "" +msgstr "Mewngofnodi fel…" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "Allgofnodi?" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "Cofrestru" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Mae Angen Mewngofnodi" @@ -11450,7 +11457,7 @@ msgstr "Wedi mewngofnodi fel @{0}" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 msgid "Since" -msgstr "" +msgstr "Ers" #: src/components/contacts/screens/PhoneInput.tsx:163 #: src/components/contacts/screens/VerifyNumber.tsx:205 @@ -11469,7 +11476,7 @@ msgstr "Hepgor" msgid "Skip contact sharing and continue to the app" msgstr "Hepgor rhannu cysylltiadau ac ymlaen i'r ap" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Hepgor postiadau gwag?" @@ -11487,7 +11494,7 @@ msgstr "Mynd i'r cam nesaf" msgid "slide" msgstr "sleid" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Llai" @@ -11499,14 +11506,14 @@ msgstr "Yn tewi'r nodyn atgoffa" msgid "So many thoughts, you should post one" msgstr "Gymaint o syniadau, dylech chi bostio un" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Y cyfrwng cymdeithasol rydych chi'n ei reoli." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Prawf cymdeithasol ar bostiadau" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Gadawodd rhywun y grŵp" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Ymateb rhywun oedd {0}" @@ -11554,9 +11561,9 @@ msgstr "Ymateb rhywun oedd {0}" msgid "Someone reacted {0} to {target}" msgstr "Ymateb rhywun {0} i {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" -msgstr "" +msgstr "Atebodd rhywun" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Aeth rhywbeth o'i le, ceisiwch eto" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Aeth rhywbeth o'i le. Ceisiwch eto cyn bo hir." msgid "Something went wrong. Please try again." msgstr "Aeth rhywbeth o'i le. Ceisiwch eto." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Rhywbeth o'i le? Rhowch wybod i ni." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Sbam neu ymddygiad annilys neu dwyllodrus" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Chwaraeon" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Adnabod postiadau mae eich ffrindiau a'r bobl rydych yn eu dilyn wedi'u hoffi." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Dechreuwch sgwrs, a bydd yn ymddangos yma." msgid "Start a group chat" msgstr "Cychwyn sgwrs grŵp" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Cychwyn sgwrs newydd" @@ -11682,17 +11689,17 @@ msgstr "Dechreuwch ychwanegu pobl" msgid "Start adding people!" msgstr "Dechreuwch ychwanegu pobl!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Cychwyn sgwrsio" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Dechreuwch sgwrs gyda {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pecyn Cychwyn" @@ -11715,12 +11722,16 @@ msgstr "Pecyn cychwyn gennych chi" msgid "Starter pack is invalid" msgstr "Mae'r pecyn cychwyn yn annilys" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Pecynnau cychwyn" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pecynnau Cychwyn" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Mae pecynnau cychwyn yn caniatáu i chi rannu gyda'ch ffrindiau eich hoff ffrydiau a phobl." @@ -11728,7 +11739,7 @@ msgstr "Mae pecynnau cychwyn yn caniatáu i chi rannu gyda'ch ffrindiau eich hof msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Mae pecynnau cychwyn yn gadael i chi rannu eich hoff ffrydiau a phobl gyda'ch ffrindiau." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Mae Pecynnau Cychwyn yn gadael i chi rannu'ch hoff ffrydiau a phobl gyda'ch ffrindiau." @@ -11742,7 +11753,7 @@ msgstr "Tudalen Statws" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Cam {0} o {1}" @@ -11754,7 +11765,7 @@ msgstr "Storfa wedi'i chlirio, mae angen i chi ailgychwyn yr ap nawr." msgid "Stored as part of a secure code for matching with others" msgstr "Wedi'i gadw fel rhan o god diogel ar gyfer cyfatebu ag eraill" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Llyfr stori" @@ -11787,7 +11798,7 @@ msgstr "Cyflwyno Apêl" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Cyflwyno adborth" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Tanysgrifiwch i {publicationTitle} ar {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Tanysgrifiwch i @{0} i ddefnyddio'r labeli hyn:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Wedi'i ddilysu'n llwyddiannus" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Awgrymwyd" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Cyfrifon wedi'u hawgrymu" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Machlud Haul" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Dyw cynnal y nodwedd hon heb ei alluogi yn eich gwald chi eto! Dewch 'nôl rhywbryd eto." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Does dim modd i gyfrifon wedi'u hatal cymryd rhan mewn sgyrsiau grŵp." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Does dim modd i gyfrifon wedi'u hatal cymryd rhan mewn sgyrsiau." @@ -11921,8 +11934,8 @@ msgstr "Newid i {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "System" @@ -11945,7 +11958,7 @@ msgstr "Cadwch y sgwrs yn breifat." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tapiwch isod i ganiatáu i Bluesky gael mynediad i'ch lleolaid. Byddwn yn defnyddio'r data hwnnw i bennu'n fwy cywir y cynnwys a'r nodweddion sydd ar gael yn eich ardal chi." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tapiwch am fanylion" @@ -11976,7 +11989,7 @@ msgstr "Tapiwch i gau'r ddewislen cyd-destun" msgid "Tap to copy this invite link" msgstr "Tapiwch i gopïo'r ddolen wahodd hon" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tapiwch i gau" @@ -12003,7 +12016,7 @@ msgstr "Tapio i dynnu eich {0} ymateb" msgid "Tap to request access to join this group chat" msgstr "Tapiwch i ofyn am fynediad i ymuno â'r sgwrs grŵp hon" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tapio i geisio eto" @@ -12016,7 +12029,7 @@ msgstr "Tapio i ddangos {0} ymateb" msgid "Tap to show all reactions" msgstr "Tapio i ddangos pob ymateb" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tapio i weld ymatebion" @@ -12032,7 +12045,7 @@ msgstr "Tasg wedi'i chwblhau - 10 yn dilyn!" msgid "Task complete - 10 likes!" msgstr "Tasg wedi'i chwblhau - 10 yn hoffi!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Dysgwch ein algorithm yr hyn rydych yn ei hoffi" @@ -12060,7 +12073,7 @@ msgstr "Telerau" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Diolch am eich adborth! Mae wedi cael ei anfon at weithredwr y ffrwd.i" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Diolch am eich adborth!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Doedd dim modd dod o hyd i'r pecyn cychwyn hwnnw." msgid "That username is already taken" msgstr "Mae'r enw defnyddiwr hwnnw eisoes wedi'i gymryd" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Dyna i gyd, bobl!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Dyna bopeth!" @@ -12171,7 +12184,7 @@ msgstr "Mae'r ffrwd wedi'i ddisodli gan Darganfod." #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "Rhoddwyd y labeli canlynol ar y postiad hwn." #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "Mae'n ymddangos bod y gweinydd yn cael problemau. Ceisiwch eto ymhen ych msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Mae'r pecyn cychwyn rydych chi'n ceisio ei weld yn annilys. Gallwch ddileu'r pecyn cychwyn hwn yn lle hynny." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Testun y ddewislen cyd-destun" @@ -12238,7 +12251,7 @@ msgstr "Mae'r cod dilysu darparwyd gennych yn annilys. Gwnewch yn siŵr eich bod msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Doedd y darparwr gwirio ddim yn gallu anfon cod i'ch rhif ffôn. Gwiriwch eich rhif ffôn a cheisiwch eto." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Thema" @@ -12266,7 +12279,7 @@ msgstr "Roedd problem llwytho GIFau. Gwiriwch eich cysylltiad â cheisio eto." msgid "There was a problem with your internet connection, please try again" msgstr "Roedd anhawster gyda'ch cysylltiad rhyngrwyd, ceisiwch eto" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Roedd anhawster gyda'ch cysylltiad rhyngrwyd, ceisiwch eto" msgid "There was an issue contacting the server" msgstr "Bu anhawster wrth gysylltu â'r gweinydd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Bu anhawster wrth gysylltu â'r gweinydd, gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." @@ -12283,8 +12296,8 @@ msgstr "Bu anhawster wrth gysylltu â'r gweinydd, gwiriwch eich cysylltiad rhyng msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bu anhawster wrth geisio cael hysbysiadau. Tapiwch yma i geisio eto." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Bu anhawster wrth nôl postiadau. Tapiwch yma i geisio eto." @@ -12309,7 +12322,7 @@ msgstr "Bu anhawster wrth nôl eich manylion gwasanaeth" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Bu anhawster wrth ddileu'r ffrwd hwn. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12368,12 +12381,12 @@ msgstr "Dymach gosodiadau rhagosodedig" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 msgid "These domains" -msgstr "" +msgstr "Y parthau hyn" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 msgid "These hashtags" -msgstr "" +msgstr "Yr hashnodau hyn" #: src/screens/Settings/FollowingFeedPreferences.tsx:66 msgid "These settings only apply to the Following feed." @@ -12382,9 +12395,9 @@ msgstr "Dim ond i'r ffrwd Dilyn mae'r gosodiadau hyn yn berthnasol." #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 msgid "These URLs" -msgstr "" +msgstr "Yr URLau hyn" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Nhw sy'n berchen ar y sgwrs hon" @@ -12392,7 +12405,7 @@ msgstr "Nhw sy'n berchen ar y sgwrs hon" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Fyddan nhw ddim yn gallu ail ymuno oni bai i chi eu gwahodd nhw eto." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Mae {screenDescription} hwn wedi'i fflagio:" @@ -12408,7 +12421,7 @@ msgstr "Mae'r cyfrif yma wedi'i nodi fel un wedi'i awtomeiddio gan ei awdur." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Mae un neu fwy o geisiadau dilysu wedi'u gwneud ar gyfer y cyfrif hwn, ond heb ei ddilysu ar hyn o bryd." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Mae'r cyfrif hwn wedi gofyn i ddefnyddwyr fewngofnodi i weld eu proffil." @@ -12510,7 +12523,7 @@ msgstr "Mae'r cyfeiriad e-bost hwn eisoes wedi'i gysylltu â'ch cyfrif." #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:280 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:283 msgid "This exact phrase" -msgstr "" +msgstr "Yr union ymadrodd hwn" #: src/screens/Settings/ActivityPrivacySettings.tsx:56 msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Mae'r ffrwd hon yn wag! Efallai y bydd angen i chi ddilyn mwy o ddefnyddwyr neu newid eich gosodiadau iaith." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Mae'r ffrwd hon yn wag." @@ -12554,7 +12567,7 @@ msgstr "Mae'r grŵp hwn wedi'i gloi gan weithred cymedroli ar y perchennog" msgid "This handle is reserved. Please try a different one." msgstr "Mae'r handlen hon wedi'i chadw. Rhowch gynnig ar un arall." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Doedd dim modd defnyddio'r ddelwedd hon. Rhowch gynnig ar fformar fel .jpg neu .png." @@ -12572,7 +12585,7 @@ msgstr "Mae'r ddolen wahodd hon yn annilys" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 msgid "This is just a one-time security check, since we haven't seen this account on this device before." -msgstr "" +msgstr "Dim ond gwiriad diogelwch untro yw hwn, gan nad ydym wedi gweld y cyfrif hwn ar y ddyfais hon o'r blaen." #: src/features/liveNow/components/EditLiveDialog.tsx:171 #: src/features/liveNow/components/GoLiveDialog.tsx:161 @@ -12594,9 +12607,9 @@ msgstr "Gosodwyd y label hwn gennych chi." #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "Gosodwyd y label hwn i'r cyfrif defnyddiwr cyfan a bydd yn ymddangos ym mhob postiad." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dyw'r labelwr hwn ddim wedi datgan pa labeli y mae'n eu cyhoeddi, ac efallai na fydd yn weithredol." @@ -12621,13 +12634,13 @@ msgstr "Mae'r rhestr hon yn wag." msgid "This message is hidden" msgstr "Mae'r neges hon wedi'i chuddio" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Mae'r neges wedi'i chuddio gan fod y defnyddiwr yn eich rhwystro." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Mae'r neges wedi'i chuddio gan eich bod yn rhwystro'r defnyddiwr yma." @@ -12641,7 +12654,7 @@ msgstr "Mae'r person yma'n eich rhwystro" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{0}, ond fe'i gwelwyd gyntaf gan Bluesky ar <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{0}, ond fe'i gwe msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Mae gan y postiad hwn fath anhysbys o adwy edau arno. Mae'n bosibl bod eich ap yn rhy hen." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Dim ond ar gyfer aelodau sydd wedi mewngofnodi mae'r postiad hwn yn weladwy." @@ -12661,7 +12674,7 @@ msgstr "Cafodd y postiad hwn ei ddileu gan yr awdur" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bydd y postiad hwn yn cael ei guddio rhag ffrydiau ac edafedd. Does dim modd dadwneud hyn." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Mae awdur y postiad hwn wedi analluogi postiadau dyfyniadau." @@ -12698,11 +12711,12 @@ msgstr "Dylai gymryd dim ond ychydig funudau." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Does gan y defnyddiwr hwn ddim enw dangos, ac felly does dim modd ei ddilysu." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Does gan y defnyddiwr hwn ddim dilynwyr." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Mae'r person yma'n eich rhwystro a does dim modd ei negesu." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Mae'r defnyddiwr hwn wedi eich rhwystro. Does dim modd i chi weld eu cynnwys." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Mae'r defnyddiwr wedi analluogi sgwrsio a does dim modd ei negesu." @@ -12733,17 +12748,17 @@ msgstr "Mae'r defnyddiwr hwn wedi'i gynnwys yn y rhestr <0>{0} rydych wedi'i msgid "This user is new here. Press for more info about when they joined." msgstr "Mae'r defnyddiwr hwn yn newydd yma. Pwyswch am ragor o wybodaeth ynghylch pryd y gwnaethon nhw ymuno." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Dyw'r defnyddiwr hwn ddim yn dilyn unrhyw un." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Does dim modd chwarae'r fideo ar eich dyfais. Efallai nad yw'r codec fideo angenrheidiol ar eich porwr neu system (H.264/AAC)." #: src/view/com/composer/videos/VideoPreview.web.tsx:65 msgid "This video can’t be previewed in your browser. It will still be uploaded." -msgstr "" +msgstr "Does dim modd cael rhagolwg o'r fideo hwn yn eich porwr. Bydd yn dal i gael ei lwytho." #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 msgid "This will create a new list with the same name, description, and members as this starter pack." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Bydd hyn yn dileu eich cyfrif Bluesky <0>{currentHandle} ac unrhyw ddata cysylltiedig yn llwyr. Bydd hyn hefyd yn effeithio gwasanaethau <1> AT Protocol rydych yn eu defnyddio gyda'r cyfrif hwn." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Bydd hyn yn tynnu @{0} o'r rhestr mynediad cyflym." @@ -12786,7 +12801,7 @@ msgstr "Dewisiadau Edafedd" msgid "Threaded" msgstr "Edafwyd" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Dewisiadau Edafedd" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Gormod o gysylltiadau - mae gormod o gysylltiadau i'w mewnforio i chwilio am eich ffrindiau" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Brig" @@ -12858,7 +12873,7 @@ msgstr "Brig" msgid "Top replies first" msgstr "Prif atebion yn gyntaf" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Pwnc" @@ -12893,7 +12908,9 @@ msgstr "Dyw cyfieithu i'r un iaith ddim ar gael ar eich dyfais." msgid "Tree view" msgstr "Golwg coeden" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Yn Trendio" @@ -12902,7 +12919,7 @@ msgstr "Yn Trendio" msgid "Trending GIFs" msgstr "GIFau sy'n trendio" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Dewisiadau sy'n trendio" @@ -12918,13 +12935,13 @@ msgstr "Trolio" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Mae ymddiriedaeth yn deillio o berthnasoedd, cymunedau, a chyd-destun sy'n cael eu rhannu, felly rydym hefyd yn galluogi <0>dilyswyr dibynadwy: sefydliadau sy'n gallu cyhoeddi dilysiad yn uniongyrchol." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." -msgstr "" +msgstr "Rhowch gynnig ar derm chwilio gwahanol neu tynnwch rai hidlau." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." -msgstr "" +msgstr "Rhowch gynnig ar derm chwilio gwahanol." #: src/features/inviteFriends/InviteScannerScreen.tsx:221 #: src/features/inviteFriends/InviteScannerScreen.tsx:226 @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Methu nôl ceisiadau i ymuno." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Methu canfod derbynnydd rwyf wedi ei ddewis." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Methu canfod y derbynnydd rwyf wedi ei ddewis." @@ -13024,12 +13043,12 @@ msgstr "Dim ar gael" msgid "Unavailable feed information" msgstr "Manylion ffrwd anhysbys" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Dadrwystro Cyfrif?" msgid "Unblock list" msgstr "Rhestr ddadrwystro" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Dad-ddilyn {0}" msgid "Unfollow account" msgstr "Dad-ddilyn y cyfrif" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Dad-ddilyn defnyddiwr" @@ -13132,7 +13151,7 @@ msgstr "Cynnwys oedolion heb eu labeli" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Cynnwys oedolion heb gydsyniad neu fygythiol, heb ei labelu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Dad-hoffi" @@ -13192,7 +13211,7 @@ msgstr "Dad-dewi'r grŵp sgwrsio hwn" msgid "Unmute thread" msgstr "Dad-dewi'r edefyn" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Dad-dewi fideo" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Dad-binio" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Dad-binio ffrwd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Dad-bioio o'r cartref" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Dad-binio'r rhestr cymedroli" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Wedi'i ddad-binio {0} o'r Cartref" @@ -13258,18 +13277,18 @@ msgstr "Dad-danysgrifio o'r labelwr hwn" msgid "Unsubscribed from list" msgstr "Wedi dad-danysgrifio o'r rhestr" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Cynnwys clipfwrdd heb ei cefnogi" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Math o fideo sydd ddim yn cael ei gynnal: {mimeType}" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 msgid "Until" -msgstr "" +msgstr "Tan" #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 msgid "Up to 50 people" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Wedi methu diweddaru gwelededd ateb" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Llwytho lun i fyny yn lle hynny" @@ -13355,7 +13374,7 @@ msgstr "Llwytho i fyny o'r Ffeiliau" msgid "Upload from Library" msgstr "Llwytho i fyny o'r Llyfrgell" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Yn llwytho'r GIF..." @@ -13369,7 +13388,7 @@ msgstr "Wrthi'n lwytho lluniau i fyny..." msgid "Uploading link thumbnail..." msgstr "Wrthi'n lwytho dolen llun bach i fyny..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Wrthi'n llwytho fideo i fyny..." @@ -13408,7 +13427,7 @@ msgstr "Defnyddio hwn i fewngofnodi i'r ap arall ynghyd â'ch enw dangos." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Defnyddiwch gyfrif e-bost eich cyfrif, neu gyfrif e-bost arall rydych yn ei reoli, rhag ofn y bydd KWS neu Bluesky angen cysylltu â chi." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "defnyddiwr" @@ -13482,7 +13501,7 @@ msgstr "Gall enw defnyddiwr gynnwys dim ond llythrennau (a-z), rifau a chyplysno #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "Enw defnyddiwr neu e-bost" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13529,7 @@ msgstr "Methodd y dilysu, ceisiwch eto." msgid "Verification settings" msgstr "Gosodiadau dilysu" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Gosodiadau Dilysu" @@ -13563,7 +13582,7 @@ msgstr "Dilysu nawr" #: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 #: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 msgid "Verify now using KWS" -msgstr "" +msgstr "Dilysu nawr gan ddefnyddio KWS" #: src/components/contacts/screens/PhoneInput.tsx:175 #: src/components/contacts/screens/VerifyNumber.tsx:217 @@ -13618,7 +13637,7 @@ msgstr "Fideo" msgid "Video failed to process" msgstr "Methodd y fideo â phrosesu" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Ffrwd Fideo" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Fideo gan {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Fideo gan {0}. Tapio i chwarae neu oedi'r fideo" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Gemau Fideo" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Fideo wedi'i atal" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Fideo yn chwarae" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Fideo heb ei ganfod." @@ -13653,7 +13672,7 @@ msgstr "Fideo heb ei ganfod." msgid "Video settings" msgstr "Gosodiadau fideo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Fideo wedi'i lwytho i fyny" @@ -13662,17 +13681,17 @@ msgstr "Fideo wedi'i lwytho i fyny" msgid "Video: {0}" msgstr "Fideo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Fideos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Rhaid i fideos fod yn llai na 3 munud o hyd." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Edrych" @@ -13691,9 +13710,9 @@ msgstr "Gweld afatar {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Gweld proffil {0}" @@ -13724,13 +13743,13 @@ msgstr "Gweld cofnod blog am fwy o fanylion" msgid "View debug entry" msgstr "Gweld cofnod dadfygio" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Manylion" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Gweld yr edefyn llawn" @@ -13761,7 +13780,7 @@ msgstr "Gweld mwy" msgid "View more trending videos" msgstr "Edrychwch ar ragor o fideos sy'n trendio" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Edrych ar y postiad" @@ -13798,11 +13817,11 @@ msgstr "Gweld y ddolen gwahodd ar gyfer y grŵp sgwrsio hwn" msgid "View the labeling service provided by @{0}" msgstr "Gweld y gwasanaeth labelu sy'n cael ei ddarparu gan @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Gweld dilysiadau'r defnyddiwr hwn" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Gweld defnyddwyr sy'n hoffi'r ffrwd hon" @@ -13831,7 +13850,7 @@ msgstr "Gweld eich rhestrau cymedroli" msgid "View your muted accounts" msgstr "Gweld eich cyfrifon wedi tewi" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Gweld eich dilysiadau" @@ -13898,7 +13917,7 @@ msgstr "Doedd dim modd i ni ganfod y rhestr hon. Bosib ei bod wedi'i dileu." #: src/screens/Login/LoginForm.tsx:348 msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." -msgstr "" +msgstr "Doedd dim modd i ni ddod o hyd i gyfrif gyda'r enw defnyddiwr hwnnw. Gwiriwch eich bod wedi'i deipio'n gywir, neu <0>gosodwch eich darparwr gwesteio â llaw." #: src/screens/Hashtag.tsx:260 msgid "We couldn't find any results for that tag." @@ -13922,7 +13941,7 @@ msgstr "Wedi methu lwytho gosodiadau'r sgwrs hon" #: src/screens/Login/LoginForm.tsx:482 msgid "We couldn’t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." -msgstr "" +msgstr "Doedd dim modd i ni ddilysu eich darparwr gwesteio. Gwiriwch eich cysylltiad rhyngrwyd, neu <0>gosodwch eich darparwr gwesteio â llaw." #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -14001,7 +14020,7 @@ msgstr "Byddwn yn gadael i chi wybod pan fyddwn yn dod o hyd i'ch ffrindiau." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "We’d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Byddem wrth ein bodd yn clywed am eich profiad yn profi nodweddion beta!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Rydym yn cael problemau rhwydwaith, ceisiwch eto" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Rydym yn cael anawsterau rhwydwaith, ceisiwch eto" @@ -14043,13 +14062,13 @@ msgstr "Rydym yn cael anawsterau rhwydwaith, ceisiwch eto" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Rydyn ni'n cyflwyno haen newydd o ddilysu ar Bluesky - marc gwirio hawdd ei weld." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Rydym yn falch iawn eich bod wedi ymuno â ni!" #: src/ageAssurance/useVerificationFlow.ts:117 msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." -msgstr "" +msgstr "Ymddiheuriadau, ond yn seiliedig ar y data sy'n cael ei rannu gan eich dyfais, dydych chi ddim yn ddigon hen i gael mynediad i Bluesky." #: src/ageAssurance/components/NoAccessScreen.tsx:227 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 @@ -14064,13 +14083,15 @@ msgstr "Mae'n ddrwg gennym, ond nid oeddem yn gallu datrys y rhestr hon. Os bydd msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Mae'n ddrwg gennym, ond nid oeddem yn gallu llwytho eich geiriau wedi'u tewi ar hyn o bryd. Ceisiwch eto." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." -msgstr "" +msgstr "Ymddiheuriadau, does dim modd cwblhau eich chwilio." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ymddiheuriadau, ond doedd dim modd cwblhau eich chwilio. Ceisiwch eto ymhen rhai munudau." @@ -14078,7 +14099,7 @@ msgstr "Ymddiheuriadau, ond doedd dim modd cwblhau eich chwilio. Ceisiwch eto ym msgid "We're sorry, you cannot access this screen at this time." msgstr "Ymddiheuriadau, does dim modd i chi fynd at y sgrin hon ar hyn o bryd." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Mae'n ddrwg gennym! Mae'r postiad rydych chi'n ymateb iddo wedi'i dileu." @@ -14131,10 +14152,10 @@ msgstr "Beth ydych chi am ei alw'ch pecyn cychwyn?" #. Advanced search: Example of an “exact phrase” search #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:285 msgid "what’s up" -msgstr "" +msgstr "beth sy'n digwydd" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Beth sy'n digwydd?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Pwy sy'n gallu dilysu?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Wps!" @@ -14220,21 +14241,21 @@ msgstr "Hoffech chi rwystro'r defnyddiwr yma a/neu adael y sgwrs yma?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Hoffech chi gadw hwn fel drafft cyn edrych ar eich drafftiau?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Hoffech chi gadw hwn fel drafft i'w olygu'n nes ymlaen?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Ysgrifennu postiad" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Ysgrifennwch bostiad" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Ysgrifennwch eich ateb" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Rydych yn cael mynediad at Bluesky mewn ardal sydd â gofyniad cyfreithiol i ni wirio eich oed cyn caniatáu i chi gael mynediad at yr ap." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Rydych yn rhwystro {0}" @@ -14342,7 +14363,7 @@ msgstr "Dydych chi ddim yn fyw mwyach" msgid "You are not allowed to upload videos." msgstr "Does dim caniatâd i chi lwytho fideos i fyny." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Dydych chi ddim yn dilyn neb eto" @@ -14362,7 +14383,7 @@ msgstr "Rydych chi wedi'ch dilysu. Byddwch yn colli eich statws dilysu os byddwc msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Rydych chi wedi'ch dilysu. Byddwch yn colli eich statws dilysu os byddwch yn newid eich handlen. <0>Dysgu ragor." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Gallwch addasu eich diddordebau ar unrhyw adeg o osodiadau \"Cynnwys a chyfryngau\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Gallwch nawr fewngofnodi gyda'ch cyfrinair newydd." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Dim ond hyd at {MAX_GALLERY_IMAGES, plural, zero {# delweddau} one {# ddelwedd} two {# ddelwedd} few {# delwedd} many {# delwedd} other {# delwedd}} y gallwch eu hychwanegu i bob postiad" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Dim ond 1000 nod y mae modd eu cadw mewn drafft." @@ -14439,9 +14460,9 @@ msgstr "Gallwch ddarllen hanes sgwrs ond ddim anfon negeseuon newydd." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Gallwch ddewis hyd at {MAX_GALLERY_IMAGES, plural, zero {# delweddau} one {# ddelwedd} two {# ddelwedd} few {# delwedd} many {# delwedd} other {# delwedd}} i gyd." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Gallwch ddiweddaru hwn yn ddiweddarach o'ch gosodiadau." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Gallwch chi ddim ychwanegu mwy na {EMOJI_REACTION_LIMIT, plural, zero {# ymatebion emoji} one {# ymateb emoji} two {# ymateb emoji} few {# ymateb emoji} many {# ymateb emoji} other {# ymateb emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Does dim modd i chi greu sgwrs grŵp eto." @@ -14555,7 +14577,7 @@ msgstr "Diolch, rydych chi wedi dilysu'ch cyfeiriad e-bost yn llwyddiannus. Gall msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Rydych wedi cyrraedd y terfyn ar gyfer llwytho fideo i fyny dros dro. Ceisiwch eto yn nes ymlaen." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Mae gennych chi newidiadau heb eu cadw o'r drafft hwn, hoffech chi eu cadw?" @@ -14563,7 +14585,7 @@ msgstr "Mae gennych chi newidiadau heb eu cadw o'r drafft hwn, hoffech chi eu ca msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Mae gennych chi newidiadau heb eu cadw. Hoffech chi eu cadw cyn edrych ar eich drafftiau?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Dydych chi ddim wedi creu pecyn cychwyn eto!" @@ -14614,7 +14636,7 @@ msgstr "Dim ond hyd at {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_ msgid "You may only add up to 3 feeds" msgstr "Dim ond hyd at 3 ffrwd y gallwch chi eu hychwanegu" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Rhaid i chi fod yn berchennog sgwrs i ddileu aelod." @@ -14622,7 +14644,7 @@ msgstr "Rhaid i chi fod yn berchennog sgwrs i ddileu aelod." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Rhaid eich bod yn o leiaf 13 oed i ddefnyddio Bluesky. Darllenwch ein <0>Amodau Gwasanaeth am ragor o wybodaeth." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Rhaid i chi fod yn dilyn o leiaf saith o bobl eraill i gynhyrchu pecyn cychwyn." @@ -14639,7 +14661,7 @@ msgstr "Rhaid i chi ganiatáu mynediad i'ch llyfrgell cyfryngau." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Mae angen i chi ddilysu'ch cyfeiriad e-bost cyn y gallwch alluogi 2FA e-bost." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Chi sy'n berchen ar y sgwrs hon" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Mae'n debyg eich bod chi eisiau ailgychwyn yr ap nawr." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Eich ymateb yw {0}" @@ -14667,15 +14689,15 @@ msgstr "Eich ymateb i {0} yw {target}" msgid "You recently changed your birthdate" msgstr "Rydych wedi newid eich dyddiad geni'n ddiweddar" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Rydych wedi ateb" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Rydych wedi ateb {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Rydych wedi ateb eich hun" @@ -14715,11 +14737,11 @@ msgstr "Bydd dim modd ichi ail ymuno oni bai i chi gael eich gwahodd." msgid "You: {message}" msgstr "Chi: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Byddwch yn dilyn y defnyddwyr a'r ffrwd sy'n cael ei awgrymu ar ôl i chi orffen creu eich cyfrif!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Byddwch yn dilyn y defnyddwyr sy'n cael ei awgrymu ar ôl i chi orffen creu'ch cyfrif!" @@ -14747,11 +14769,11 @@ msgstr "Byddwch yn derbyn y diweddaraf am y ffrydiau hyn" #: src/ageAssurance/useVerificationFlow.ts:133 msgid "You're all set!" -msgstr "" +msgstr "Rydych yn barod nawr!" #: src/ageAssurance/useVerificationFlow.ts:127 msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." -msgstr "" +msgstr "Rydych chi'n barod! Er hynny, gall rhai nodweddion barhau i fod wedi'u cyfyngu nes eich bod yn gallu dilysu eich bod yn oedolyn." #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 msgid "You’re in control" @@ -14791,7 +14813,7 @@ msgstr "Rydych wedi dod i ddiwedd y cynnwys gweithredol." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Rydych wedi cyrraedd diwedd eich ffrwd! Dewch o hyd i ragor o gyfrifon i'w dilyn." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Rydych wedi cyrraedd uchafswm y nifer o ddrafftiau" @@ -14799,9 +14821,9 @@ msgstr "Rydych wedi cyrraedd uchafswm y nifer o ddrafftiau" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Rydych chi wedi cyrraedd y nifer uchaf o geisiadau sy'n cael eu caniatáu. Rhowch gynnig arall arni yn nes ymlaen." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." -msgstr "" +msgstr "Rydych wedi cyrraedd yr uchafswm o {MAX_FILTERS, plural, zero {# hidlyddion} one {# hidlydd} two {# hidlydd} few {# hidlydd} many {# hidlydd} other {# hidlydd}}. Ychwanegwch fwy o werthoedd at hidlydd sy'n bodoli yn lle creu rhai newydd." #: src/components/FocusScope/index.tsx:88 msgid "You've reached the start of the active content." @@ -14815,11 +14837,11 @@ msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o feit msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o fideos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Rydych wedi rhedeg allan o fideos i'w gwylio. Efallai ei fod yn amser da i gael newid bach?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Eich cyfrif" @@ -14835,11 +14857,11 @@ msgstr "Mae eich cyfrif wedi'i atal" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Nid yw eich cyfrif yn ddigon hen eto i lwytho fideos i fyny. Ceisiwch eto yn nes ymlaen." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Mae eich cyfrif yn rhy newydd" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Rhaid i'ch cyfrif fod o leiaf 7 diwrnod oed i greu sgwrs grŵp newydd." @@ -14924,14 +14946,14 @@ msgstr "Eich enw dangos llawn fydd <0>@{0}" #: src/screens/Login/components/HostingProviderDialog.tsx:182 msgid "Your hosting provider can’t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." -msgstr "" +msgstr "Does dim modd canfod eich darparwr gwesteia o gyfeiriad e-bost, felly bydd gwasanaeth rhagosodedig Bluesky yn cael ei ddefnyddio. Rhowch eich enw defnyddiwr yn lle hynny, neu gosodwch eich darparwr â llaw." #: src/screens/Login/components/HostingProviderDialog.tsx:188 msgid "Your hosting provider is detected automatically from the username you enter." -msgstr "" +msgstr "Mae eich darparwr gwesteia yn cael ei ganfod yn awtomatig o'r enw defnyddiwr rydych yn ei nodi." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Mae eich diddordebau wedi'u diweddaru!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Mae eich diddordebau yn ein helpu ni i ddod o hyd i'r hyn rydych chi'n ei hoffi!" @@ -14967,11 +14989,11 @@ msgstr "Mae eich cyfrinair wedi'i newid yn llwyddiannus! Defnyddiwch eich cyfrin msgid "Your password must be at least 8 characters long." msgstr "Rhaid i'ch cyfrinair fod o leiaf 8 nod." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Mae eich postiad wedi'i anfon" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Mae eich postiadau wedi'u hanfon" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Eich dewis iaith" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Eich llun proffil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Eich llun proffil wedi ei amgylchynu gan gylchoedd consentrig o luniau proffil defnyddwyr eraill" @@ -14992,7 +15014,7 @@ msgstr "Eich llun proffil wedi ei amgylchynu gan gylchoedd consentrig o luniau p msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Ni fydd eich proffil, postiadau, ffrydiau a rhestrau bellach yn weladwy i ddefnyddwyr Bluesky eraill. Gallwch ail agor eich cyfrif unrhyw bryd trwy fewngofnodi." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Mae eich ateb wedi'i anfon" @@ -15005,13 +15027,13 @@ msgstr "Bydd eich adroddiad yn cael ei anfon at <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Mae'r diddordebau rydych wedi'u dewis yn ein helpu i ddarparu cynnwys sy'n bwysig i chi." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Mae gan eich ffrwd bostiadau gwag fydd yn cael eu hepgor. Bydd y postiadau sy'n weddill yn cael eu cyhoeddi fel ffrwd." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you don’t recognize this provider, double-check your username." -msgstr "" +msgstr "Bydd eich enw defnyddiwr a'ch cyfrinair yn cael eu rhannu gyda <0>{host}. Os nad ydych yn adnabod y darparwr hwn, gwiriwch eich enw defnyddiwr eto." #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/da/messages.po b/src/locale/locales/da/messages.po index 26a883ec37..91e1ae8114 100644 --- a/src/locale/locales/da/messages.po +++ b/src/locale/locales/da/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: da\n" +"Language: da_DK\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Danish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorien \"{interestsDisplayName}\" (aktiv)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(indeholder indlejret indhold)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# time} other {# timer}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# like} other {# likes}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# medlem} other {# medlemmer}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# ny anmodning om deltagelse} other {# nye anmodninger #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# person} other {# personer}} reagerede – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "kl. {0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Konto)" @@ -251,36 +252,13 @@ msgstr "{0} føjet til chat" msgid "{0} and {1} added to chat" msgstr "{0} og {1} føjet til chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} følger" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} blokerer dig" @@ -324,14 +302,6 @@ msgstr "{0} meldte sig ud" msgid "{0} left the group" msgstr "{0} forlod gruppen" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} ud af 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagerede med {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} og {memberCount, plural, one {# other} other {# others}} føjet til chatten" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} verificerede dig" msgid "{following} following" msgstr "{following} følger" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} kan ikke tilføjes" @@ -698,7 +660,7 @@ msgstr "{handle} kan ikke tilføjes" msgid "{handle} can't be messaged" msgstr "{handle} kan ikke modtage beskeder" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} kan ikke modtage beskeder" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ulæst besked} other {# ulæste beske msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# kontakt fundet} other {# kontakter fundet}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} oprettede sig på Bluesky for {timeAgoString} siden" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} oprettede sig på Bluesky via en startpakke for {timeAgoString} siden" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} svarede" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} svarede {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} svarede dig" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# anmodning} other {# anmodninger}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ anmodninger" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}t siden" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} er en autoriseret verifikator" @@ -842,13 +795,13 @@ msgstr "{userName}s verifikationer" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {følger} other {følger}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citat} other {citater}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {deling} other {delinger}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {gemt} other {gemte}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> tilføjede dig" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Log ind<1> eller <2>opret en konto<3> <4>for at søge efter nyheder, sport, politik og alt andet, der sker på Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dage" msgid "7 days" msgstr "7 dage" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "En samling af populære feeds, du kan finde på Bluesky, herunder News, Book Sky, Game Dev, Blacksky og Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Der opstod en netværksfejl. Tjek din internetforbindelse" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "En ny kode blev sendt" msgid "A new form of verification" msgstr "En ny form for verifikation" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Et screenshot af skrivefeltet til opslag med en ny knap ved siden af “Slå op” med teksten “Kladder” men fyrværkerieffekt. I selve skrivefeltet er der indtastet “Hej, har du hørt det seneste nye? Bluesky understøtter nu kladder!”" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "En valgt modtager følges ikke af afsenderen." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Adgang anmodet! Gruppeejeren vil gennemgå din anmodning." msgid "Accessibility" msgstr "Tilgængelighed" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Tilgængelighedsindstillinger" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Konto skjult af liste" msgid "Account options" msgstr "Kontoindstillinger" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Konto fjernet fra kvikadgang" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Konti med et amøbeformet blåt flueben <0><1/> kan verificere andre. De autoriserede verifikatorer er udvalgt af Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktivitet fra andre" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Tilføj alt-tekst (valgfrit)" msgid "Add another account" msgstr "Tilføj endnu en konto" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Tilføj endnu et opslag" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Tilføj endnu et opslag til tråd" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "Tilføj botmærkat til konto" msgid "Add emoji reaction" msgstr "Tilføj emojireaktion" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Føj dette feed til dine feeds" msgid "Add to lists" msgstr "Føj til lister" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Føj til gemte opslag" @@ -1400,7 +1360,7 @@ msgstr "Porno" msgid "Adult content" msgstr "Voksenindhold" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Tillader adgang til direkte beskeder" msgid "Already have a code?" msgstr "Har du allerede modtaget en bekræftelseskode?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Har du allerede en konto?" @@ -1614,7 +1574,7 @@ msgstr "En e-mail er sendt til {0}. Den indeholder en bekræftelseskode, som du msgid "An error has occurred" msgstr "Der opstod en fejl" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Der opstod en fejl" @@ -1631,7 +1591,7 @@ msgstr "Der opstod en fejl under indlæsning af foreslåede konti." msgid "An error occurred while fetching the feed." msgstr "Der opstod en fejl under indlæsning af feedet." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Der opstod en fejl under generering af din startpakke. Vil du prøve igen?" @@ -1640,11 +1600,11 @@ msgstr "Der opstod en fejl under generering af din startpakke. Vil du prøve ige msgid "An error occurred while hiding suggestion. {0}" msgstr "Der opstod en fejl ved forsøg på at skjule forslag. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Der opstod en fejl under indlæsning af videoen. Prøv igen senere." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Der opstod en fejl under indlæsning af videoen. Prøv igen senere." @@ -1684,7 +1644,7 @@ msgstr "Der opstod en fejl. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "En tegning af profilbilleder, der flyder fra en adressebog ind i Bluesky-appen" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "En illustration af adskillige Bluesky-opslag sammen med ikoner for videredeling, like og kommentar" @@ -1705,17 +1665,15 @@ msgstr "Et invitationslink lader folk deltage i denne gruppechat uden at blive t msgid "An issue not included in these options" msgstr "En anden årsag, der ikke er omfattet af ovennævnte" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Der opstod en fejl ved oprettelse af gruppechat, prøv igen." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Der opstod en fejl ved start af chat, prøv igen." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Der opstod en fejl ved åbning af chatten" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Alle" @@ -1802,7 +1760,7 @@ msgstr "Alle som følger mig" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "De som har det vil ikke længere kunne deltage eller anmode om deltagelse. Du kan altid oprette et nyt." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Navne på appadgangskoder skal bestå af mindst 4 tegn" msgid "App passwords" msgstr "Appadgangskoder" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Appadgangskoder" @@ -1891,8 +1849,8 @@ msgstr "Klag over afgørelse" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Anvend pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arkiveret fra {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arkiveret opslag" @@ -1980,7 +1938,7 @@ msgstr "Er du sikker på, du vil fjerne dette feed fra dine feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Er du sikker på, at du vil trække din anmodning om at deltage i {0} tilbage?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Er du sikker på, du vil kassere dette opslag?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Nordlys" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Botkonto" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "Botmærkat" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Botmærkat" @@ -2050,12 +2008,16 @@ msgstr "Afspil videoer og GIF'er automatisk" msgid "Available" msgstr "Tilgængelig" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Før du opretter eller besvarer et opslag, skal du bekræfte din e-mail." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Før du opretter en startpakke, skal du bekræfte din e-mail." @@ -2135,10 +2097,10 @@ msgstr "Før du kan modtage notifikationer om opslag fra {name}, skal du først #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Begynd alderstjek ved at udfylde felterne herunder." msgid "Beta Feature" msgstr "Betafunktion" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Fødselsdato" msgid "Birthday" msgstr "Fødselsdato" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blokeret" msgid "Blocked accounts" msgstr "Blokerede konti" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokerede konti" @@ -2282,7 +2250,7 @@ msgstr "Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden 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 "Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden måde interagere med dig. Du vil ikke se deres indhold, og de vil ikke se dit." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokering forhindrer ikke denne mærkningstjeneste fra at sætte mærkater på din konto." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan ikke bekræfte den anførte datos gyldighed." @@ -2330,7 +2299,7 @@ msgstr "Bluesky er et åbent netværk, hvor du kan vælge din egen udbyder. Hvis msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky er et åbent netværk, hvor du kan vælge din egen udbyder. Hvis du er ny her, anbefaler vi at bruge standardvalget Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky virker bedre med venner!" @@ -2358,7 +2327,7 @@ msgstr "Bluesky Socials tjenestevilkår" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky gemmer dine kontakter som krypteret data. Hvis du fjerner dine kontakter, sletter vi øjeblikkeligt denne data." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky vil vælge et antal anbefalede konti fra personer i dit netværk." @@ -2425,24 +2394,25 @@ msgstr "Se flere forslag under Udforsk" msgid "Browse other feeds" msgstr "Se flere feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Se opslag om {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Se opslag tagget med {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Se startpakken {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Se emnet {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Se emnet {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Knap, der går til din hjemmetidslinje" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Af {0}" @@ -2473,9 +2443,9 @@ msgstr "af @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Af <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkårene og <1>pr msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkårene." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Af dig" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2504,7 @@ msgstr "Kameraadgang krævet" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Kameraadgang krævet" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Annuller genaktivering og log ud" msgid "Cancel reply" msgstr "Annuller svar" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Annuller søgning" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Ændringer til startpakken vil ikke blive afspejlet i listen efter oprettelse. Listen vil blive en separat kopi." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat skjult" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chat ikke fundet." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Chatejere kan ikke forlade en gruppechat." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Chatmodtager følges ikke af afsenderen." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Indbakke for chatanmodninger" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Chatanmodninger" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chatindstillinger" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat ikke længere skjult" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2808,7 @@ msgstr "Vælg metode til domæneverifikation" msgid "Choose Feeds" msgstr "Vælg feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Vælg for mig" @@ -2854,7 +2825,7 @@ msgstr "Vælg konti" msgid "Choose post languages" msgstr "Vælg sprog for opslag" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Vælg farve til din avatar" @@ -2879,7 +2850,7 @@ msgstr "Vælg din egen tidslinje! Specialbyggede feeds skabt af andre brugere hj msgid "Choose your password" msgstr "Husk din adgangskode" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Vælg dit brugernavn" @@ -2966,7 +2937,7 @@ msgstr "Klik her for at se invitationslinket for denne gruppechat" msgid "Click to open tag menu for {0}" msgstr "Klik for at åbne tagmenuen for {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klik for at prøve at sende beskeden igen" @@ -3003,7 +2974,7 @@ msgstr "Klik for at prøve at sende beskeden igen" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Klik for at prøve at sende beskeden igen" msgid "Close" msgstr "Luk" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Luk aktiv dialog" @@ -3047,7 +3018,7 @@ msgstr "Luk banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Luk billedviser" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Luk menu" @@ -3090,7 +3061,7 @@ msgstr "Luk banner for indkommende anmodninger" msgid "Close this dialog" msgstr "Luk dialog" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Luk velkomstdialog" @@ -3098,7 +3069,7 @@ msgstr "Luk velkomstdialog" msgid "Closes password update alert" msgstr "Lukker besked om opdatering af adganskode" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Lukker skrivefelt og kasserer udkast til opslag" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Farve" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Farvetilstand" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Tegneserier" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Fælleskabsregler" @@ -3141,7 +3112,7 @@ msgstr "Fælleskabsregler" msgid "Complete onboarding and start using your account" msgstr "Afslut velkomst og kom i gang med at bruge din konto" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Løs opgaven" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Skriv nyt opslag" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Skriv opslag på op til {0, plural, one {}other {# tegn}}" @@ -3160,11 +3131,11 @@ msgstr "Skriv opslag på op til {0, plural, one {}other {# tegn}}" msgid "Compose reply" msgstr "Skriv svar" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Komprimerer GIF ..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Komprimerer video..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Kontakt vores supportteam" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Kontakt support" @@ -3253,7 +3224,7 @@ msgstr "Indhold og medier" msgid "Content and media" msgstr "Indhold og medier" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Indhold og medier" @@ -3265,10 +3236,6 @@ msgstr "Indhold blokeret" msgid "Content filters" msgstr "Indholdsfiltre" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Indhold fra hele netværket, som vi tror, du vil synes om." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Vælg sprog" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Opfordring til eller afbildning af selvskade" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Indholdsadvarsel" msgid "Content warnings" msgstr "Indholdsadvarsel" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Baggrund for kontekstmenu, klik for at lukke menuen." @@ -3302,7 +3269,7 @@ msgstr "Baggrund for kontekstmenu, klik for at lukke menuen." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Fortsæt tråd..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Fortsæt til gruppenavn" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Samtale ikke fundet." msgid "Copied build version to clipboard" msgstr "Kopieret versionsnummer til udklipsholder" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Kopier appadgangskode" msgid "Copy at:// URI" msgstr "Kopier at://-URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Kopier forfatter-DID" @@ -3449,10 +3416,10 @@ msgstr "Kopier link" msgid "Copy link to list" msgstr "Kopier link til liste" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopier link til opslag" @@ -3470,8 +3437,8 @@ msgstr "Kopier link til startpakke" msgid "Copy message text" msgstr "Kopier beskedtekst" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Kopier opslagets at://-URI" @@ -3490,7 +3457,7 @@ msgstr "Kopier TXT-record" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Ophavsretspolitik" @@ -3540,11 +3507,11 @@ msgstr "Kunne ikke følge alle fundne venner. {0}" msgid "Could not leave chat" msgstr "Kunne ikke forlade chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Kunne ikke forlade chat." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Kunne ikke indlæse feed" @@ -3562,7 +3529,7 @@ msgstr "Kunne ikke indlæse profil" msgid "Could not mute chat" msgstr "Kunne ikke skjule chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Kunne ikke fjerne medlem." @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Opret" @@ -3624,26 +3591,26 @@ msgstr "Opret en liste ud fra denne startpakke" msgid "Create a QR code for a starter pack" msgstr "Opret en QR-kode til en startpakke" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Opret en startpakke" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Opret en startpakke" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Opret en startpakke for mig" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Opret konto" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Opret en konto" @@ -3666,15 +3633,15 @@ msgstr "Opret en konto" msgid "Create an account without using this starter pack" msgstr "Opret en konto uden at bruge denne startpakke" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Opret en avatar i stedet" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Opret endnu en" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Opret gruppechat" @@ -3743,7 +3710,7 @@ msgstr "Kultur" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Aktuel chat" @@ -3770,8 +3737,8 @@ msgstr "Farlige stoffer eller stofmisbrug" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Mørk" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Mørk" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Mørk tilstand" @@ -3814,7 +3781,7 @@ msgstr "Afvis dette sprogforslag" msgid "Deepfake adult content" msgstr "Deepfake voksenindhold" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Standard" @@ -3894,7 +3861,7 @@ msgstr "Slet min konto" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Slet opslag" @@ -3988,7 +3955,7 @@ msgstr "Dialog: Tilpas, hvem der kan interagere med dette opslag." msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Dæmpet" @@ -4002,7 +3969,7 @@ msgstr "Deaktiver" msgid "Disable 2FA" msgstr "Deaktiver 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Deaktiver undertekster" @@ -4045,9 +4012,9 @@ msgstr "Deaktiveret" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Kasser" msgid "Discard changes?" msgstr "Deaktiver ændringer?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Kasser udkast?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Kasser opslag?" @@ -4079,6 +4046,10 @@ msgstr "Frakobl Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Anmod apps om ikke at vise min konto til udloggede brugere" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Anmod apps om ikke at vise min konto til udloggede brugere" msgid "Discover new custom feeds" msgstr "Find nye specialbyggede feeds" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Opdag nye feeds" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Find nye feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Luk" @@ -4103,19 +4070,19 @@ msgstr "Luk" msgid "Dismiss banner" msgstr "Fjern banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Luk fejlbesked" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Luk velkomstforløb" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Luk interesser" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Fjern banner om livebegivenheder" @@ -4142,7 +4109,7 @@ msgstr "Vis større alt-tekst-etiketter" msgid "Display name" msgstr "Profilnavn" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Glem alt om trolls og clickbait. Find rigtige mennesker og samtaler, der giver mening." @@ -4205,8 +4172,8 @@ msgstr "Bare rolig! Alle eksisterende beskeder og indstillinger er gemt og vi bl #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Bare rolig! Alle eksisterende beskeder og indstillinger er gemt og vi bl msgid "Done" msgstr "Udført" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tryk dobbelt eller langt på beskeden for at tilføje en reaktion" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tryk dobbelt for at lukke dialogen" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tryk dobbelt for at like" @@ -4328,6 +4295,7 @@ msgstr "Spiseforstyrrelser" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Rediger billede" msgid "Edit interaction settings" msgstr "Rediger interaktionsindstillinger" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Rediger interesser" @@ -4397,7 +4365,7 @@ msgstr "Rediger livetilstand" msgid "Edit moderation list" msgstr "Rediger moderationsliste" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Rediger mine feeds" @@ -4406,6 +4374,11 @@ msgstr "Rediger mine feeds" msgid "Edit name" msgstr "Rediger navn" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Rediger personer" @@ -4444,7 +4417,7 @@ msgstr "Rediger brugerliste" msgid "Edit who can reply" msgstr "Rediger, hvem der kan svare" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Rediger din startpakke" @@ -4500,8 +4473,8 @@ msgstr "HTML-kode til indlejring" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Indlejr opslag" @@ -4509,7 +4482,7 @@ msgstr "Indlejr opslag" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Indlejr dette opslag på dit website. Kopier blot følgende kodestump og indsæt den i HTML-koden på dit website." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Indlejret videoafspiller" @@ -4533,7 +4506,7 @@ msgstr "Aktiver voksenindhold" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Aktiver undertekster" @@ -4550,12 +4523,13 @@ msgstr "Aktiver eksterne medier" msgid "Enable media players for" msgstr "Aktiver medieafspillere for" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Aktiver notifikationer for en konto ved at besøge dens profil og trykke på <0>klokkeikonet <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Aktiver push-notifikationer" @@ -4581,7 +4555,7 @@ msgstr "Aktiver populære videoer i dit Discover-feed" msgid "Enabled" msgstr "Aktiveret" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Slut på feed" @@ -4608,7 +4582,7 @@ msgstr "Indtast et ord eller tag" msgid "Enter code" msgstr "Indtast kode" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Åbn i fuld skærm" @@ -4650,11 +4624,11 @@ msgstr "Indtsat dit brugernavn og din adgangskode" msgid "Enters full screen" msgstr "Åbner i fuld skærm" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Underholdning" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fejl" @@ -4684,7 +4658,7 @@ msgstr "En fejl opstod under lagring af fil" msgid "Error receiving captcha response." msgstr "En fejl opstod under modtagelse af opgaveløsning" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Fejl: {error}" @@ -4696,8 +4670,8 @@ msgstr "Alle kan svare" msgid "Everybody can reply to this post." msgstr "Alle kan besvare dette opslag." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Alle" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Alle" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Alt andet" @@ -4738,7 +4712,7 @@ msgstr "Udelad brugere, du følger" msgid "Excludes users you follow" msgstr "Anvendes ikke på brugere, du følger" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Forlad fuld skærm" @@ -4755,11 +4729,11 @@ msgstr "Udvid brugerliste" msgid "Expand or collapse the full post you are replying to" msgstr "Udvid eller sammenklap det fulde opslag, du besvarer" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Udvid opslagets tekst" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Udvider eller sammenklapper opslagets tekst" @@ -4802,15 +4776,15 @@ msgstr "Voldsomme eller stødende medier." msgid "Explicit sexual images." msgstr "Pornografiske billeder." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Udforsk" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Udforsk appen," @@ -4844,7 +4818,7 @@ msgstr "Eksterne medier" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Afspilning af medier fra eksterne websites muliggør indsamling af oplysninger om dig og din enhed. Der udveksles ingen oplysninger, før du starter afspilningen." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Indstillinger for eksterne medier" @@ -4886,7 +4860,7 @@ msgstr "Ændring af handle fejlede. Prøv igen." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Kunne ikke kopiere link" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Kunne ikke forlade gruppechat" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Kunne ikke indlæse samtaler" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Kunne ikke indlæse feeds" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Indlæsning af indstillinger for feeds fejlede" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Kunne ikke indlæse notifikationsindstillinger." @@ -5012,14 +4987,14 @@ msgstr "Kunne ikke indlæse indstilling." msgid "Failed to load profiles" msgstr "Kunne ikke indlæse profiler" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Indlæsning af foreslåede feeds fejlede" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Indlæsning af foreslåede konti fejlede" @@ -5027,12 +5002,12 @@ msgstr "Indlæsning af foreslåede konti fejlede" msgid "Failed to lock group chat" msgstr "Kunne ikke låse gruppechat" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Kunne ikke markere alle chats som læst" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Kunne ikke trække din anmodning tilbage. Prøv igen." msgid "Failed to resolve location. Please try again." msgstr "Kunne ikke bestemme din lokalitet. Prøv igen senere." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Kunne ikke gemme kladde" @@ -5191,7 +5166,7 @@ msgstr "Falsk konto eller bot" msgid "False information about elections" msgstr "Misinformation om valg" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "Feedskaber" msgid "Feed identifier" msgstr "Feedidentifikator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feedmenu" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback blev sendt feedets ejer" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds opdateret!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds, du måske kan lide." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Hent opdatering" @@ -5273,11 +5244,11 @@ msgstr "Hent opdatering" msgid "File saved successfully!" msgstr "Fil blev gemt!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Begræns, hvem der kan modtage notifikationer om din aktivitet" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Begræns, hvem du kan modtage notifikationer fra" @@ -5352,8 +5323,8 @@ msgstr "Find konti, du kan følge" msgid "Find and invite friends" msgstr "Find og inviter venner" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Find kontakter" @@ -5387,7 +5358,7 @@ msgstr "Find dine venner" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Find dine venner på Bluesky ved at bekræfte dit telefonnummer og sammenligne med dine kontakter. Vi passer på dine oplysninger, og du har selv kontrol over dem. <0>Læs mere" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Find de rigtige mennesker" @@ -5429,7 +5400,7 @@ msgstr "Fokuser søgefeltet" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Følg {0}" msgid "Follow {displayName}" msgstr "Følg {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Følg {handle}" @@ -5453,11 +5424,11 @@ msgstr "Følg {handle}" msgid "Follow 10 accounts" msgstr "Følg 10 konti" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Følg 10 personer for at komme i gang" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Følg 7 konti" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Følgere kan deltage" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Følgere af @{0}, som du måske kender" @@ -5544,7 +5515,7 @@ msgstr "Følgere, du kender" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Følger {0}" msgid "Following {displayName}" msgstr "Følger {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Følger {handle}" @@ -5578,21 +5549,21 @@ msgstr "Følger {handle}" msgid "Following feed preferences" msgstr "Indstillinger for følgerfeed" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Indstillinger for følgerfeed" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Følger dig" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Skrifttype" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tekststørrelse" @@ -5612,13 +5583,13 @@ msgstr "Af sikkerhedsgrunde sender vi dig en en bekræftelseskode til din e-mail msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Af sikkerhedsgrunde vil du ikke få dette vist denne igen. Hvis du mister denne appadgangskode, bliver du nødt til at oprette en ny." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "For den bedste oplevelse anbefaler vi at bruge temaskrifttypen." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Til dig" @@ -5628,7 +5599,7 @@ msgstr "Til dig" msgid "Forever" msgstr "Indtil videre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Ikke mere støj" @@ -5647,11 +5618,13 @@ msgstr "Glemt adgangskode?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Fire beskedbobler i en gruppechat. Første besked: \"Har du hørt det sidste nye? Bluesky har nu gruppechats!\" Anden besked: \"Fedt!\" Tredje besked: \"Vildt, 50 personer i én chat!\" Fjerde besked: \"Du kan også sende invitationslinks!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Slip dit feed fri" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Fra" @@ -5674,7 +5647,7 @@ msgstr "Fra <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generer en startpakke" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Få hjælp" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Få notifikationer om startpakker, bekræftelse og øvrig aktivitet." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Få notifikationer, når nogen følger dig." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Få notifikationer, når nogen liker dine opslag." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Få notifikationer, når nogen liker dine videredelinger." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Få notifikationer, når nogen nævner dig." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Få notifikationer, når nogen citerer dine opslag." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Få notifikationer, når nogen besvarer dine opslag." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Få notifikationer, når nogen videredeler dine opslag." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Få notifikationer, når nogen deler dine videredelinger." @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Få notifikationer, når der er aktivitet på de opslag, du abonnerer på." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Bliv notificeret om nye opslag" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Bliv notificeret om nye opslag fra {name}" @@ -5799,11 +5772,11 @@ msgstr "Kom i gang" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF uploadet" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Sæt ansigt på din profil" @@ -5813,20 +5786,20 @@ msgstr "Forherligelse af vold" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Gå live i" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Gruppechatnavn opdateret" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Gruppechatindstillinger" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Gruppechats kan højst have {0, plural, one {}other {# deltagere}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Gruppe er låst" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Gruppenavn" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Gruppenavnet er for langt. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {}other {Den maksimale længde er # tegn.}}" @@ -6077,7 +6051,7 @@ msgstr "Skadelige eller risikable aktiviteter" msgid "Harming or endangering minors" msgstr "Udsættelse af mindreårige for skade eller fare" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Har du en kode? <0>Klik her." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Er din lokalitet forkert? <0>Tryk her for at opdatere din lokalitet med GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Oplever du problemer?" @@ -6114,7 +6088,7 @@ msgstr "Gemmes af Bluesky i 7 dage for at forhindre misbrug og slettes herefter" msgid "Help" msgstr "Hjælp" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Lad andre vide, at du ikke er en robot, ved at uploade et billede eller oprette en avatar" @@ -6140,7 +6114,7 @@ msgstr "Halløj!" msgid "Hidden" msgstr "Skjult" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Skjult af dine moderationsindstillinger." @@ -6148,9 +6122,9 @@ msgstr "Skjult af dine moderationsindstillinger." msgid "Hidden list" msgstr "Skjult liste" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Skjult liste" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Skjul" @@ -6198,7 +6172,7 @@ msgstr "Skjul svar for alle" msgid "Hide reply for me" msgstr "Skjul svar for mig" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Skjul dette kort" @@ -6218,12 +6192,12 @@ msgstr "Skjul dette svar?" msgid "Hide translation" msgstr "Skjul oversættelse" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Skjul populære emner" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Skjul populære emner?" @@ -6240,7 +6214,7 @@ msgstr "Skjul brugerliste" msgid "Hide verification badges" msgstr "Vis verifikationsskilte" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Skjuler indholdet" @@ -6293,8 +6267,8 @@ msgstr "Hmm, vi kunne ikke indlæse moderationstjenesten." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Vent lidt! Vi udruller gradvist adgang til video, og du er stadig i kø. Prøv igen senere!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Hot" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Sådan virker det:" @@ -6409,6 +6379,7 @@ msgstr "Hvis du opdaterer din e-mailadresse, vil 2FA via e-mail blive deaktivere msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Hvis du vil skifte din adgangskode, sender vi dig en kode til at bekræfte, at dette er din konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Hvis du vil begrænse, hvem der kan modtage notifikationer om din egen kontos aktivitet, kan du ændre dette under <0>Indstillinger → Privatliv og sikkerhed." @@ -6548,7 +6519,7 @@ msgstr "I appen, push, alle" msgid "In-app, push, people you follow" msgstr "I appen, push, personer du følger" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Indbakke er tom" @@ -6560,6 +6531,7 @@ msgstr "Tom indbakke!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Lige nu er der kun dig! Føj flere personer til din startpakke ved at søge herover." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Job-ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "Deltag i samtalen" msgid "Journalism" msgstr "Journalistik" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Fortsæt med at redigere" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS hjemmeside" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Mærkat tilføjet af {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Mærkat tilføjet af forfatteren." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Mærkater" @@ -6852,7 +6824,7 @@ msgstr "Mærkater tilføjet" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Mærkater kan tilknyttes brugere og indhold. De kan bruges til at skjule, advare og kategorisere i netværket." @@ -6864,7 +6836,7 @@ msgstr "Mærkater på din konto" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Sprogindstillinger" @@ -6874,7 +6846,7 @@ msgstr "Sprogindstillinger" msgid "Languages" msgstr "Sprog" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Større" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Senest påbegyndt netop nu" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Seneste" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Læs mere" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Læs mere" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "Læs mere om at importere kontakter" msgid "Learn more about self hosting your PDS." msgstr "Læs mere om at hoste din egen PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Læs mere om den moderation, der er anvendt på dette indhold" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Læs mere om disse ændringer og om, hvordan du kan give din mening til kende, i vores blogindlæg." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Læs mere om denne advarsel" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Læs mere under <0>kontoindstillinger." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Læs mere." @@ -6993,8 +6965,8 @@ msgstr "Forlad" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Forlader Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Hvis du forlader denne chat, vil den blive låst permanent, og du vil ikke kunne ikke deltage igen." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Forlod gruppechat." @@ -7042,7 +7014,7 @@ msgstr "Forlod gruppechat." msgid "left to go." msgstr "foran dig i køen." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lad mig vælge" @@ -7057,7 +7029,7 @@ msgstr "Lad os komme i gang!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Lys" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Lys" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Like" @@ -7076,7 +7048,7 @@ msgstr "Like" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# like} other {# likes}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Like 10 opslag" @@ -7085,7 +7057,7 @@ msgstr "Like 10 opslag" msgid "Like 10 posts to train the Discover feed" msgstr "Like 10 opslag for at træne Discover-feedet" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Like dette feed" @@ -7093,8 +7065,8 @@ msgstr "Like dette feed" msgid "Like this labeler" msgstr "Like denne mærkningstjeneste" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Liket af" @@ -7111,27 +7083,45 @@ msgstr "Liket af" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Liket af {0, plural, one {# bruger} other {# brugere}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Liket af {likeCount, plural, one {# bruger} other {# brugere}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Likes" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Likes af dine videredelinger" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Likes af dette opslag" @@ -7144,7 +7134,7 @@ msgstr "Lineært" msgid "Link copied to clipboard" msgstr "Link kopieret til udklipsholder" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liste" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste ikke længere skjult" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Livebegivenhed foregår nu: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Livebegivenhed blev skjult" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Livebegivenhed ikke længere skjult" @@ -7279,12 +7269,12 @@ msgstr "Livefunktion er i beta" msgid "Live link" msgstr "Livelink" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Indlæs flere" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Indlæs flere foreslåede feeds" @@ -7292,8 +7282,8 @@ msgstr "Indlæs flere foreslåede feeds" msgid "Load new notifications" msgstr "Indlæs nye notifikationer" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Låser denne gruppechat" msgid "Locked" msgstr "Låst" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7387,7 +7377,7 @@ msgstr "Kærligheds-GIF’er" msgid "Make adjustments to email settings for your account" msgstr "Tilpas e-mailindstillinger for din konto" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Opret en for mig" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "Marker alle læst" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marker alle chats som læst" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marker som læst" msgid "Marked all as read" msgstr "Marker alle som læst" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Markerede alle chats som læst" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Markerede alle anmodninger som læst" @@ -7456,8 +7446,12 @@ msgstr "Markerede alle anmodninger som læst" msgid "Maybe later" msgstr "Måske senere" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Medier" @@ -7475,7 +7469,7 @@ msgstr "Medier gemt på anden enhed" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medier, der kan virke stødende eller upassende for visse personer." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Medlem fjernet fra gruppechat." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "omtalte brugere" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Omtaler" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Besked slettet" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Besked kunne ikke sendes." @@ -7563,15 +7557,15 @@ msgstr "Besked for lang ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Beskedindstillinger" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Beskeder" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Beskeder fra denne person er skjult, fordi du er blokeret." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Beskeder fra denne person er skjult, fordi du har blokeret vedkommende." @@ -7592,7 +7586,7 @@ msgstr "Misvisende" msgid "Missing media" msgstr "Medier mangler" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -7636,7 +7630,7 @@ msgstr "Moderationsliste opdateret" msgid "Moderation lists" msgstr "Moderationslister" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderationslister" @@ -7645,7 +7639,7 @@ msgstr "Moderationslister" msgid "moderation settings" msgstr "moderationsindstillinger" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderationstilstande" @@ -7786,7 +7780,7 @@ msgstr "Skjult" msgid "Muted accounts" msgstr "Skjulte konti" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Skjulte konti" @@ -7867,7 +7861,6 @@ msgstr "Vil du kontakte os om en ophavsretskrænkelse eller et juridisk eller re msgid "Nevermind, create a handle for me" msgstr "Glem det, opret et handle til mig" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nyt" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {Nyt} other {Nye}} opslag fra {firstAuthorName} #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Ny chat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Ny feature" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nye følgere" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Ny gruppechat" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Ny gruppechat" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Ny gruppechat med:" @@ -7966,13 +7959,13 @@ msgstr "Ny liste" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Ny adgangskode" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nyt opslag" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Nyeste svar først" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Nyheder" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Næste billede" msgid "Night" msgstr "Nat" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Ingen annoncer, ingen tracking, ingen manipulerende algoritme. Bluesky respekterer din tid og opmærksomhed." @@ -8098,7 +8091,7 @@ msgstr "Intet udløbstidspunkt angivet" msgid "No feeds found. Try searching for something else." msgstr "Ingen feeds fundet. Prøv at søge efter noget andet." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Ingen følgere endnu" @@ -8118,7 +8111,7 @@ msgstr "Intet billede" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ingen likes endnu." @@ -8135,7 +8128,7 @@ msgstr "Ingen lister" msgid "No longer following {0}" msgstr "Følger ikke længere {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Ingen medier endnu" @@ -8143,7 +8136,7 @@ msgstr "Ingen medier endnu" msgid "No messages yet" msgstr "Ingen beskeder endnu" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Ingen algoritmer, der prioriterer spam og belønner doomscrolling. Find feeds, der arbejder for dig, ikke imod dig." @@ -8184,12 +8177,12 @@ msgstr "Ingen kan skrive beskeder" msgid "No posts here" msgstr "Ingen opslag her" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Ingen opslag endnu" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ingen citater endnu" @@ -8202,7 +8195,7 @@ msgstr "Endnu ingen senest anvendte GIF’er. Vælg en for at se den her." msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Ingen svar endnu" @@ -8217,13 +8210,13 @@ msgstr "Intet resultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Ingen resultater" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Ingen resultater for \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Ingen resultater fundet" msgid "No results found for \"{query}\"" msgstr "Ingen resultater fundet for \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Ingen resultater fundet for “<0>{query}”." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Ingen resultater." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Ingen startpakker endnu" @@ -8265,7 +8258,7 @@ msgstr "Nej tak" msgid "No translation received from your device." msgstr "Ingen oversættelse modtaget fra din enhed." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Ingen videoopslag endnu" @@ -8278,7 +8271,7 @@ msgstr "Ingen" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ingen har liket dette endnu. Måske skulle du være den første!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ingen har citeret dette endnu. Måske skulle du være den første!" @@ -8298,6 +8291,10 @@ msgstr "Intime billeder uden samtykke" msgid "Non-sexual Nudity" msgstr "Ikkeseksuel nøgenhed" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Ikke tilgængelig på denne på denne platform." msgid "Not followed by anyone you’re following" msgstr "Følges ikke af nogen du følger" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Ikke fundet" @@ -8333,7 +8330,7 @@ msgstr "Note vedr. deling" 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 "OBS: Bluesky er et åbent og offentligt netværk. Denne indstilling begrænser kun synligheden af dit indhold her på Bluesky. Andre apps og websites respekterer ikke nødvendigvis denne indstilling. Dit indhold kan stadig blive vist i andre apps og på andre websites til udloggede brugere." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "OBS: Dette opslag er kun synligt for indloggede brugere." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Endnu ingen gemte" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Notifikationindstillinger" @@ -8353,11 +8350,12 @@ msgstr "Notifikationindstillinger" msgid "Notification sounds" msgstr "Notifikationslyde" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Åh nej!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okay" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Nulstil velkomst" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "En af de valgte modtagere tillader ikke gruppechats." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "En af de valgte modtagere har blokeret dig og kan ikke kontaktes." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "En eller flere GIF'er mangler alt-tekst." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "En eller flere billeder mangler alt-tekst." @@ -8454,11 +8454,11 @@ msgstr "En eller flere af de valgte filer er ikke understøttet." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "En eller flere af dine valgte filer er for stor. Den maksimale størrelse er {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Et eller flere opslag er for lange til at blive gemt som kladde. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Kladder må være på højst # tegn.} other {Kladder må være på højst # tegn.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Et eller flere videoer mangler alt-tekst." @@ -8471,7 +8471,7 @@ msgstr "Kun {0} kan svare." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Kun {0} af {1} {2, plural, one {billede} other {billeder}} tilføjet; grænsen er {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Kun WebVTT-filer (.vtt) er understøttet" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ups, denne profil eksisterer ikke. Prøv at skanne en anden." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,7 +8544,7 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Åbn avatarbygger" @@ -8570,21 +8570,22 @@ msgstr "Åbn samtaleindstillinger" msgid "Open draft" msgstr "Åbn kladde" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Åbn navigation" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Åbn emojivælger" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Åbn feedinformation" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Åbn feedindstillingsmenu" @@ -8627,7 +8628,7 @@ msgstr "Åbn moderationsfejlsøgningsside" msgid "Open muted words and tags settings" msgstr "Åbn indstillinger for skjulte ord og tags" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Åbn pakke" @@ -8699,7 +8700,7 @@ msgstr "Åbner yderligere oplysninger om en loghændelse" msgid "Opens alt text dialog" msgstr "Åbner alt-tekstdialog" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Åbner enhedens kamera" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Åbner formular til oprettelse af en ny Bluesky-konto" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Åbner formular til at logge ind på din eksisterende Bluesky-konto" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Adgangskode opdateret!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pause" @@ -8925,12 +8926,12 @@ msgstr "Pause" msgid "Pause GIF" msgstr "Stop afspilning" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Stop afspilning" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personer" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Personer {ownerName} følger, kan anmode om at deltage" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personer som følges af @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personer som @{0} følger" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Personer jeg følger" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Brugere jeg følger, kan anmode om at blive medlem ind" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Personer du følger" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Billeder for voksne." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fastgør feed" @@ -9034,7 +9035,7 @@ msgstr "Fastgør feed" msgid "Pin to home" msgstr "Fastgør til forside" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fastgør til forside" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Fastgjort" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Fastgjorde {0} til forside" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Fastgjort til dine feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Afspil" @@ -9076,8 +9077,8 @@ msgstr "Afspil {0}" msgid "Play GIF" msgstr "Afspil GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Afspil video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Skriv din besked herunder:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politik" @@ -9269,7 +9270,7 @@ msgstr "Politik" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Slå op" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Opslag" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Lav et fotoopslag" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Lav et videoopslag" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Slå alle op" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Opret alligevel" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Opslag blokeret" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Opslag af @{0}" @@ -9340,7 +9341,7 @@ msgstr "Opslag skjult af dig" msgid "Post interaction settings" msgstr "Interaktionsindstillinger" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Interaktionsindstillinger" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Opslag blev fastgjort" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Opslag gemt" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Opslag blev frigjort" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Opslag" @@ -9398,6 +9396,10 @@ msgstr "Opslag kan skjules baseret på deres tekst, tags eller begge dele. Vi an msgid "Posts hidden" msgstr "Opslag er skjult" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potentielt misvisende link" @@ -9449,20 +9451,21 @@ msgstr "Privatliv" msgid "Privacy and security" msgstr "Privatliv og sikkerhed" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privatliv og sikkerhed" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Privatlivs- og sikkerhedsindstillinger" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Privatlivspolitik" msgid "Privacy violation of a minor" msgstr "Privatlivskrænkelse af en mindreårig" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Behandler GIF ..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Behandler video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Offentlige lister over brugere, der kan skjules eller blokeres på én gang." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Udgiv opslag" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Udgiv opslag" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Udgiv svar" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Udgiv svar" @@ -9599,12 +9602,12 @@ msgstr "Citatopslag ikke tilladt" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citater" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citater af dette opslag" @@ -9647,7 +9650,7 @@ msgstr "Genaktiv din konto" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Læs {0, plural, one {yderligere # svar} other {yderligere # svar}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Læs blogindlæg" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Læs mindre" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Læs mere" @@ -9687,11 +9690,11 @@ msgstr "Læs Blueskys privatlivspolitik" msgid "Read the Bluesky Terms of Service" msgstr "Læs Blueskys tjenestevilkår" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Ægte samtaler." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Ægte mennesker." @@ -9721,10 +9724,6 @@ msgstr "Seneste søgninger" msgid "Recently used" msgstr "Senest anvendte" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Anbefalet" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Forbind igen" @@ -9748,7 +9747,7 @@ msgstr "Afvis chatanmodning" msgid "Reject join request" msgstr "Afvis anmodning om deltagelse" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Genindlæs samtaler" @@ -9766,7 +9765,7 @@ msgstr "Genindlæs samtaler" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Fjern" @@ -9792,8 +9791,8 @@ msgstr "Fjern {displayName}?" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Fjern konto" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "Fjern fra chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Fjern fra mine feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Fjern fra kvikadgang?" @@ -9862,7 +9861,7 @@ msgstr "Fjern fra kvikadgang?" msgid "Remove from saved feeds" msgstr "Fjern fra gemte feeds" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Fjern fra gemte opslag" @@ -9880,8 +9879,8 @@ msgstr "Fjern billede" msgid "Remove live status" msgstr "Fjern livetilstand" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Fjernet fra liste" msgid "Removed from saved feeds" msgstr "Fjernet fra gemte feeds" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Fjernet fra gemte opslag" @@ -9952,7 +9951,7 @@ msgstr "Fjernet fra gemte opslag" msgid "Removed from starter pack" msgstr "Fjernet fra startpakke" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Svarede dig" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Besvaret besked fra {senderName}, tryk for at rulle til hen den" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Besvaret besked, tryk for at rulle hen til den" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Svar" @@ -10037,7 +10037,7 @@ msgstr "Svar til dette opslag er ikke tilladt." msgid "Reply" msgstr "Besvar" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Besvar" @@ -10098,8 +10098,8 @@ msgstr "Anmeld samtale" msgid "Report dialog" msgstr "Anmeld dialog" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Anmeld feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Videredelt af dig" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Videredelinger" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Videredelinger af dette opslag" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Videredeling af dine videredelinger" @@ -10253,7 +10253,7 @@ msgstr "Anmodet" msgid "Requests" msgstr "Anmodninger" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Prøver at gentage den seneste handling, der fejlede" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Vender tilbage til forsiden" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Går til forrige side" @@ -10446,27 +10446,27 @@ msgstr "Gem fødselsdato" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Gem ændringer" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Gem ændringer?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Gem kladde" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Gem kladde?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Gem QR-kode" msgid "Save these options for next time" msgstr "Gem disse indstillinger til næste gang" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Føj til mine feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Gemte feeds" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Gemte opslag" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Tilføjet dine feeds" @@ -10520,8 +10520,8 @@ msgstr "Tilføjet dine feeds" msgid "Say hello!" msgstr "Sig hej!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Sig hej til nogen" @@ -10535,7 +10535,7 @@ msgstr "Skan" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Skan QR-kode" @@ -10543,15 +10543,15 @@ msgstr "Skan QR-kode" msgid "Science" msgstr "Videnskab" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Rul til venstre" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Rul til højre" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Rul til den besked, der svares på" @@ -10564,8 +10564,8 @@ msgstr "Rul til toppen" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Søg" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Søg i opslag fra @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Søg efter feeds, du vil foreslå til andre." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Søg efter flere konti" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Søg efter flere feeds" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Søg efter GIF'er" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Søgning er i øjeblikket kun tilgængeligt for indloggede brugere" @@ -10709,6 +10709,7 @@ msgstr "Se jobs hos Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Se flere" @@ -10716,8 +10717,12 @@ msgstr "Se flere" msgid "See more suggested profiles" msgstr "Se flere foreslåede profiler" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Se foreslåede konti" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Spoleskyder. Brug piletaster for at spole frem og tilbage, og mellemrum til at starte/stoppe afspilning." #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Vælg kategorien \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Vælg {0}" msgid "Select {langName}" msgstr "Vælg {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Vælg en farve" @@ -10764,11 +10769,11 @@ msgstr "Vælg konto" msgid "Select an app language" msgstr "Vælg et appsprog" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Vælg en avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Vælg en emoji" @@ -10780,12 +10785,13 @@ msgstr "Vælg en mulighed" msgid "Select app language" msgstr "Vælg appsprog" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Vælg undertekstfil (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Vælg chatten \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Vælg GIF" msgid "Select GIF \"{0}\"" msgstr "Vælg GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Vælg gruppechatmedlemmer" @@ -10864,7 +10870,7 @@ msgstr "Vælg primært sprog" msgid "Select telephone code" msgstr "Vælg landekode" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Vælg emojien {emojiName} som din avatar" @@ -10945,7 +10951,8 @@ msgstr "Send besked" msgid "Send post to {name}" msgstr "Send opslag til {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Send opslag til..." @@ -10963,12 +10970,12 @@ msgstr "Send beskeden fra din telefon" msgid "Send verification email" msgstr "Send bekræftelses-e-mail" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Send som direkte besked" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Angiver e-mail til nulstilling af adgangskode" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Indstillinger" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Indstillinger for aktivitet fra andre" @@ -11036,49 +11043,49 @@ msgstr "Indstillinger for aktivitet fra andre" msgid "Settings for allowing others to be notified of your posts" msgstr "Indstillinger for at tillade andre at blive notificeret om dine opslag" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Notifikationsindstillinger for likes" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Notifikationsindstillinger for omtaler" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Notifikationsindstillinger for nye følgere" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Notifikationsindstillinger for alt andet" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Notifikationsindstillinger for likes af dine videredelinger" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Notifikationsindstillinger for videredeling af dine videredelinger" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Notifikationsindstillinger for citater" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Notifikationsindstillinger for svar" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Notifikationsindstillinger for videredelinger" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Del alligevel" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Del forfatter-DID" @@ -11127,7 +11134,7 @@ msgstr "Del forfatter-DID" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Del link-dialog" msgid "Share my profile" msgstr "Del min profil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Del opslagets at://-URI" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Del QR-kode" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Del dette feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Del denne startpakke" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Del denne startpakke og hjælp andre med at blive en del af fællesskabet på Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Del dine kontakter for at finde venner" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Test af delte indstillinger" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Vis" msgid "Show alt text" msgstr "Vis alt-tekst" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Vis alligevel" @@ -11274,9 +11281,9 @@ msgstr "Vis liste alligevel" msgid "Show lists of users to select from" msgstr "Vis liste over brugere at vælge fra" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Vis mere" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Vis advarsel og filtrer fra feeds" msgid "Show when you’re live" msgstr "Vis, når nu er live" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Viser, hvornår dette opslag blev oprettet" @@ -11341,15 +11348,15 @@ msgstr "Viser, hvornår dette opslag blev oprettet" msgid "Shows other accounts you can switch to" msgstr "Viser andre konti, du kan skifte til" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Viser indholdet" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Viser indholdet" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Log ud?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Indlogning krævet" @@ -11469,7 +11476,7 @@ msgstr "Spring over" msgid "Skip contact sharing and continue to the app" msgstr "Spring kontaktdeling over og fortsæt til appen" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Spring tomme opslag over?" @@ -11487,7 +11494,7 @@ msgstr "Spring til næste trin" msgid "slide" msgstr "swipe" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mindre" @@ -11499,7 +11506,7 @@ msgstr "Udsætter påmindelen" msgid "So many thoughts, you should post one" msgstr "Så mange idéer, du burde slippe fri" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Sociale medier på dine præmisser." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Et medlem forlod gruppen" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Nogen reagerede med {0}" @@ -11554,7 +11561,7 @@ msgstr "Nogen reagerede med {0}" msgid "Someone reacted {0} to {target}" msgstr "Nogen reagerede med {0} på {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Noget gik galt, prøv igen" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Noget gik galt. Prøv igen om lidt." msgid "Something went wrong. Please try again." msgstr "Noget gik galt. Prøv igen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Noget galt? Fortæl os om det." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam, snyd eller bedrag" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "Start en samtale, og den vil blive vist her." msgid "Start a group chat" msgstr "Start en gruppechat" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Start en ny chat" @@ -11682,17 +11689,17 @@ msgstr "Kom i gang med at tilføje personer" msgid "Start adding people!" msgstr "Kom i gang med at tilføje personer!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Start chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Start chat med {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpakke" @@ -11715,12 +11722,16 @@ msgstr "Startpakke af dig" msgid "Starter pack is invalid" msgstr "Startpakke er ugyldig" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpakker" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Startpakker lader dig let dele dine foretrukne feeds og personer med dine venner." @@ -11728,7 +11739,7 @@ msgstr "Startpakker lader dig let dele dine foretrukne feeds og personer med din msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Startpakker lader dig dele dine foretrukne feeds og konto med dine venner." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Startpakker lader dig dele dine foretrukne feeds og konto med dine venner." @@ -11742,7 +11753,7 @@ msgstr "Statusside" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Trin {0} af {1}" @@ -11754,7 +11765,7 @@ msgstr "Lager tømt. Genstart appen nu." msgid "Stored as part of a secure code for matching with others" msgstr "Gemt som del af en tjeksum for match med andre" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Abonner på {publicationTitle} via {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonner på @{0} for at bruge disse labels:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Verificering lykkedes" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Foreslået" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Foreslåede konti" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Solnedgang" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Denne funktion er endnu ikke lanceret i dit land! Kom igen senere." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Spærrede konti kan ikke deltage i en gruppechat." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Spærrede konti kan ikke deltage i en chat." @@ -11921,8 +11934,8 @@ msgstr "Skift til {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "System" @@ -11945,7 +11958,7 @@ msgstr "Tag samtalen privat." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tryk for at give Bluesky adgang til din GPS-lokalitet. Vi bruger denne oplysning til at styre, hvilket indhold og hvilke funktioner der er tilgængelige i dit område." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tryk for flere oplysninger" @@ -11976,7 +11989,7 @@ msgstr "Tryk for at lukke kontekstmenu" msgid "Tap to copy this invite link" msgstr "Tryk for at kopiere denne invitationslink" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tryk for lukke" @@ -12003,7 +12016,7 @@ msgstr "Tryk for at fjerne din reaktion med {0}" msgid "Tap to request access to join this group chat" msgstr "Tryk for at anmode om at deltage i denne gruppechat" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tryk for at prøve igen" @@ -12016,7 +12029,7 @@ msgstr "Tryk for at vise reaktioner med {0}" msgid "Tap to show all reactions" msgstr "Tryk for at se alle reaktioner" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tryk for at se reaktioner" @@ -12032,7 +12045,7 @@ msgstr "Opgave fuldført – 10 følger!" msgid "Task complete - 10 likes!" msgstr "Opgaven er løst - 10 likes!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Lær vores algoritme, hvad du kan lide" @@ -12060,7 +12073,7 @@ msgstr "Tjenestevilkår" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Startpakke ikke fundet." msgid "That username is already taken" msgstr "Det brugernavn er allerede taget" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Det var alt, folkens!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Det var alt" @@ -12216,7 +12229,7 @@ msgstr "Der ser ud til at være problemer med serveren. Prøv igen om lidt." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Startpakken, du prøver at åbne, er ugyldig. Du kan i stedet slette denne startpakke." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Kontekstmenuens emne" @@ -12238,7 +12251,7 @@ msgstr "Bekræftelseskoden, du har oplyst, er ugyldig. Tjek, at du har brugt den msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Godkendelsestjenesten kunne ikke sende en kode til dit telefonnummer. Tjek dit telefonnummer og prøv igen·." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Der opstod en fejl under indlæsning af GIF’er. Tjek din forbindelse o msgid "There was a problem with your internet connection, please try again" msgstr "Der er problemer med din internetforbindelse, prøv igen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Der er problemer med din internetforbindelse, prøv igen" msgid "There was an issue contacting the server" msgstr "Der kunne ikke skabes forbindelse til serveren" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Der kunne ikke skabes forbindelse til serveren. Tjek din internetforbindelse og prøv igen." @@ -12283,8 +12296,8 @@ msgstr "Der kunne ikke skabes forbindelse til serveren. Tjek din internetforbind msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Notifikationer kunne ikke indlæses. Tryk her for at prøve igen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Opslag kunne ikke indlæses. Tryk her for at prøve igen." @@ -12309,7 +12322,7 @@ msgstr "Dine tjenesteindstillinger kunne ikke indlæses" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Feed kunne ikke fjernes. Tjek din internetforbindelse og prøv igen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Disse indstillinger gælder kun dit følgerfeed." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "De ejer denne chat" @@ -12392,7 +12405,7 @@ msgstr "De ejer denne chat" msgid "They won’t be able to rejoin unless you invite them again." msgstr "De ville ikke længere kunne deltage, medmindre du inviterer dem igen." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Denne {screenDescription} er blevet flaget:" @@ -12408,7 +12421,7 @@ msgstr "Denne konto er markeret som en bot af dens ejer." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Denne konto er forsøgt verificeret en eller flere gange, men den er pt. ikke verificeret." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Denne konto har anmodet om, at brugere logger ind for at se profilen." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Dette feed er tomt! Prøv at følge flere brugere eller juster dine sprogindstillinger." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Dette feed er tomt." @@ -12554,7 +12567,7 @@ msgstr "Denne gruppe er låst af en moderatorhandling vedrørende ejeren" msgid "This handle is reserved. Please try a different one." msgstr "Dette handle er reserveret. Prøv et andet." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Dette billede kunne ikke bruges. Prøv et andet format som .jpg eller .png." @@ -12596,7 +12609,7 @@ msgstr "Denne mærkat blev sat på dig." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Denne mærkningstjeneste har ikke oplyst, hvilken mærkater den sætter, og den er muligvis inaktiv." @@ -12621,13 +12634,13 @@ msgstr "Denne liste er tom." msgid "This message is hidden" msgstr "Denne besked er skjult" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Denne besked er skjult, fordi denne bruger blokerer dig." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Denne besked er skjult, fordi du blokerer denne bruger." @@ -12641,7 +12654,7 @@ msgstr "Denne person blokerer dig" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dette opslag er dateret <0>{0}, men det blev først oprettet på Bluesky <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Dette opslag er dateret <0>{0}, men det blev først oprettet på Blu msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Dette opslag har en ukendt interaktionsindstillinger. Din app trænger måske til at blive opdateret." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Dette opslag er kun synligt for indloggede brugere." @@ -12661,7 +12674,7 @@ msgstr "Dette opslag er blevet slettet af dets forfatter" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dette opslag vil blive skjult fra feeds og tråde. Denne handling kan ikke fortrydes." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Dette opslags forfatter har ikke tilladt citatopslag." @@ -12698,11 +12711,12 @@ msgstr "Det tager normalt kun et øjeblik." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Denne bruger har ikke et profilnavn og kan derfor ikke verificeres." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Denne bruger har ikke nogen følgere." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Denne bruger har blokeret dig og kan ikke kontaktes." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Denne bruger har blokeret dig. Du kan ikke se kontoens indhold." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Denne bruger har deaktiveret chat og kan ikke kontaktes." @@ -12733,11 +12748,11 @@ msgstr "Denne bruger optræder i listen <0>{0}, som du har skjult." msgid "This user is new here. Press for more info about when they joined." msgstr "Denne bruger er ny her. Tryk for at se, hvornår kontoen blev oprettet." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Denne bruger følger ikke nogen." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Denne video kan ikke afspilles på din enhed. Din browser eller dit operativsystem mangler muligvis de krævede videocodecs (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Dette vil uigenkaldeligt slette din Bluesky-konto <0>{currentHandle} og alle tilknyttede data. Bemærk at dette også vil påvirke alle andre <1>AT Protocol-tjenester, du benytter med denne konto." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Dette vil fjerne @{0} fra din kvikadgangsliste." @@ -12786,7 +12801,7 @@ msgstr "Indstillinger for tråde" msgid "Threaded" msgstr "Trådet" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Trådindstillinger" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "For mange kontakter – du har overskredet antal kontakter, du kan importere for at finde venner" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Top" @@ -12858,7 +12873,7 @@ msgstr "Top" msgid "Top replies first" msgstr "Mest populære svar først" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Emne" @@ -12893,7 +12908,9 @@ msgstr "Oversættelse til det samme sprog er ikke tilgængelig på din enhed." msgid "Tree view" msgstr "Trævisning" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Populære emner" @@ -12902,7 +12919,7 @@ msgstr "Populære emner" msgid "Trending GIFs" msgstr "Populære GIF’er" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Indstillinger for populære emner" @@ -12918,11 +12935,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Tillid opstår gennem forbindelser, fællesskaber og delt indhold, så vi åbner nu for <0>autoriserede verifikatorer, dvs. organisationer, som kan verificere brugerkonto." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Kunne ikke hente anmodninger om deltagelse." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Kunne ikke finde en valgt modtager." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Kunne ikke finde den valgte modtager." @@ -13024,12 +13043,12 @@ msgstr "Utilgængelig" msgid "Unavailable feed information" msgstr "Utilgængelig feedinformation" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Bloker ikke længere konto?" msgid "Unblock list" msgstr "Bloker ikke længere liste" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Følg ikke længer {0}" msgid "Unfollow account" msgstr "Følg ikke længere konto" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Ophører med at følge brugeren" @@ -13132,7 +13151,7 @@ msgstr "Umærket voksenindhold" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Umærket, krænkende eller ikke-samtykkebaseret voksenindhold" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Fjern like" @@ -13192,7 +13211,7 @@ msgstr "Skjul ikke længere denne gruppechat" msgid "Unmute thread" msgstr "Skjul ikke længere tråd" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Skjul ikke længere video" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Frigør" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Frigør feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Frigør fra forside" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Frigør moderationsliste" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Frigjorde {0} fra forside" @@ -13258,11 +13277,11 @@ msgstr "Afmeld abonnement på denne mærkningstjeneste" msgid "Unsubscribed from list" msgstr "Abonnement på liste afmeldt" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Ikkeunderstøttet indhold i udklipsholder" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Ikkeunderstøttet videotype: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Opdatering af synlighed for svar fejlede" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Upload et foto i stedet" @@ -13355,7 +13374,7 @@ msgstr "Upload fra filer" msgid "Upload from Library" msgstr "Upload fra bibliotek" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Uploader GIF ..." @@ -13369,7 +13388,7 @@ msgstr "Uploader billeder..." msgid "Uploading link thumbnail..." msgstr "Uploader forhåndsvisning af link..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Uploader video..." @@ -13408,7 +13427,7 @@ msgstr "Brug denne sammen med dit handle for at logge ind i en anden app." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Brug din kontos e-mailadresse eller en anden gyldig e-mailadresse, såfremt KWS eller Bluesky har brug for at kontakte dig." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "bruger" @@ -13510,7 +13529,7 @@ msgstr "Verificering fejlede, prøv igen." msgid "Verification settings" msgstr "Verifikationsindstillinger" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verifikationsindstillinger" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Videobehandling fejlede" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Videofeed" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Videofeed fra {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video fra {0}. Tryk for at starte eller stoppe afspilning" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Computerspil" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video er sat på pause" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video afspiller" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video ikke fundet." @@ -13653,7 +13672,7 @@ msgstr "Video ikke fundet." msgid "Video settings" msgstr "Videoindstillinger" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video uploadet" @@ -13662,17 +13681,17 @@ msgstr "Video uploadet" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videoer" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videoer skal være højst 3 minutter lange." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vis" @@ -13691,9 +13710,9 @@ msgstr "{0}s profilbillede" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Se {0}s profil" @@ -13724,13 +13743,13 @@ msgstr "Se blogpost for mere information" msgid "View debug entry" msgstr "Se loghændelse" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Læs mere" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vis hele tråden" @@ -13761,7 +13780,7 @@ msgstr "Se flere" msgid "View more trending videos" msgstr "Se flere populære videoer" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Vis opslag" @@ -13798,11 +13817,11 @@ msgstr "Vis invitationslink for denne gruppechat" msgid "View the labeling service provided by @{0}" msgstr "Vis mærkningstjenesten drevet af @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Se denne brugers verifikationer" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Vis brugere, der likede dette feed" @@ -13831,7 +13850,7 @@ msgstr "Vis moderationslister" msgid "View your muted accounts" msgstr "Vis dine skjulte konti" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Se dine verifikationer" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Vi har netværksproblemer, prøv igen." #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Vi har netværksproblemer, prøv igen" @@ -14043,7 +14062,7 @@ msgstr "Vi har netværksproblemer, prøv igen" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Vi lancerer en nyt system til validering på Bluesky — et tydeligt flueben." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Vi er så glade for at have dig med!" @@ -14064,13 +14083,15 @@ msgstr "Beklager, men vi kunne ikke indlæse denne liste. Hvis problemet varer v msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Beklager, men vi kunne ikke indlæse dine skjulte ord. Prøv igen." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Beklager, men din søgning kunne ikke gennemføres. Prøv igen om lidt." @@ -14078,7 +14099,7 @@ msgstr "Beklager, men din søgning kunne ikke gennemføres. Prøv igen om lidt." msgid "We're sorry, you cannot access this screen at this time." msgstr "Beklager, men du kan ikke tilgå dette skærmbillede i øjeblikket." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Beklager! Det opslag, du svarer på, er blevet slettet." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Hvad sker der?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Hvem kan verificere?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ups!" @@ -14220,21 +14241,21 @@ msgstr "Vil du blokere denne bruger og/eller forlade samtalen?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Vil du gemme dette opslag som kladde, før du ser dine kladder?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Vil du gemme dette opslag som kladde, du kan redigere senere?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Skriv et opslag" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Skriv dit opslag" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Skriv dit svar" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Du tilgår Bluesky fra et område, der pålægger os at bekræfte din alder, før vi giver dig adgang til appen." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Du blokerer {0}" @@ -14342,7 +14363,7 @@ msgstr "Du er ikke længere live" msgid "You are not allowed to upload videos." msgstr "Du har ikke adgang til at uploade videoer." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Du følger endnu ingen" @@ -14362,7 +14383,7 @@ msgstr "Du er verificeret. Du vil miste din verificering, hvis du ændrer dit pr msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Du er verificeret. Du vil miste din verifikation, hvis du ændrer dit handle. <0>Læs mere." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Du kan ændre dine interesser når som helst under Indhold og medier-indstillinger." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Du kan nu logge ind med din nye adgangskode." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Du kan tilføje maks. {MAX_GALLERY_IMAGES, plural, one {}other {# billeder}} pr. opslag" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Du kan kun gemme kladder på maks. 1000 tegn." @@ -14439,9 +14460,9 @@ msgstr "Du kan læse chathistorikken men ikke sende nye beskeder." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Du kan vælge op til {MAX_GALLERY_IMAGES, plural, one {}other {# billeder}} i alt." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Du kan opdatere dette senere under Indstillinger." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Du kan ikke tilføje flere end {EMOJI_REACTION_LIMIT, plural, one {# emojireaktion} other {# emojireaktioner}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Du kan endnu oprette en gruppechat endnu." @@ -14555,7 +14577,7 @@ msgstr "Du har nu bekræftet din e-mailadresse. Du kan lukke denne dialog." msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Du har midlertidigt nået grænsen for videouploads. Prøv igen senere." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Du har ikke-gemte ændringer til denne kladde. Vil du gemme dem?" @@ -14563,7 +14585,7 @@ msgstr "Du har ikke-gemte ændringer til denne kladde. Vil du gemme dem?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Du har ikke-gemte ændringer. Vil du gemme, før du ser dine kladder?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Du har endnu ikke oprettet en startpakke!" @@ -14614,7 +14636,7 @@ msgstr "Du kan tilføje højst {STARTER_PACK_MAX_SIZE, plural, one {}other {{STA msgid "You may only add up to 3 feeds" msgstr "Du må tilføje højst 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Du skal være chattens ejer for at fjerne et medlem." @@ -14622,7 +14644,7 @@ msgstr "Du skal være chattens ejer for at fjerne et medlem." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Du skal være mindst 13 år gammel for at bruge Bluesky. Læs mere i vores <0>tjenestevilkår." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Du skal følge mindst syv andre konti for at oprette en startpakke." @@ -14639,7 +14661,7 @@ msgstr "Du skal give adgang til dit mediebibliotek." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Du skal bekræfte din e-mailadresse, før du kan aktivere 2FA via e-mail." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Du ejer denne chat" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Du vil nok foretrække at genstarte appen nu." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Du reagerede med {0}" @@ -14667,15 +14689,15 @@ msgstr "Du reagerede med {0} på {target}" msgid "You recently changed your birthdate" msgstr "Du har for nylig opdateret din fødselsdato" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Du svarede" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Du svarede {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Du svarede dig selv" @@ -14715,11 +14737,11 @@ msgstr "Du kan melde dig ind igen uden være blive inviteret." msgid "You: {message}" msgstr "Dig: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Du kommer til at følge de foreslåede brugere og feeds, når du har afsluttet oprettelsen af din konto!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Du kommer til at følge de foreslåede brugere, når du har afsluttet oprettelsen af din konto!" @@ -14791,7 +14813,7 @@ msgstr "Du er nået slutningen af det aktive indhold." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du er nået enden af dit feed! Find flere konti, du kan føge." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Du har nået det maksimale antal kladder" @@ -14799,7 +14821,7 @@ msgstr "Du har nået det maksimale antal kladder" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Du har nået det maksimalt tilladte antal forespørgsler. Prøv igen senere." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Du har nået din daglige grænse for videouploads (for mange bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du har nået din daglige grænse for videouploads (for mange videoer)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Du er løbet tør for videoer at se. Måske er det på tide at holde en pause?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Din konto" @@ -14835,11 +14857,11 @@ msgstr "Din konto er suspenderet" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Din konto er ikke gammel nok til videoupload. Prøv igen senere." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Din konto er for ny" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Din konto skal være mindst 7 dage gammel for at kunne oprette en ny gruppechat." @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Dine interesser blev opdateret!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Dine interesser hjælper os med at finde noget, du kan lide!" @@ -14967,11 +14989,11 @@ msgstr "Din adgangskode er nu ændret! Fremover skal du bruge din nye adgangskod msgid "Your password must be at least 8 characters long." msgstr "Din adgangskode skal bestå af mindst 8 tegn." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Dit opslag blev sendt" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Dine opslag blev sendt" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Dit foretrukne sprog" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Dit profilbillede" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Dit profilbillede omgivet af koncentriske cirkler af andre brugeres profilbilleder" @@ -14992,7 +15014,7 @@ msgstr "Dit profilbillede omgivet af koncentriske cirkler af andre brugeres prof msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Din profil, dine opslag, feeds og lister vil ikke længere kunne ses af andre Bluesky-brugere. Du kan genaktivere din konto når som helst ved at logge ind." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Dit svar blev sendt" @@ -15005,7 +15027,7 @@ msgstr "Din anmeldelse vil blive sendt til <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Dine valgte interesser hjælper os med at vise dig relevant indhold." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Din tråd har tomme opslag, som vil blive sprunget over. De resterende opslag vil blive oprettet som en tråd." diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index bcddbd9d86..e32a8b8971 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: de\n" +"Language: de_DE\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: German\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorie „{interestsDisplayName}“ (aktiv)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blockierte Nachricht ausgeblendet)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(enthält eingebettete Inhalte)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(gelöschte Nachricht)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(ungültiger Chat-Einladungslink)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(Nachricht wurde gesendet, bevor du beigetreten bist)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# Stunde} other {# Stunden}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# Kennzeichnung wurde auf deinen Post angewendet} other {# Kennzeichnungen wurden auf deinen Post angewendet}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# Kennzeichnung wurde angewendet} other {# Kennzeichnungen wurden angewendet}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# Gefällt mir} other {# Gefällt mir}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# Mitglied} other {# Mitglieder}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# neue Beitrittsanfrage} other {# neue Beitrittsanfrage #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# Person hat reagiert} other {# Personen haben reagiert}} – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Account)" @@ -251,36 +252,13 @@ msgstr "{0} zum Chat hinzugefügt" msgid "{0} and {1} added to chat" msgstr "{0} und {1} zum Chat hinzugefügt" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} und {1} gefällt das" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} und {others, plural, one {{1} weiteren Person} other {{2} weiteren Personen}} gefällt das" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} und {othersLabel} gefällt das" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} Folge ich" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} blockiert dich" @@ -324,14 +302,6 @@ msgstr "{0} hat den Chat verlassen" msgid "{0} left the group" msgstr "{0} hat die Gruppe verlassen" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} gefällt das" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} von 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} hat mit {1} reagiert" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} und {memberCount, plural, one {# weitere Person} other {# weitere Personen}} wurden zum Chat hinzugefügt" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} und {others, plural, one {{2} weiteren Person} other {{3} weiteren Personen}} gefällt das" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} und {othersLabel} gefällt das" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} hat dich verifiziert" msgid "{following} following" msgstr "{following} Folge ich" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} kann nicht hinzugefügt werden" @@ -698,7 +660,7 @@ msgstr "{handle} kann nicht hinzugefügt werden" msgid "{handle} can't be messaged" msgstr "{handle} kann nicht angeschrieben werden" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} kann nicht angeschrieben werden" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ungelesenes Element} other {# ungeles msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# Kontakt gefunden} other {# Kontakte gefunden}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} weitere Person} other {{1} weitere Personen}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} ist Bluesky vor {timeAgoString} beigetreten" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} ist Bluesky vor {timeAgoString} mit einem Startpaket beigetreten" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {# Zeichen verbleibend} other {# Zeichen verbleibend}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} hat geantwortet" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} hat {originalName} geantwortet" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} hat dir geantwortet" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# Anfrage} other {# Anfragen}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ Anfragen" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "vor {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} ist ein vertrauenswürdiger Verifizierer" @@ -842,13 +795,13 @@ msgstr "Verifizierungen von {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {Folge ich} other {Folge ich}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {Zitat} other {Zitate}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {Repost} other {Reposts}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {Speicherung} other {Speicherungen}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {Gefällt mir} other {Gefällt mir}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> hat dich hinzugefügt" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Einloggen<1> oder <2>einen Account erstellen<3> <4>um nach Nachrichten, Sport, Politik und allem anderen zu suchen, was auf Bluesky passiert." @@ -971,7 +924,7 @@ msgstr "30 Tage" msgid "7 days" msgstr "7 Tage" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Eine Sammlung beliebter Feeds, die du auf Bluesky finden kannst, einschließlich News, Booksky, Game Dev, Blacksky, und Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Ein Netzwerkfehler ist aufgetreten. Bitte überprüfe deine Internetverb #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Ein neuer Code wurde gesendet" msgid "A new form of verification" msgstr "Eine neue Form der Verifizierung" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Eine Antwort auf eine Nachricht, die vor deinem Beitritt gesendet wurde" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Ein Screenshot des Post-Editors mit einem neuen Button „Entwürfe“ neben dem Posten-Button, begleitet von einem Feuerwerk in Regenbogenfarben. Darunter steht im Editor (aus dem Englischen übersetzt) der Text: „Hey, hast du schon gehört? Bluesky hat jetzt Entwürfe!!!“." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Der Absender folgt einem ausgewählten Empfänger nicht." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Zugang angefragt! Der Gruppeninhaber wird deine Anfrage prüfen." msgid "Accessibility" msgstr "Barrierefreiheit" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Barrierefreiheitseinstellungen" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Account durch Liste stummgeschaltet" msgid "Account options" msgstr "Account-Optionen" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Account aus dem Schnellzugriff entfernt" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Accounts mit einem gewellten blauen Häkchen <0><1/> können andere verifizieren. Diese vertrauenswürdigen Verifizierer werden von Bluesky ausgewählt." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktivität von anderen" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Aktivitätsmitteilungen" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Alt-Text hinzufügen (optional)" msgid "Add another account" msgstr "Weiteren Account hinzufügen" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Einen weiteren Post hinzufügen" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Einen weiteren Post zum Thread hinzufügen" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Weiteren Suchfilter hinzufügen" @@ -1253,7 +1213,7 @@ msgstr "Automatisierungskennzeichnung zum Account hinzufügen" msgid "Add emoji reaction" msgstr "Emoji-Reaktion hinzufügen" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Filter hinzufügen" @@ -1338,7 +1298,7 @@ msgstr "Füge diesen Feed zu deinen Feeds hinzu" msgid "Add to lists" msgstr "Zu Listen hinzufügen" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Zu gespeicherten Posts hinzufügen" @@ -1400,7 +1360,7 @@ msgstr "Für Erwachsene" msgid "Adult content" msgstr "Inhalte für Erwachsene" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Ermöglicht Zugriff auf Direktnachrichten" msgid "Already have a code?" msgstr "Hast du bereits einen Code?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Hast du bereits einen Account?" @@ -1614,7 +1574,7 @@ msgstr "Eine E-Mail wurde an {0} gesendet. Sie enthält einen Bestätigungscode, msgid "An error has occurred" msgstr "Ein Fehler ist aufgetreten" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Ein Fehler ist aufgetreten" @@ -1631,7 +1591,7 @@ msgstr "Beim Abrufen der vorgeschlagenen Accounts ist ein Fehler aufgetreten." msgid "An error occurred while fetching the feed." msgstr "Beim Abrufen des Feeds ist ein Fehler aufgetreten." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Beim Generieren deines Startpakets ist ein Fehler aufgetreten. Möchtest du es erneut versuchen?" @@ -1640,11 +1600,11 @@ msgstr "Beim Generieren deines Startpakets ist ein Fehler aufgetreten. Möchtest msgid "An error occurred while hiding suggestion. {0}" msgstr "Beim Ausblenden des Vorschlags ist ein Fehler aufgetreten. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es später erneut." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es erneut." @@ -1684,7 +1644,7 @@ msgstr "Ein Fehler ist aufgetreten. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Eine Illustration, die zeigt, wie Profilbilder von Nutzern aus einem Kontaktbuch in die Bluesky-App übertragen werden" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Eine Illustration mehrerer Bluesky-Posts mit Repost-, Gefällt-mir- und Kommentar-Symbolen" @@ -1705,17 +1665,15 @@ msgstr "Über einen Einladungslink können Personen diesem Gruppenchat beitreten msgid "An issue not included in these options" msgstr "Ein Problem, das hier nicht aufgelistet ist" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Beim Erstellen des Gruppenchats ist ein Problem aufgetreten. Bitte versuche es erneut." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Beim Starten des Chats ist ein Problem aufgetreten. Bitte versuche es erneut." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Beim Öffnen des Chats ist ein Problem aufgetreten" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Beim Starten des Gruppenchats ist ein Fehler aufgetreten. Bitte versuche es erneut." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Beliebiges Datum" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Jeder" @@ -1802,7 +1760,7 @@ msgstr "Jeden, der mir folgt" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Jeder, der ihn hat, kann damit nicht mehr beitreten oder eine Beitrittsanfrage stellen. Du kannst jederzeit einen neuen erstellen." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Namen von App-Passwörtern müssen mindestens 4 Zeichen enthalten" msgid "App passwords" msgstr "App-Passwörter" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-Passwörter" @@ -1891,8 +1849,8 @@ msgstr "Einspruch gegen diese Entscheidung" msgid "Appeal this label" msgstr "Diese Kennzeichnung anfechten" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Pull Request anwenden" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archiviert von {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Archivierter Post" @@ -1980,7 +1938,7 @@ msgstr "Bist du sicher, dass du dies von deinen Feeds entfernen möchtest?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Möchtest du deine Beitrittsanfrage für {0} wirklich zurückziehen?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Bist du sicher, dass du diesen Post verwerfen möchtest?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Automatisierter Account" @@ -2033,7 +1991,7 @@ msgstr "Automatisch" msgid "Automation label" msgstr "Automatisierungskennzeichnung" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatisierungskennzeichnung" @@ -2050,12 +2008,16 @@ msgstr "Videos und GIFs automatisch abspielen" msgid "Available" msgstr "Verfügbar" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Bevor du einen Post erstellen oder antworten kannst, musst du zuerst deine E-Mail verifizieren." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Bevor du ein Startpaket erstellen kannst, musst du zuerst deine E-Mail verifizieren." @@ -2135,10 +2097,10 @@ msgstr "Bevor du Mitteilungen zu den Posts von {name} erhalten kannst, musst du #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2158,24 +2120,30 @@ msgstr "Beginne den Altersverifikationsprozess, indem du die folgenden Felder au #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 msgid "Beta Feature" -msgstr "Beta-Feature" +msgstr "Beta-Funktion" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "Beta-Funktionen" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Beta-Funktionen aktiviert" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Beta-Funktionen können instabil sein. Einige Änderungen erfordern möglicherweise das Neuladen der App." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Beta-Funktionen können instabil sein. Einige Änderungen erfordern möglicherweise einen Neustart der App." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "Geburtsdatum" msgid "Birthday" msgstr "Geburtstag" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blockiert" msgid "Blocked accounts" msgstr "Blockierte Accounts" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blockierte Accounts" @@ -2282,7 +2250,7 @@ msgstr "Blockierte Accounts können nicht in deinen Threads antworten, dich erw 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 "Blockierte Accounts können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren. Du wirst ihre Inhalte nicht sehen und sie werden daran gehindert, deine zu sehen." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blockieren hindert diesen Kennzeichnungsdienst nicht daran, Kennzeichnungen zu deinem Account hinzuzufügen." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kann die Echtheit des angegebenen Datums nicht bestätigen." @@ -2330,7 +2299,7 @@ msgstr "Bluesky ist ein offenes Netzwerk, bei dem du deinen Hosting-Anbieter aus msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky ist ein offenes Netzwerk, bei dem du deinen eigenen Anbieter auswählen kannst. Wenn du neu hier bist, empfehlen wir dir, bei der Standardoption Bluesky Social zu bleiben." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Mit Freunden ist Bluesky besser!" @@ -2358,7 +2327,7 @@ msgstr "Bluesky Social Nutzungsbedingungen" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky speichert deine Kontakte als verschlüsselte Daten. Wenn du deine Kontakte entfernst, werden diese Daten sofort gelöscht." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky wählt eine Reihe von empfohlenen Accounts von Personen in deinem Netzwerk aus." @@ -2425,24 +2394,25 @@ msgstr "Stöbere auf der Seite „Explore” nach weiteren Vorschlägen" msgid "Browse other feeds" msgstr "Andere Feeds durchsuchen" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Posts über {displayName} durchsuchen" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Posts durchsuchen, die mit {displayName} getaggt sind" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Startpaket {displayName} durchsuchen" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Thema {0} durchsuchen" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Thema {displayName} durchsuchen" @@ -2461,8 +2431,8 @@ msgstr "Button, um zur Startseite zurückzukehren" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Von {0}" @@ -2473,9 +2443,9 @@ msgstr "von @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Von <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen< msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen zu." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Von dir" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2504,7 @@ msgstr "Kamerazugriff erforderlich" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Kamerazugriff erforderlich" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Reaktivierung abbrechen und ausloggen" msgid "Cancel reply" msgstr "Antwort abbrechen" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Suche abbrechen" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Änderungen am Startpaket werden nach der Erstellung nicht in der Liste übernommen. Die Liste ist eine unabhängige Kopie." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat stummgeschaltet" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chat nicht gefunden." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Chat-Optionen" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Chat-Inhaber können einen Gruppenchat nicht verlassen." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Der Absender folgt dem Empfänger des Chats nicht." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Posteingang für Chat-Anfragen" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Chat-Anfragen" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chat-Einstellungen" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat nicht mehr stummgeschaltet" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2810,7 +2781,7 @@ msgstr "Sieh in <0>{currentEmail} nach einer E-Mail mit dem Bestätigungscod #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Schau später noch einmal vorbei!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "Wähle eine Methode zur Domain-Verifizierung" msgid "Choose Feeds" msgstr "Feeds wählen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Wähle für mich" @@ -2854,7 +2825,7 @@ msgstr "Personen auswählen" msgid "Choose post languages" msgstr "Post-Sprachen auswählen" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Diese Farbe als dein Profilbild verwenden" @@ -2879,7 +2850,7 @@ msgstr "Wähle deine eigene Zeitleiste! Feeds von der Community helfen dir, Inha msgid "Choose your password" msgstr "Wähle dein Passwort" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Wähle deinen Nutzernamen" @@ -2966,7 +2937,7 @@ msgstr "Klicke hier, um den Einladungslink für diesen Gruppenchat anzuzeigen" msgid "Click to open tag menu for {0}" msgstr "Klicken, um das Tag-Menü für {0} zu öffnen" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" @@ -3003,7 +2974,7 @@ msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" msgid "Close" msgstr "Schließen" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Aktiven Dialog schließen" @@ -3047,7 +3018,7 @@ msgstr "Banner schließen" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Bildansicht schließen" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Menü schließen" @@ -3090,7 +3061,7 @@ msgstr "Banner mit eingehenden Anfragen schließen" msgid "Close this dialog" msgstr "Diesen Dialog schließen" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Willkommensfenster schließen" @@ -3098,7 +3069,7 @@ msgstr "Willkommensfenster schließen" msgid "Closes password update alert" msgstr "Schließt die Passwort-Update-Benachrichtigung" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Schließt den Post-Editor und verwirft den Post-Entwurf" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Farbe" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Farbmodus" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Comics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Community-Richtlinien" @@ -3141,7 +3112,7 @@ msgstr "Community-Richtlinien" msgid "Complete onboarding and start using your account" msgstr "Schließe das Onboarding ab und nutze deinen Account" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Schließe die Herausforderung ab" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Neuen Post verfassen" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Verfasse Posts mit einer Länge von bis zu {0, plural, other {# Zeichen}}" @@ -3160,11 +3131,11 @@ msgstr "Verfasse Posts mit einer Länge von bis zu {0, plural, other {# Zeichen} msgid "Compose reply" msgstr "Antwort verfassen" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIF wird komprimiert..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Video wird komprimiert..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Kontaktiere unser Support-Team" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Support kontaktieren" @@ -3253,7 +3224,7 @@ msgstr "Inhalte und Medien" msgid "Content and media" msgstr "Inhalte und Medien" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Inhalte und Medien" @@ -3265,10 +3236,6 @@ msgstr "Inhalt blockiert" msgid "Content filters" msgstr "Inhaltsfilterung" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Inhalte aus dem gesamten Netzwerk, von denen wir glauben, dass sie dir gefallen könnten." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Inhaltssprachen" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Inhalte, die Selbstverletzung fördern oder darstellen" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Inhaltswarnung" msgid "Content warnings" msgstr "Inhaltswarnungen" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Hintergrund des Kontextmenüs; klicken, um das Menü zu schließen" @@ -3302,7 +3269,7 @@ msgstr "Hintergrund des Kontextmenüs; klicken, um das Menü zu schließen" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Thread fortsetzen…" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Weiter zum Gruppennamen" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Konversation nicht gefunden." msgid "Copied build version to clipboard" msgstr "Die Build-Version wurde in die Zwischenablage kopiert" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Link in die Zwischenablage kopiert" @@ -3376,7 +3343,7 @@ msgstr "Link in die Zwischenablage kopiert" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "App-Passwort kopieren" msgid "Copy at:// URI" msgstr "at://-URI kopieren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "DID des Autors kopieren" @@ -3449,10 +3416,10 @@ msgstr "Link kopieren" msgid "Copy link to list" msgstr "Link zur Liste kopieren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Link zum Post kopieren" @@ -3470,8 +3437,8 @@ msgstr "Link zum Startpaket kopieren" msgid "Copy message text" msgstr "Nachrichtentext kopieren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "at://-URI des Posts kopieren" @@ -3490,7 +3457,7 @@ msgstr "TXT-Eintragswert kopieren" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Urheberrechtsrichtlinie" @@ -3540,11 +3507,11 @@ msgstr "Nicht alle Übereinstimmungen konnten gefolgt werden. {0}" msgid "Could not leave chat" msgstr "Du konntest den Chat nicht verlassen" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Chat konnte nicht verlassen werden." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Feed konnte nicht geladen werden" @@ -3562,7 +3529,7 @@ msgstr "Profil konnte nicht geladen werden" msgid "Could not mute chat" msgstr "Chat konnte nicht stummgeschaltet werden" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Mitglied konnte nicht entfernt werden." @@ -3606,8 +3573,8 @@ msgstr "Kühe Schweine" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Erstellen" @@ -3624,26 +3591,26 @@ msgstr "Eine Liste aus diesem Startpaket erstellen" msgid "Create a QR code for a starter pack" msgstr "QR-Code für ein Startpaket erstellen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Ein Startpaket erstellen" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Startpaket erstellen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Ein Startpaket für mich erstellen" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Account erstellen" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Einen Account erstellen" @@ -3666,15 +3633,15 @@ msgstr "Einen Account erstellen" msgid "Create an account without using this starter pack" msgstr "Stattdessen ohne dieses Startpaket einen Account erstellen" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Stattdessen ein Profilbild erstellen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Ein weiteres erstellen" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Gruppenchat erstellen" @@ -3741,9 +3708,9 @@ msgstr "Kultur" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Aktuelle Beta-Funktionen" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Aktueller Chat" @@ -3770,8 +3737,8 @@ msgstr "Gefährliche Substanzen oder Drogenmissbrauch" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Dunkel" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dunkel" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Dunkles Farbschema" @@ -3814,7 +3781,7 @@ msgstr "Diesen Sprachvorschlag ablehnen" msgid "Deepfake adult content" msgstr "Deepfake-Inhalte für Erwachsene" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Standard" @@ -3894,7 +3861,7 @@ msgstr "Meinen Account löschen" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Post löschen" @@ -3988,7 +3955,7 @@ msgstr "Dialog: Anpassen, wer mit diesem Post interagieren kann" msgid "Dialog: Set search filters" msgstr "Dialog: Suchfilter festlegen" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Gedimmt" @@ -4002,7 +3969,7 @@ msgstr "Deaktivieren" msgid "Disable 2FA" msgstr "2FA deaktivieren" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Untertitel deaktivieren" @@ -4045,9 +4012,9 @@ msgstr "Deaktiviert" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Verwerfen" msgid "Discard changes?" msgstr "Änderungen verwerfen?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Entwurf verwerfen?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Post verwerfen?" @@ -4079,6 +4046,10 @@ msgstr "Germ DM trennen" msgid "Discourage apps from showing my account to logged-out users" msgstr "Apps daran hindern, ausgeloggten Nutzern meinen Account anzuzeigen" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Feeds entdecken" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Apps daran hindern, ausgeloggten Nutzern meinen Account anzuzeigen" msgid "Discover new custom feeds" msgstr "Entdecke neue benutzerdefinierte Feeds" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Neue Feeds entdecken" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Entdecke neue Feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Verwerfen" @@ -4103,19 +4070,19 @@ msgstr "Verwerfen" msgid "Dismiss banner" msgstr "Banner schließen" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Fehler verwerfen" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Anleitung zum Einstieg schließen" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Interessen verwerfen" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Live-Event-Banner schließen" @@ -4135,14 +4102,14 @@ msgstr "Schließt den QR-Scanner" #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" -msgstr "Größere Alt-Text-Badges zeigen" +msgstr "Größere Alternativtext-Kennzeichnungen anzeigen" #: src/screens/Profile/Header/EditProfileDialog.tsx:310 #: src/screens/Profile/Header/EditProfileDialog.tsx:316 msgid "Display name" msgstr "Anzeigename" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Schluss mit Trollen und Clickbait. Finde echte Menschen und Gespräche, die dir wichtig sind." @@ -4205,8 +4172,8 @@ msgstr "Keine Sorge! Alle vorhandenen Nachrichten und Einstellungen werden gespe #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Keine Sorge! Alle vorhandenen Nachrichten und Einstellungen werden gespe msgid "Done" msgstr "Fertig" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Doppeltippen oder lange auf die Nachricht drücken, um eine Reaktion hinzuzufügen" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Doppeltippen, um den Dialog zu schließen" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Doppelt tippen, um „Gefällt mir“ zu geben" @@ -4328,6 +4295,7 @@ msgstr "Essstörungen" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Bild bearbeiten" msgid "Edit interaction settings" msgstr "Interaktionseinstellungen bearbeiten" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Interessen bearbeiten" @@ -4397,7 +4365,7 @@ msgstr "Live-Status bearbeiten" msgid "Edit moderation list" msgstr "Moderationsliste bearbeiten" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Meine Feeds bearbeiten" @@ -4406,6 +4374,11 @@ msgstr "Meine Feeds bearbeiten" msgid "Edit name" msgstr "Name bearbeiten" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Mitteilungen von {0} bearbeiten" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Personen bearbeiten" @@ -4444,7 +4417,7 @@ msgstr "Nutzerliste bearbeiten" msgid "Edit who can reply" msgstr "Bearbeiten, wer antworten kann" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Dein Startpaket bearbeiten" @@ -4500,8 +4473,8 @@ msgstr "HTML-Code einbetten" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Post einbetten" @@ -4509,7 +4482,7 @@ msgstr "Post einbetten" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Bette diesen Post in deine Website ein. Kopiere einfach den folgenden Code und füge ihn in den HTML-Code deiner Website ein." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Eingebetteter Video-Player" @@ -4531,9 +4504,9 @@ msgstr "Inhalte für Erwachsene aktivieren" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Beta-Funktionen aktivieren" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Untertitel aktivieren" @@ -4550,12 +4523,13 @@ msgstr "Externe Medien aktivieren" msgid "Enable media players for" msgstr "Medienplayer aktivieren für" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Aktiviere Mitteilungen für einen Account, indem du dessen Profil aufrufst und auf das <0>Glocken-Symbol <1/> klickst." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Push-Mitteilungen aktivieren" @@ -4581,7 +4555,7 @@ msgstr "Aktiviere angesagte Videos in deinem Discover-Feed" msgid "Enabled" msgstr "Aktiviert" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Ende des Feeds" @@ -4608,7 +4582,7 @@ msgstr "Gib ein Wort oder einen Tag ein" msgid "Enter code" msgstr "Code eingeben" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "In den Vollbildmodus wechseln" @@ -4650,11 +4624,11 @@ msgstr "Gib deinen Nutzernamen und dein Passwort ein" msgid "Enters full screen" msgstr "Vollbildmodus aktivieren" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Unterhaltung" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fehler" @@ -4684,7 +4658,7 @@ msgstr "Beim Speichern der Datei ist ein Fehler aufgetreten" msgid "Error receiving captcha response." msgstr "Fehler beim Empfang der Captcha-Antwort." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Fehler: {error}" @@ -4696,8 +4670,8 @@ msgstr "Jeder kann antworten" msgid "Everybody can reply to this post." msgstr "Jeder kann auf diesen Post antworten." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Jedem" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Jedem" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Alles andere" @@ -4738,7 +4712,7 @@ msgstr "Nutzer ausschließen, denen du folgst" msgid "Excludes users you follow" msgstr "Nutzer ausgeschlossen, denen du folgst" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Vollbildmodus beenden" @@ -4755,11 +4729,11 @@ msgstr "Liste der Nutzer erweitern" msgid "Expand or collapse the full post you are replying to" msgstr "Erweitere oder reduziere den gesamten Post, auf den du antwortest" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Text des Posts ausklappen" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Text des Posts erweitern oder einklappen" @@ -4802,15 +4776,15 @@ msgstr "Explizite oder potenziell verstörende Medien." msgid "Explicit sexual images." msgstr "Explizite sexuelle Bilder." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Entdecken" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Entdecke die App" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Externe Medienpräferenzen" @@ -4886,7 +4860,7 @@ msgstr "Fehler beim Ändern des Handles. Bitte versuche es erneut." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Link konnte nicht kopiert werden" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Gruppenchat konnte nicht verlassen werden" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Fehler beim Laden der Konversationen" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Feeds konnten nicht geladen werden" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Fehler beim Laden der Einstellungen für Feeds" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Mitteilungseinstellungen konnten nicht geladen werden." @@ -5012,14 +4987,14 @@ msgstr "Einstellung konnte nicht geladen werden." msgid "Failed to load profiles" msgstr "Profile konnten nicht geladen werden" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Die vorgeschlagenen Feeds konnten nicht geladen werden." -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Die vorgeschlagenen Accounts, denen du folgen solltest, konnten nicht geladen werden" @@ -5027,12 +5002,12 @@ msgstr "Die vorgeschlagenen Accounts, denen du folgen solltest, konnten nicht ge msgid "Failed to lock group chat" msgstr "Gruppenchat konnte nicht gesperrt werden" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Alle Chats konnten nicht als gelesen markiert werden" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Deine Anfrage konnte nicht zurückgezogen werden. Bitte versuche es erne msgid "Failed to resolve location. Please try again." msgstr "Standort konnte nicht ermittelt werden. Bitte versuche es erneut." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Fehler beim Speichern des Entwurfs" @@ -5191,7 +5166,7 @@ msgstr "Fake-Account oder Bot" msgid "False information about elections" msgstr "Falsche Informationen über Wahlen" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "Feed-Ersteller" msgid "Feed identifier" msgstr "Feed-Kennzeichen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feed-Menü" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback an Feed-Betreiber gesendet" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds aktualisiert!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds, die dir gefallen könnten." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Update abrufen" @@ -5273,11 +5244,11 @@ msgstr "Update abrufen" msgid "File saved successfully!" msgstr "Datei erfolgreich gespeichert!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Nach Autor filtern" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Nach Autor filtern (aktuell: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Diese Suche nach {0} filtern" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtere, wer Mitteilungen zu deiner Aktivität erhalten kann" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtere, von wem du Mitteilungen erhalten möchtest" @@ -5352,8 +5323,8 @@ msgstr "Accounts zum Folgen finden" msgid "Find and invite friends" msgstr "Freunde finden und einladen" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Kontakte finden" @@ -5387,7 +5358,7 @@ msgstr "Finde deine Freunde" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Finde deine Freunde auf Bluesky, indem du deine Telefonnummer verifizierst und mit deinen Kontakten abgleichst. Wir schützen deine Daten und du entscheidest, wie es weitergeht. <0>Mehr erfahren (auf Englisch)" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Finde deine Leute" @@ -5429,7 +5400,7 @@ msgstr "Suchfeld fokussieren" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "{0} folgen" msgid "Follow {displayName}" msgstr "{displayName} folgen" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} folgen" @@ -5453,11 +5424,11 @@ msgstr "{handle} folgen" msgid "Follow 10 accounts" msgstr "Folge 10 Accounts" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Folge 10 Personen, um loszulegen" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Folge 7 Accounts" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Follower können beitreten" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Follower von @{0}, die du kennst" @@ -5544,7 +5515,7 @@ msgstr "Follower, die du kennst" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,30 +5540,30 @@ msgstr "Du folgst jetzt {0}" msgid "Following {displayName}" msgstr "{displayName} Folge ich" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "{handle} Folge ich" #: src/screens/Settings/ContentAndMediaSettings.tsx:78 #: src/screens/Settings/ContentAndMediaSettings.tsx:81 msgid "Following feed preferences" -msgstr "Following-Feed-Einstellungen" +msgstr "„Folge ich“-Feed-Einstellungen" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" -msgstr "Following-Feed-Einstellungen" +msgstr "„Folge ich“-Feed-Einstellungen" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Folgt dir" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Schriftart" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Schriftgröße" @@ -5612,13 +5583,13 @@ msgstr "Aus Sicherheitsgründen müssen wir einen Bestätigungscode an deine E-M msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Aus Sicherheitsgründen kannst du dies nicht erneut ansehen. Falls du dieses App-Passwort verlierst, musst du ein neues generieren." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Für das beste Erlebnis empfehlen wir, die Schriftart des Themes zu verwenden." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Für dich" @@ -5628,7 +5599,7 @@ msgstr "Für dich" msgid "Forever" msgstr "Dauerhaft" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Vergiss den Lärm" @@ -5647,11 +5618,13 @@ msgstr "Passwort vergessen?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Vier Sprechblasen, die einen Gruppenchat darstellen. Erste Nachricht: „Hast du schon das Neueste gehört? Bluesky hat jetzt Gruppenchats!“ Zweite Nachricht: „OMG, niemals“ Dritte Nachricht: „Wow, 50 Personen in einem Chat!“ Vierte Nachricht: „Du kannst sogar Einladungslinks versenden!“" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Befreie deinen Feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Von" @@ -5674,7 +5647,7 @@ msgstr "Von <0/>" msgid "From these people" msgstr "Von diesen Personen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Ein Startpaket generieren" @@ -5712,45 +5685,45 @@ msgstr "Germ DM wieder verbunden" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features we’re testing." -msgstr "" +msgstr "Erhalte frühzeitig Zugriff auf experimentelle Funktionen, die wir derzeit testen." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Hilfe erhalten" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Erhalte Mitteilungen über Startpaket-Beitritte, Verifizierungen und andere Aktivitäten." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Mitteilungen erhalten, wenn dir jemand folgt." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Mitteilungen erhalten, wenn Personen deine Posts mit „Gefällt mir“ markieren." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Erhalte Mitteilungen, wenn Personen deine Reposts mit „Gefällt mir“ markieren." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Mitteilungen erhalten, wenn dich jemand erwähnt." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Mitteilungen erhalten, wenn jemand deine Posts zitiert." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Mitteilungen erhalten, wenn jemand auf deine Posts antwortet." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Mitteilungen erhalten, wenn jemand deine Posts repostet." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Erhalte Mitteilungen, wenn Personen deine Reposts reposten." @@ -5762,15 +5735,15 @@ msgstr "Erhalte Mitteilungen, wenn dir Personen Nachrichtenanfragen senden." msgid "Get notifications when people send you messages." msgstr "Erhalte Mitteilungen, wenn dir Personen Nachrichten senden." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Erhalte Mitteilungen über Aktivitäten zu Posts, die du abonniert hast." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Erhalte Mitteilungen über neue Posts" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Erhalte Mitteilungen über Posts und Antworten von Accounts deiner Wahl." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Erhalte Mitteilungen über neue Posts von {name}" @@ -5799,11 +5772,11 @@ msgstr "Los geht's" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF hochgeladen" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Gib deinem Profil ein Gesicht" @@ -5813,20 +5786,20 @@ msgstr "Verherrlichung von Gewalt" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Live gehen für" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Zum Profil von {0} gehen" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Name des Gruppenchats aktualisiert" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Gruppenchat-Einstellungen" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Gruppenchats können maximal {0, plural, other {# Personen}} umfassen." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Gruppe ist gesperrt" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Gruppenname" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Gruppenname ist zu lang. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Die maximale Anzahl an Zeichen beträgt #.}}" @@ -6077,7 +6051,7 @@ msgstr "Schädliche oder riskante Aktivitäten" msgid "Harming or endangering minors" msgstr "Schädigung oder Gefährdung von Minderjährigen" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Du hast einen Code? <0>Hier klicken." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Haben wir deinen Standort falsch erkannt? <0>Tippe hier, um deinen Standort mit GPS zu aktualisieren." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Hast du Probleme?" @@ -6114,7 +6088,7 @@ msgstr "Von Bluesky 7 Tage lang gespeichert, um Missbrauch zu verhindern, anschl msgid "Help" msgstr "Hilfe" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Hilf anderen zu erkennen, dass du kein Bot bist, indem du ein Bild hochlädst oder ein Profilbild erstellst." @@ -6140,7 +6114,7 @@ msgstr "Hi!" msgid "Hidden" msgstr "Ausgeblendet" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Ausgeblendet durch deine Moderationseinstellungen." @@ -6148,9 +6122,9 @@ msgstr "Ausgeblendet durch deine Moderationseinstellungen." msgid "Hidden list" msgstr "Ausgeblendete Liste" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Ausgeblendete Liste" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Ausblenden" @@ -6198,7 +6172,7 @@ msgstr "Antwort für alle ausblenden" msgid "Hide reply for me" msgstr "Antwort für mich ausblenden" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Diese Karte ausblenden" @@ -6218,12 +6192,12 @@ msgstr "Diese Antwort ausblenden?" msgid "Hide translation" msgstr "Übersetzung ausblenden" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Angesagte Themen ausblenden" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Angesagte Themen ausblenden?" @@ -6240,7 +6214,7 @@ msgstr "Nutzerliste ausblenden" msgid "Hide verification badges" msgstr "Verifizierungsabzeichen ausblenden" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Blendet den Inhalt aus" @@ -6293,8 +6267,8 @@ msgstr "Hm, wir konnten diesen Moderationsdienst nicht laden." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Einen Moment! Wir gewähren nach und nach Zugriff auf dieses Video und du bist noch in der Warteschlange. Versuche es in Kürze erneut!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Hosting-Anbieter: {0}" msgid "Hosting provider: Bluesky" msgstr "Hosting-Anbieter: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Beliebt" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "So funktioniert es:" @@ -6409,6 +6379,7 @@ msgstr "Wenn du deine E-Mail aktualisierst, wird E-Mail-2FA (Zwei-Faktor-Authent msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Wenn du dein Passwort ändern möchtest, senden wir dir einen Code, um zu verifizieren, dass dies dein Account ist." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Wenn du einschränken möchtest, wer Mitteilungen über die Aktivitäten deines Accounts erhalten kann, kannst du das unter <0>Einstellungen → Datenschutz und Sicherheit ändern." @@ -6548,7 +6519,7 @@ msgstr "In-App, Push, alle" msgid "In-app, push, people you follow" msgstr "In-App, Push, Personen, denen du folgst" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Posteingang leer" @@ -6560,6 +6531,7 @@ msgstr "Posteingang leer!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Hier bist gerade nur du! Füge mehr Leute zu deinem Startpaket hinzu, indem du oben nach ihnen suchst." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Job-ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "An der Konversation teilnehmen" msgid "Journalism" msgstr "Journalismus" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Weiter bearbeiten" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS-Website" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Von {0} gekennzeichnet." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Vom Autor gekennzeichnet." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Kennzeichnungen" @@ -6852,7 +6824,7 @@ msgstr "Kennzeichnungen hinzugefügt" msgid "Labels applied to this post" msgstr "Auf diesen Post angewendete Kennzeichnungen" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Kennzeichnungen sind Anmerkungen zu Nutzern und Inhalten. Sie können verwendet werden, um Inhalte auszublenden, zu warnen oder zu kategorisieren." @@ -6864,7 +6836,7 @@ msgstr "Kennzeichnungen auf deinem Account" msgid "Language" msgstr "Sprache" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Spracheinstellungen" @@ -6874,7 +6846,7 @@ msgstr "Spracheinstellungen" msgid "Languages" msgstr "Sprachen" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Größer" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Zuletzt gestartet gerade eben" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Neuste" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Mehr erfahren (auf Englisch)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Mehr erfahren" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Erfahre mehr darüber, <0>wie du die erweiterte Suche verwendest." @@ -6937,8 +6909,8 @@ msgstr "Erfahre mehr über das Importieren von Kontakten (auf Englisch)" msgid "Learn more about self hosting your PDS." msgstr "Erfahre mehr über das Selbst-Hosting deiner PDS (auf Englisch)." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Erfahre mehr über die Moderation, die auf diesen Inhalt angewendet wurde" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Erfahre mehr über diese Änderungen und wie du uns deine Meinung mitteilen kannst, indem du unseren Blogpost liest (auf Englisch)." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Erfahre mehr über diese Warnung" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Mehr dazu in deinen <0>Account-Einstellungen" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Mehr erfahren." @@ -6993,8 +6965,8 @@ msgstr "Verlassen" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Bluesky verlassen" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Wenn du diesen Chat verlässt, wird er dauerhaft gesperrt und du kannst ihm nicht erneut beitreten." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Gruppenchat verlassen." @@ -7042,7 +7014,7 @@ msgstr "Gruppenchat verlassen." msgid "left to go." msgstr "verbleibend." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lass mich wählen" @@ -7057,7 +7029,7 @@ msgstr "Los geht's!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Hell" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Hell" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Gefällt mir" @@ -7076,7 +7048,7 @@ msgstr "Gefällt mir" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gefällt mir ({0, plural, one {# Gefällt mir} other {# Gefällt mir}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10 Posts mit „Gefällt mir“ markieren" @@ -7085,7 +7057,7 @@ msgstr "10 Posts mit „Gefällt mir“ markieren" msgid "Like 10 posts to train the Discover feed" msgstr "Markiere 10 Posts mit „Gefällt mir“, um den Discover-Feed zu trainieren" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Diesen Feed mit „Gefällt mir“ markieren" @@ -7093,8 +7065,8 @@ msgstr "Diesen Feed mit „Gefällt mir“ markieren" msgid "Like this labeler" msgstr "Diesen Kennzeichner mit „Gefällt mir“ markieren" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Mit „Gefällt mir“ markiert von" @@ -7111,27 +7083,45 @@ msgstr "Mit „Gefällt mir“ markiert von" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gefällt {0, plural, one {# Nutzer} other {# Nutzern}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Mit „Gefällt mir“ markiert von {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Mit „Gefällt mir“ markiert von {0} und {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gefällt {likeCount, plural, one {# Nutzer} other {# Nutzern}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Gefällt mir" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "„Gefällt mir“ für deine Reposts" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "„Gefällt mir“-Angaben für diesen Post" @@ -7144,7 +7134,7 @@ msgstr "Linear" msgid "Link copied to clipboard" msgstr "Link in die Zwischenablage kopiert" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liste" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste nicht mehr stummgeschaltet" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Live-Event findet gerade statt: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Live-Event ausgeblendet" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Live-Event wieder eingeblendet" @@ -7279,12 +7269,12 @@ msgstr "Die Live-Funktion befindet sich in der Beta-Phase" msgid "Live link" msgstr "Live-Link" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Mehr laden" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Weitere empfohlene Feeds laden" @@ -7292,8 +7282,8 @@ msgstr "Weitere empfohlene Feeds laden" msgid "Load new notifications" msgstr "Neue Mitteilungen laden" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Diesen Gruppenchat sperren" msgid "Locked" msgstr "Gesperrt" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7376,7 +7366,7 @@ msgstr "Sieht aus, als hättest du alle deine Feeds abgelöst. Aber keine Sorge, #: src/screens/Feeds/NoFollowingFeed.tsx:36 msgid "Looks like you're missing a following feed. <0>Click here to add one." -msgstr "Es sieht so aus, als ob du einen Following-Feed vermisst. <0>Klicke hier, um einen hinzuzufügen." +msgstr "Es sieht so aus, als hättest du keinen „Folge ich“-Feed. <0>Klicke hier, um einen hinzuzufügen." #. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection. #: src/features/gifPicker/components/GifCategoryPills.tsx:55 @@ -7387,7 +7377,7 @@ msgstr "Liebes-GIFs" msgid "Make adjustments to email settings for your account" msgstr "E-Mail-Einstellungen für deinen Account anpassen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Erstelle eins für mich" @@ -7418,15 +7408,15 @@ msgstr "Manuell" msgid "Mark all as read" msgstr "Alle als gelesen markieren" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Alle Chats als gelesen markieren" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Als gelesen markieren" msgid "Marked all as read" msgstr "Alle als gelesen markiert" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Alle Chats als gelesen markiert" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Alle Anfragen als gelesen markiert" @@ -7456,8 +7446,12 @@ msgstr "Alle Anfragen als gelesen markiert" msgid "Maybe later" msgstr "Vielleicht später" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Ich" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Medien" @@ -7475,7 +7469,7 @@ msgstr "Auf einem anderen Gerät gespeicherte Medien" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medien, die für einige Zielgruppen verstörend oder unangemessen sein könnten." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Mitglied aus dem Gruppenchat entfernt." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "erwähnte Nutzer" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Erwähnungen" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Nachricht gelöscht" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Nachricht konnte nicht gesendet werden." @@ -7563,15 +7557,15 @@ msgstr "Nachricht ist zu lang ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Nachrichtenoptionen" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Nachrichten" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Nachrichten dieser Person sind ausgeblendet, solange sie dich blockiert." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Nachrichten dieser Person sind ausgeblendet, solange du sie blockierst." @@ -7592,7 +7586,7 @@ msgstr "Irreführend" msgid "Missing media" msgstr "Fehlende Medien" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -7636,7 +7630,7 @@ msgstr "Moderationsliste aktualisiert" msgid "Moderation lists" msgstr "Moderationslisten" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderationslisten" @@ -7645,7 +7639,7 @@ msgstr "Moderationslisten" msgid "moderation settings" msgstr "Moderationseinstellungen" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderationsstatus" @@ -7786,7 +7780,7 @@ msgstr "Stummgeschaltet" msgid "Muted accounts" msgstr "Stummgeschaltete Accounts" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Stummgeschaltete Accounts" @@ -7867,7 +7861,6 @@ msgstr "Möchtest du eine Urheberrechtsverletzung, eine rechtliche Anfrage oder msgid "Nevermind, create a handle for me" msgstr "Egal, erstelle einen Handle für mich" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Neu" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {Neuer Post} other {Neue Posts}} von {firstAuth #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Neuer Chat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Neue Funktion" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Neue Follower" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Neuer Gruppenchat" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Neuer Gruppenchat" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Neuer Gruppenchat mit:" @@ -7966,13 +7959,13 @@ msgstr "Neue Liste" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Neue Nachrichtenanfragen" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Neue Nachrichten" @@ -7982,12 +7975,12 @@ msgstr "Neue Nachrichten" msgid "New password" msgstr "Neues Passwort" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Neuer Post" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Neueste Antworten zuerst" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Aktuelles" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Nächstes Bild" msgid "Night" msgstr "Nacht" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Keine Werbung, kein aufdringliches Tracking, keine Engagement-Fallen. Bluesky respektiert deine Zeit und Aufmerksamkeit." @@ -8067,7 +8060,7 @@ msgstr "Noch keine App-Passwörter" #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Derzeit sind keine Beta-Funktionen verfügbar." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8091,7 @@ msgstr "Kein Ablaufdatum festgelegt" msgid "No feeds found. Try searching for something else." msgstr "Keine Feeds gefunden. Versuche, nach etwas anderem zu suchen." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Noch keine Follower" @@ -8118,7 +8111,7 @@ msgstr "Kein Bild" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Noch keine „Gefällt mir“-Angaben" @@ -8135,7 +8128,7 @@ msgstr "Keine Listen" msgid "No longer following {0}" msgstr "Du folgst {0} nicht mehr" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Noch keine Medien" @@ -8143,7 +8136,7 @@ msgstr "Noch keine Medien" msgid "No messages yet" msgstr "Noch keine Nachrichten" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Schluss mit endlosem Doomscrolling und nutzlosen Algorithmen. Entdecke Feeds, die für dich arbeiten, nicht gegen dich." @@ -8184,12 +8177,12 @@ msgstr "Niemand kann Nachrichten senden" msgid "No posts here" msgstr "Keine Posts vorhanden" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Noch keine Posts" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Noch keine Zitate" @@ -8202,7 +8195,7 @@ msgstr "Noch keine kürzlich verwendeten GIFs. Wähle eines aus, damit es hier a msgid "No replies" msgstr "Keine Antworten" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Noch keine Antworten" @@ -8217,13 +8210,13 @@ msgstr "Kein Ergebnis" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Keine Ergebnisse" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Keine Ergebnisse für „{0}“." @@ -8236,23 +8229,23 @@ msgstr "Keine Ergebnisse gefunden" msgid "No results found for \"{query}\"" msgstr "Keine Ergebnisse für „{query}“ gefunden" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "Keine Ergebnisse für „<0>{query}“ mit den ausgewählten erweiterten Suchfiltern gefunden." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Keine Ergebnisse für „<0>{query}“ gefunden." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Keine Ergebnisse für deine Suchanfrage mit den ausgewählten erweiterten Suchfiltern gefunden." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Keine Ergebnisse." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Noch keine Startpakete" @@ -8265,7 +8258,7 @@ msgstr "Nein danke" msgid "No translation received from your device." msgstr "Keine Übersetzung vom Gerät erhalten." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Noch keine Video-Posts" @@ -8278,7 +8271,7 @@ msgstr "Niemand" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Bisher gefällt das niemandem. Vielleicht solltest du der Erste sein!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Niemand hat das bisher zitiert. Vielleicht solltest du der Erste sein!" @@ -8298,6 +8291,10 @@ msgstr "Intime Bilder ohne Einwilligung" msgid "Non-sexual Nudity" msgstr "Nicht-sexuelle Nacktheit" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Keine" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Auf dieser Plattform nicht verfügbar." msgid "Not followed by anyone you’re following" msgstr "Gefolgt von niemandem, dem du folgst" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nicht gefunden" @@ -8333,7 +8330,7 @@ msgstr "Hinweis über das Teilen" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Hinweis: Bluesky ist ein offenes und öffentliches Netzwerk. Diese Einstellung schränkt lediglich die Sichtbarkeit deiner Inhalte in der Bluesky-App und auf der Website ein. Andere Apps respektieren diese Einstellung möglicherweise nicht. Deine Inhalte werden ausgeloggten Nutzern möglicherweise weiterhin von anderen Apps und Websites angezeigt." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Hinweis: Dieser Post ist nur für eingeloggte Nutzer sichtbar." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Noch nichts gespeichert" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Mitteilungseinstellungen" @@ -8353,11 +8350,12 @@ msgstr "Mitteilungseinstellungen" msgid "Notification sounds" msgstr "Mitteilungstöne" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Oh nein!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okay" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Onboarding zurücksetzen" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Einer der ausgewählten Empfänger erlaubt keine Gruppenchats." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Einer der ausgewählten Empfänger hat dich blockiert und kann nicht angeschrieben werden." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Bei einem oder mehreren GIFs fehlen Alt-Texte." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Bei einem oder mehreren Bildern fehlen Alt-Texte." @@ -8454,11 +8454,11 @@ msgstr "Eine oder mehrere deiner ausgewählten Dateien werden nicht unterstützt msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Eine oder mehrere deiner ausgewählten Dateien sind zu groß. Die maximale Größe beträgt {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Ein oder mehrere Posts sind zu lang, um als Entwurf gespeichert zu werden. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Die maximale Zeichenzahl beträgt # Zeichen.} other {Die maximale Zeichenzahl beträgt # Zeichen.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte." @@ -8471,7 +8471,7 @@ msgstr "Nur {0} kann antworten." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Nur {0} von {1} {2, plural, one {Bild} other {Bilder}} hinzugefügt; das Limit liegt bei {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "Nur Posts mit Videos" msgid "Only replies" msgstr "Nur Antworten" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Es werden nur WebVTT-Dateien (.vtt) unterstützt" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ups, dieses Profil existiert nicht. Versuche, ein anderes zu scannen." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Huch!" @@ -8544,7 +8544,7 @@ msgstr "Huch!" msgid "Open advanced search options" msgstr "Erweiterte Suchoptionen öffnen" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Profilbild-Editor öffnen" @@ -8570,21 +8570,22 @@ msgstr "Konversationsoptionen öffnen" msgid "Open draft" msgstr "Entwurf öffnen" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Seitenmenü öffnen" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Emoji-Picker öffnen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Feed-Infobildschirm öffnen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Feed-Optionsmenü öffnen" @@ -8627,7 +8628,7 @@ msgstr "Moderations-Debugseite öffnen" msgid "Open muted words and tags settings" msgstr "Einstellungen für stummgeschaltete Wörter und Tags öffnen" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Paket öffnen" @@ -8699,7 +8700,7 @@ msgstr "Öffnet zusätzliche Details für einen Debug-Eintrag" msgid "Opens alt text dialog" msgstr "Öffnet den Alt-Text-Dialog" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Öffnet die Kamera auf dem Gerät" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Öffnet den Ablauf, um einen neuen Bluesky-Account zu erstellen" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Öffnet den Ablauf zum Einloggen bei deinem bestehenden Bluesky-Account" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Passwort aktualisiert!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausieren" @@ -8925,12 +8926,12 @@ msgstr "Pausieren" msgid "Pause GIF" msgstr "GIF pausieren" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Video pausieren" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personen" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Personen, denen {ownerName} folgt, können eine Beitrittsanfrage stellen" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personen gefolgt von @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personen, die @{0} folgen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Personen, denen ich folge" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Personen, denen ich folge, können eine Beitrittsanfrage stellen" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Personen, denen du folgst" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Bilder für Erwachsene." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Feed anheften" @@ -9034,7 +9035,7 @@ msgstr "Feed anheften" msgid "Pin to home" msgstr "An die Startseite anheften" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "An Startbildschirm anheften" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Angeheftet" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} an Startseite angepinnt" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "An deine Feeds angepinnt" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Abspielen" @@ -9076,8 +9077,8 @@ msgstr "{0} abspielen" msgid "Play GIF" msgstr "GIF abspielen" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Video abspielen" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Bitte schreibe deine Nachricht unten:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politik" @@ -9269,7 +9270,7 @@ msgstr "Politik" msgid "Porn" msgstr "Pornografie" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Posten" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Foto posten" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Video posten" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Alle posten" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Trotzdem posten" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Post blockiert" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Post von @{0}" @@ -9340,7 +9341,7 @@ msgstr "Post von dir ausgeblendet" msgid "Post interaction settings" msgstr "Post-Interaktionseinstellungen" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Post-Interaktionseinstellungen" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Post angeheftet" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Post gespeichert" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Post gelöst" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Posts" @@ -9398,6 +9396,10 @@ msgstr "Posts können basierend auf ihrem Text, ihren Tags oder beidem stummgesc msgid "Posts hidden" msgstr "Posts ausgeblendet" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Posts, Antworten" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Möglicherweise irreführender Link" @@ -9449,20 +9451,21 @@ msgstr "Datenschutz" msgid "Privacy and security" msgstr "Datenschutz und Sicherheit" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Datenschutz und Sicherheit" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Datenschutz- und Sicherheitseinstellungen" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Datenschutzerklärung" msgid "Privacy violation of a minor" msgstr "Verletzung der Privatsphäre eines Minderjährigen" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIF wird verarbeitet..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Video wird verarbeitet..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Öffentliche, teilbare Listen von Nutzern, die zum Stummschalten oder Blockieren verwendet werden können." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Post veröffentlichen" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Posts veröffentlichen" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Antworten veröffentlichen" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Antwort veröffentlichen" @@ -9599,12 +9602,12 @@ msgstr "Zitieren deaktiviert" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Zitate" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Zitate dieses Posts" @@ -9647,7 +9650,7 @@ msgstr "Reaktiviere deinen Account" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "{0, plural, one {# weitere Antwort} other {# weitere Antworten}} lesen" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Mehr über die Verwendung erweiterter Suchfilter lesen" @@ -9657,11 +9660,11 @@ msgstr "Mehr über die Verwendung erweiterter Suchfilter lesen" msgid "Read blog post" msgstr "Blogpost lesen (auf Englisch)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Weniger lesen" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Mehr lesen" @@ -9687,11 +9690,11 @@ msgstr "Bluesky-Datenschutzerklärung lesen" msgid "Read the Bluesky Terms of Service" msgstr "Bluesky-Nutzungsbedingungen lesen" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Echte Konversationen." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Echte Personen." @@ -9721,10 +9724,6 @@ msgstr "Letzte Suchen" msgid "Recently used" msgstr "Zuletzt verwendet" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Empfohlen" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Erneut verbinden" @@ -9748,7 +9747,7 @@ msgstr "Chat-Anfrage ablehnen" msgid "Reject join request" msgstr "Beitrittsanfrage ablehnen" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Konversationen neu laden" @@ -9766,7 +9765,7 @@ msgstr "Konversationen neu laden" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Entfernen" @@ -9792,8 +9791,8 @@ msgstr "{displayName} entfernen?" msgid "Remove {q}" msgstr "{q} entfernen" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Account entfernen" @@ -9845,15 +9844,15 @@ msgstr "Filter entfernen" msgid "Remove from chat" msgstr "Aus dem Chat entfernen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Aus meinen Feeds entfernen" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Aus Schnellzugriff entfernen?" @@ -9862,7 +9861,7 @@ msgstr "Aus Schnellzugriff entfernen?" msgid "Remove from saved feeds" msgstr "Aus gespeicherten Feeds entfernen" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Aus gespeicherten Posts entfernen" @@ -9880,8 +9879,8 @@ msgstr "Bild entfernen" msgid "Remove live status" msgstr "Live-Status entfernen" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Mitglied entfernen" @@ -9943,7 +9942,7 @@ msgstr "Aus der Liste entfernt" msgid "Removed from saved feeds" msgstr "Aus gespeicherten Feeds entfernt" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Aus gespeicherten Posts entfernt" @@ -9952,7 +9951,7 @@ msgstr "Aus gespeicherten Posts entfernt" msgid "Removed from starter pack" msgstr "Aus dem Startpaket entfernt" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Antwort auf deinen Post" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Nachricht von {senderName}, auf die geantwortet wurde. Tippe, um dorthin zu scrollen" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Die Nachricht, auf die geantwortet wurde, wurde vor deinem Beitritt gesendet" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Nachricht, auf die geantwortet wurde. Tippe, um dorthin zu scrollen" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Antworten" @@ -10037,7 +10037,7 @@ msgstr "Antworten zu diesem Post sind deaktiviert." msgid "Reply" msgstr "Antworten" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Antworten" @@ -10098,8 +10098,8 @@ msgstr "Konversation melden" msgid "Report dialog" msgstr "Melde-Dialog" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Feed melden" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Repostet von dir" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Reposts" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reposts von diesem Post" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Reposts deiner Reposts" @@ -10253,7 +10253,7 @@ msgstr "Angefragt" msgid "Requests" msgstr "Anfragen" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Zurück zur Startseite" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Zurück zur vorherigen Seite" @@ -10446,27 +10446,27 @@ msgstr "Geburtsdatum speichern" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Änderungen speichern" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Änderungen speichern?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Entwurf speichern" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Entwurf speichern?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR-Code speichern" msgid "Save these options for next time" msgstr "Diese Optionen für das nächste Mal speichern" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "In meinen Feeds speichern" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Gespeicherte Feeds" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Gespeicherte Posts" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "In deinen Feeds gespeichert" @@ -10520,8 +10520,8 @@ msgstr "In deinen Feeds gespeichert" msgid "Say hello!" msgstr "Sag Hallo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Sag jemandem Hallo" @@ -10535,7 +10535,7 @@ msgstr "Scannen" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "QR-Code scannen" @@ -10543,15 +10543,15 @@ msgstr "QR-Code scannen" msgid "Science" msgstr "Wissenschaft" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Nach links scrollen" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Nach rechts scrollen" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Zur Nachricht scrollen, auf die geantwortet wird" @@ -10564,8 +10564,8 @@ msgstr "Nach oben scrollen" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Suche" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Posts von @{0} durchsuchen" @@ -10612,11 +10612,11 @@ msgstr "Nach {q} suchen" msgid "Search for feeds that you want to suggest to others." msgstr "Suche nach Feeds, die du anderen vorschlagen möchtest." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Nach weiteren Accounts suchen" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Nach weiteren Feeds suchen" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Suche nach GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Suche ist derzeit nicht verfügbar, wenn du ausgeloggt bist" @@ -10709,6 +10709,7 @@ msgstr "Sieh dir Jobs bei Bluesky an" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Mehr sehen" @@ -10716,8 +10717,12 @@ msgstr "Mehr sehen" msgid "See more suggested profiles" msgstr "Weitere vorgeschlagene Profile ansehen" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "Weitere angesagte Themen ansehen" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Vorgeschlagene Accounts ansehen" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Such-Slider. Verwende die Pfeiltasten, um vorwärts oder rückwärts zu suchen und Leertaste zum Abspielen/Pausieren" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Kategorie „{interestsDisplayName}“ auswählen" @@ -10748,7 +10753,7 @@ msgstr "{0} auswählen" msgid "Select {langName}" msgstr "{langName} auswählen" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Wähle eine Farbe" @@ -10764,11 +10769,11 @@ msgstr "Account auswählen" msgid "Select an app language" msgstr "Wähle eine App-Sprache aus" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Ein Profilbild auswählen" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Ein Emoji auswählen" @@ -10780,12 +10785,13 @@ msgstr "Wähle eine Option aus" msgid "Select app language" msgstr "App-Sprache auswählen" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Untertiteldatei auswählen (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Chat „{name}“ auswählen" @@ -10826,7 +10832,7 @@ msgstr "GIF auswählen" msgid "Select GIF \"{0}\"" msgstr "GIF „{0}“ auswählen" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Mitglieder für den Gruppenchat auswählen" @@ -10864,7 +10870,7 @@ msgstr "Primäre Sprache auswählen" msgid "Select telephone code" msgstr "Landesvorwahl auswählen" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Das Emoji {emojiName} als dein Profilbild auswählen" @@ -10945,7 +10951,8 @@ msgstr "Nachricht senden" msgid "Send post to {name}" msgstr "Post an {name} senden" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Post senden an..." @@ -10963,12 +10970,12 @@ msgstr "Sende die Nachricht von deinem Handy aus" msgid "Send verification email" msgstr "Verifizierungs-E-Mail senden" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Per Direktnachricht senden" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Per Chat senden" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Hosting-Anbieter manuell festlegen" msgid "Sets email for password reset" msgstr "Legt die E-Mail für das Zurücksetzen des Passworts fest" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Einstellungen" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Einstellungen für Aktivitäten von anderen" @@ -11036,49 +11043,49 @@ msgstr "Einstellungen für Aktivitäten von anderen" msgid "Settings for allowing others to be notified of your posts" msgstr "Einstellungen, um anderen zu erlauben, Mitteilungen über deine Posts zu erhalten" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Einstellungen für Mitteilungen zu „Gefällt mir“-Angaben" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Einstellungen für Erwähnungsmitteilungen" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Einstellungen für Mitteilungen über neue Follower" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Einstellungen für Mitteilungen für alles andere" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Einstellungen für Mitteilungen zu „Gefällt mir“-Angaben für deine Reposts" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Einstellungen für Mitteilungen bei neuen Nachrichtenanfragen" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Einstellungen für Mitteilungen bei neuen Nachrichten" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Einstellungen für Mitteilungen zu Reposts deiner Reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Einstellungen für Mitteilungen zu Zitaten" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Einstellungen für Mitteilungen zu Antworten" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Einstellungen für Mitteilungen zu Reposts" @@ -11115,8 +11122,8 @@ msgstr "Altersbereich teilen" msgid "Share anyway" msgstr "Trotzdem teilen" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Autor-DID teilen" @@ -11125,9 +11132,9 @@ msgstr "Autor-DID teilen" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Feedback teilen" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Link teilen Dialog" msgid "Share my profile" msgstr "Mein Profil teilen" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Post über at:// URI teilen" @@ -11169,12 +11176,12 @@ msgstr "Profil teilen" msgid "Share QR code" msgstr "QR-Code teilen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Diesen Feed teilen" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Diese Suche teilen" @@ -11186,8 +11193,8 @@ msgstr "Dieses Startpaket teilen" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Teile dieses Startpaket und hilf Menschen, deiner Community auf Bluesky beizutreten." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Teile deine Kontakte, um Freunde finden zu können" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughts…" -msgstr "" +msgstr "Teile deine Gedanken…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Tester für gemeinsame Einstellungen" @@ -11219,7 +11226,7 @@ msgstr "Beim Teilen deines Altersbereichs wird nur der mit deinem Apple Account msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Beim Teilen deines Altersbereichs wird nur der mit deinem Google Account verknüpfte Bereich offengelegt – zum Beispiel, dass du mindestens 18 Jahre alt bist. <0>Dein genaues Alter und dein Geburtsdatum werden niemals weitergegeben und diese Daten verlassen dieses Gerät niemals. Daher wird der Zugriff nur auf diesem Gerät ermöglicht. Alternativ <1>kannst du unseren vertrauenswürdigen Partner KWS nutzen, um deine Verifizierung abzuschließen und den Zugriff auf allen Plattformen freizuschalten." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Anzeigen" msgid "Show alt text" msgstr "Alt-Text anzeigen" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Trotzdem anzeigen" @@ -11274,8 +11281,8 @@ msgstr "Liste trotzdem anzeigen" msgid "Show lists of users to select from" msgstr "Listen von Nutzern anzeigen, aus denen du auswählen kannst" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Mehr anzeigen" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11318,7 +11325,7 @@ msgstr "Reposts anzeigen" #: src/screens/Settings/FollowingFeedPreferences.tsx:133 #: src/screens/Settings/FollowingFeedPreferences.tsx:143 msgid "Show samples of your saved feeds in your Following feed" -msgstr "Zeige Beispiele deiner gespeicherten Feeds in deinem Following-Feed" +msgstr "Beispiele aus deinen gespeicherten Feeds in deinem „Folge ich“-Feed anzeigen" #: src/lib/moderation/useLabelBehaviorDescription.ts:61 msgid "Show warning" @@ -11333,7 +11340,7 @@ msgstr "Warnung anzeigen und aus Feeds filtern" msgid "Show when you’re live" msgstr "Anzeigen, wenn du live bist" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Zeigt Informationen darüber an, wann dieser Post erstellt wurde" @@ -11341,15 +11348,15 @@ msgstr "Zeigt Informationen darüber an, wann dieser Post erstellt wurde" msgid "Shows other accounts you can switch to" msgstr "Zeigt andere Accounts an, zu denen du wechseln kannst" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Zeigt den Inhalt an" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Zeigt den Inhalt an" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Ausloggen?" msgid "Sign up" msgstr "Registrieren" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Einloggen erforderlich" @@ -11469,7 +11476,7 @@ msgstr "Überspringen" msgid "Skip contact sharing and continue to the app" msgstr "Kontakte nicht teilen und mit der App fortfahren" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Leere Posts überspringen?" @@ -11487,7 +11494,7 @@ msgstr "Zum nächsten Schritt springen" msgid "slide" msgstr "Bild" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Kleiner" @@ -11499,14 +11506,14 @@ msgstr "Erinnerung vorübergehend ausblenden" msgid "So many thoughts, you should post one" msgstr "So viele Gedanken, du solltest einen davon posten" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Soziale Medien, die du kontrollierst." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Soziale Bestätigung bei Posts" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Jemand hat die Gruppe verlassen" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Jemand hat mit {0} reagiert" @@ -11554,7 +11561,7 @@ msgstr "Jemand hat mit {0} reagiert" msgid "Someone reacted {0} to {target}" msgstr "Jemand hat mit {0} auf {target} reagiert" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Jemand hat geantwortet" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Etwas ist schiefgelaufen, bitte versuche es erneut" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Etwas ist schiefgelaufen. Bitte versuche es in Kürze noch einmal." msgid "Something went wrong. Please try again." msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Etwas stimmt nicht? Lass es uns wissen." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam oder sonstiges unechtes Verhalten bzw. Täuschung" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sport" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Sieh, welche Posts deinen Freunden und Personen, denen du folgst, gefallen." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Starte eine Konversation, und sie wird hier angezeigt." msgid "Start a group chat" msgstr "Einen Gruppenchat starten" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Starte einen neuen Chat" @@ -11682,17 +11689,17 @@ msgstr "Beginne, Personen hinzuzufügen" msgid "Start adding people!" msgstr "Beginne, Personen hinzuzufügen!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Chat starten" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Chat mit {displayName} starten" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpaket" @@ -11715,12 +11722,16 @@ msgstr "Dein Startpaket" msgid "Starter pack is invalid" msgstr "Startpaket ist ungültig" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Startpakete" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpakete" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Startpakete ermöglichen es dir, deine liebsten Feeds und Personen ganz einfach mit deinen Freunden zu teilen." @@ -11728,7 +11739,7 @@ msgstr "Startpakete ermöglichen es dir, deine liebsten Feeds und Personen ganz msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Startpakete ermöglichen es dir, deine liebsten Feeds und Personen mit deinen Freunden zu teilen." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Startpakete ermöglichen es dir, deine liebsten Feeds und Personen mit deinen Freunden zu teilen." @@ -11742,7 +11753,7 @@ msgstr "Status-Seite" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Schritt {0} von {1}" @@ -11754,7 +11765,7 @@ msgstr "Der Speicher wurde gelöscht, du musst die App jetzt neu starten." msgid "Stored as part of a secure code for matching with others" msgstr "Als Teil eines sicheren Codes gespeichert, um Abgleiche mit anderen durchführen zu können" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "Einspruch einlegen" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Feedback senden" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "{publicationTitle} auf {0} abonnieren" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonniere @{0}, um diese Kennzeichnungen zu verwenden:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Erfolgreich verifiziert" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Vorgeschlagen" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Vorgeschlagene Accounts" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sonnenuntergang" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Die Unterstützung für diese Funktion in deinem Land ist noch nicht aktiviert! Bitte versuche es später erneut." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Gesperrte Accounts können nicht an Gruppenchats teilnehmen." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Gesperrte Accounts können nicht am Chat teilnehmen." @@ -11921,8 +11934,8 @@ msgstr "Zu {0} wechseln" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "System" @@ -11945,7 +11958,7 @@ msgstr "Die Konversation privat fortsetzen." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Klicke unten, um Bluesky den Zugriff auf deinen GPS-Standort zu erlauben. Wir verwenden diese Daten, um genauer bestimmen zu können, welche Inhalte und Funktionen in deiner Region verfügbar sind." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Für Details tippen" @@ -11976,7 +11989,7 @@ msgstr "Tippen, um das Kontextmenü zu schließen" msgid "Tap to copy this invite link" msgstr "Tippe hier, um diesen Einladungslink zu kopieren" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tippe, um zu schließen" @@ -12003,7 +12016,7 @@ msgstr "Tippen, um deine {0} Reaktion zu entfernen" msgid "Tap to request access to join this group chat" msgstr "Tippe hier, um Zugang zu diesem Gruppenchat anzufragen" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tippen, um es erneut zu versuchen" @@ -12016,7 +12029,7 @@ msgstr "Tippen, um {0} Reaktionen anzuzeigen" msgid "Tap to show all reactions" msgstr "Tippen, um alle Reaktionen anzuzeigen" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tippen, um Reaktionen anzuzeigen" @@ -12032,7 +12045,7 @@ msgstr "Aufgabe abgeschlossen – 10 Accounts gefolgt!" msgid "Task complete - 10 likes!" msgstr "Aufgabe abgeschlossen – 10 Gefällt mir!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Bring unserem Algorithmus bei, was dir gefällt" @@ -12060,7 +12073,7 @@ msgstr "Bedingungen" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Danke für dein Feedback! Es wurde an den Feed-Betreiber gesendet." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Danke für dein Feedback!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Dieses Startpaket konnte nicht gefunden werden." msgid "That username is already taken" msgstr "Dieser Nutzername ist bereits vergeben" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Das ist alles, Leute!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Das ist alles!" @@ -12216,7 +12229,7 @@ msgstr "Der Server scheint Probleme zu haben. Bitte versuche es in ein paar Minu msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Das Startpaket, das du ansehen möchtest, ist ungültig. Du kannst dieses Startpaket stattdessen löschen." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Das Thema des Kontextmenüs" @@ -12238,7 +12251,7 @@ msgstr "Der von dir eingegebene Verifizierungscode ist ungültig. Bitte stelle s msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Der Verifizierungsanbieter konnte keinen Code an deine Telefonnummer senden. Bitte überprüfe deine Telefonnummer und versuche es erneut." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Theme" @@ -12266,7 +12279,7 @@ msgstr "Beim Laden der GIFs ist ein Problem aufgetreten. Überprüfe deine Verbi msgid "There was a problem with your internet connection, please try again" msgstr "Es gab ein Problem mit deiner Internetverbindung. Bitte versuche es erneut" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Es gab ein Problem mit deiner Internetverbindung. Bitte versuche es erne msgid "There was an issue contacting the server" msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut." @@ -12283,8 +12296,8 @@ msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten. Bitte überpr msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Beim Abrufen von Mitteilung ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Beim Abrufen von Posts ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen." @@ -12309,7 +12322,7 @@ msgstr "Es gab ein Problem beim Abrufen deiner Service-Informationen" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Beim Entfernen dieses Feeds ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12377,14 +12390,14 @@ msgstr "Diese Hashtags" #: src/screens/Settings/FollowingFeedPreferences.tsx:66 msgid "These settings only apply to the Following feed." -msgstr "Diese Einstellungen gelten nur für den Following-Feed." +msgstr "Diese Einstellungen gelten nur für den „Folge ich“-Feed." #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 msgid "These URLs" msgstr "Diese URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Du besitzt diesen Chat" @@ -12392,7 +12405,7 @@ msgstr "Du besitzt diesen Chat" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Sie können nicht erneut beitreten, es sei denn, du lädst sie erneut ein." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Diese {screenDescription} wurde gekennzeichnet:" @@ -12408,7 +12421,7 @@ msgstr "Dieser Account wurde vom Inhaber als automatisiert gekennzeichnet." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Für diesen Account gibt es einen oder mehrere Verifizierungsversuche, ist aber derzeit nicht verifiziert." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Dieser Account verlangt, dass Nutzer eingeloggt sind, um das Profil ansehen zu können." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Dieser Feed ist leer! Möglicherweise musst du mehr Nutzer folgen oder deine Spracheinstellungen anpassen." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Dieser Feed ist leer." @@ -12554,7 +12567,7 @@ msgstr "Diese Gruppe wurde aufgrund einer Moderationsmaßnahme gegen den Inhaber msgid "This handle is reserved. Please try a different one." msgstr "Dieser Handle ist reserviert. Bitte versuche einen anderen." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Dieses Bild konnte nicht verwendet werden. Bitte versuche es mit einem anderen Format wie .jpg oder .png." @@ -12596,7 +12609,7 @@ msgstr "Diese Kennzeichnung wurde von dir angewendet." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Diese Kennzeichnung wurde auf den gesamten Account angewendet und wird bei allen Posts angezeigt." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dieser Kennzeichner hat nicht angegeben, welche Kennzeichnungen er veröffentlicht und ist möglicherweise nicht aktiv." @@ -12621,13 +12634,13 @@ msgstr "Diese Liste ist leer." msgid "This message is hidden" msgstr "Diese Nachricht ist ausgeblendet" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Diese Nachricht ist ausgeblendet, weil dieser Nutzer dich blockiert." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Diese Nachricht ist ausgeblendet, weil du diesen Nutzer blockierst." @@ -12641,7 +12654,7 @@ msgstr "Diese Person blockiert dich" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dieser Post soll am <0>{0} erstellt worden sein, wurde aber erstmals von Bluesky am <1>{1} gesehen." @@ -12649,7 +12662,7 @@ msgstr "Dieser Post soll am <0>{0} erstellt worden sein, wurde aber erstmals msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Dieser Post hat einen unbekannten Threadgate-Typ. Deine App ist möglicherweise veraltet." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Dieser Post ist nur für eingeloggte Nutzer sichtbar." @@ -12661,7 +12674,7 @@ msgstr "Dieser Post wurde vom Autor gelöscht" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dieser Post wird aus Feeds und Threads ausgeblendet. Dies kann nicht rückgängig gemacht werden." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Der Autor dieses Posts hat das Zitieren dieses Posts deaktiviert." @@ -12698,11 +12711,12 @@ msgstr "Das sollte nur ein paar Minuten dauern." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Dieser Nutzer hat keinen Anzeigenamen und kann daher nicht verifiziert werden." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Dieser Nutzer hat keine Follower." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Dieser Nutzer hat dich blockiert und kann nicht angeschrieben werden." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Dieser Nutzer hat dich blockiert. Du kannst seinen Inhalt nicht sehen." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Dieser Nutzer hat den Chat deaktiviert und kann nicht angeschrieben werden." @@ -12733,11 +12748,11 @@ msgstr "Dieser Nutzer ist in der Liste <0>{0} enthalten, die du stummgeschal msgid "This user is new here. Press for more info about when they joined." msgstr "Dieser Nutzer ist neu hier. Klicke hier, um weitere Informationen darüber zu erhalten, wann er beigetreten ist." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Dieser Nutzer folgt niemandem." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Dieses Video kann auf deinem Gerät nicht abgespielt werden. Deinem Browser oder System fehlen möglicherweise die erforderlichen Video-Codecs (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Dadurch wird dein Bluesky-Account <0>{currentHandle} und alle damit verbundenen Daten unwiderruflich gelöscht. Beachte, dass dies auch alle anderen <1>AT Protocol-Dienste betrifft, die du mit diesem Account nutzt." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Dadurch wird @{0} aus der Schnellzugriffsliste entfernt." @@ -12786,7 +12801,7 @@ msgstr "Thread-Einstellungen" msgid "Threaded" msgstr "Thread" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Thread-Einstellungen" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Zu viele Kontakte - du hast die maximale Anzahl an Kontakten überschritten, die du importieren kannst, um deine Freunde finden zu können" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Top" @@ -12858,7 +12873,7 @@ msgstr "Top" msgid "Top replies first" msgstr "Beliebte Antworten zuerst" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Thema" @@ -12893,7 +12908,9 @@ msgstr "Die Übersetzung in dieselbe Sprache ist auf deinem Gerät nicht verfüg msgid "Tree view" msgstr "Baumansicht" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Angesagt" @@ -12902,7 +12919,7 @@ msgstr "Angesagt" msgid "Trending GIFs" msgstr "Angesagte GIFs" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Optionen für angesagte Themen" @@ -12918,11 +12935,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Vertrauen entsteht durch Beziehungen, Communitys und einem gemeinsamen Kontext. Deshalb ermöglichen wir auch <0>vertrauenswürdige Verifizierer: Organisationen, die Verifizierungen direkt ausstellen können." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Versuche es mit einem anderen Suchbegriff oder entferne einige Filter." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Versuche es mit einem anderen Suchbegriff." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Beitrittsanfragen konnten nicht geladen werden." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Ein ausgewählter Empfänger konnte nicht gefunden werden." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Der ausgewählte Empfänger konnte nicht gefunden werden." @@ -13024,12 +13043,12 @@ msgstr "Nicht verfügbar" msgid "Unavailable feed information" msgstr "Feed-Information nicht verfügbar" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Account entblocken?" msgid "Unblock list" msgstr "Liste entsperren" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "{0} entfolgen" msgid "Unfollow account" msgstr "Account entfolgen" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Entfolgt dem Nutzer" @@ -13132,7 +13151,7 @@ msgstr "Nicht gekennzeichnete Inhalte für Erwachsene" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Nicht gekennzeichnete, missbräuchliche oder nicht einvernehmliche Inhalte für Erwachsene" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Gefällt mir nicht mehr" @@ -13192,7 +13211,7 @@ msgstr "Stummschaltung für diesen Gruppenchat aufheben" msgid "Unmute thread" msgstr "Stummschaltung des Threads aufheben" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Stummschaltung von Video aufheben" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Lösen" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Feed lösen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Von Startseite lösen" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Moderationsliste lösen" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} von der Startseite gelöst" @@ -13258,11 +13277,11 @@ msgstr "Von diesem Kennzeichner abmelden" msgid "Unsubscribed from list" msgstr "Von der Liste abgemeldet" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Inhalt der Zwischenablage wird nicht unterstützt" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Nicht unterstützter Videotyp: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Aktualisieren der Antwort-Sichtbarkeit ist fehlgeschlagen" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Stattdessen ein Foto hochladen" @@ -13355,7 +13374,7 @@ msgstr "Von Dateien hochladen" msgid "Upload from Library" msgstr "Aus der Bibliothek hochladen" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIF wird hochgeladen..." @@ -13369,7 +13388,7 @@ msgstr "Bilder werden hochgeladen..." msgid "Uploading link thumbnail..." msgstr "Link-Vorschaubild wird hochgeladen..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Video wird hochgeladen..." @@ -13408,7 +13427,7 @@ msgstr "Verwende dies, um dich mit deinem Handle bei der anderen App einzuloggen msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Verwende die E-Mail-Adresse deines Accounts oder eine andere echte E-Mail-Adresse, auf die du Zugriff hast, falls KWS oder Bluesky dich kontaktieren muss." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "Nutzer" @@ -13510,7 +13529,7 @@ msgstr "Verifizierung fehlgeschlagen. Bitte versuche es erneut." msgid "Verification settings" msgstr "Verifizierungseinstellungen" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verifizierungseinstellungen" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video konnte nicht verarbeitet werden" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Video-Feed" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Video von {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video von {0}. Tippe, um das Video abzuspielen oder zu pausieren" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videospiele" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video ist pausiert" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video wird abgespielt" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video nicht gefunden." @@ -13653,7 +13672,7 @@ msgstr "Video nicht gefunden." msgid "Video settings" msgstr "Video-Einstellungen" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video hochgeladen" @@ -13662,17 +13681,17 @@ msgstr "Video hochgeladen" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videos dürfen nicht länger als 3 Minuten sein." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Ansehen" @@ -13691,9 +13710,9 @@ msgstr "Profilbild von {0} ansehen" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Profil von {0} ansehen" @@ -13724,13 +13743,13 @@ msgstr "Blogpost für weitere Details ansehen" msgid "View debug entry" msgstr "Debug-Eintrag anzeigen" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Details ansehen" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vollständigen Thread ansehen" @@ -13761,7 +13780,7 @@ msgstr "Mehr ansehen" msgid "View more trending videos" msgstr "Mehr angesagte Videos ansehen" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Post ansehen" @@ -13798,11 +13817,11 @@ msgstr "Einladungslink für diesen Gruppenchat anzeigen" msgid "View the labeling service provided by @{0}" msgstr "Sieh dir den von @{0} bereitgestellten Kennzeichnungsdienst an" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Verifizierungen dieses Nutzers ansehen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Nutzer ansehen, denen dieser Feed gefällt" @@ -13831,7 +13850,7 @@ msgstr "Sieh dir deine Moderationslisten an" msgid "View your muted accounts" msgstr "Sieh dir deine stummgeschalteten Accounts an" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Deine Verifizierungen ansehen" @@ -14001,7 +14020,7 @@ msgstr "Wir benachrichtigen dich, sobald wir deine Freunde gefunden haben." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "We’d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Wir würden gerne hören, wie deine Erfahrungen beim Testen der Beta-Funktionen waren!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Wir haben Netzwerkprobleme, versuche es erneut" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Wir haben Netzwerkprobleme. Bitte versuche es erneut" @@ -14043,7 +14062,7 @@ msgstr "Wir haben Netzwerkprobleme. Bitte versuche es erneut" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Wir führen eine neue Ebene der Verifizierung auf Bluesky ein — ein leicht erkennbares Häkchen." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Wir freuen uns sehr, dass du dabei bist!" @@ -14064,13 +14083,15 @@ msgstr "Es tut uns leid, aber wir konnten diese Liste nicht auflösen. Wenn das 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 gerade nicht laden. Bitte versuche es erneut." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." -msgstr "" +msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 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." @@ -14078,7 +14099,7 @@ msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden. Bit msgid "We're sorry, you cannot access this screen at this time." msgstr "Leider kannst du derzeit nicht auf diesen Bildschirm zugreifen." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Es tut uns leid! Der Post, auf den du antwortest, wurde gelöscht." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "was gibt’s" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Was gibt's?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Wer kann verifizieren?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ups!" @@ -14220,21 +14241,21 @@ msgstr "Möchtest du diesen Nutzer blockieren und/oder diese Konversation verlas msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Möchtest du das als Entwurf speichern, bevor du deine Entwürfe ansiehst?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Möchtest du das als Entwurf speichern, um es später zu bearbeiten?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Post verfassen" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Post verfassen" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Antwort schreiben" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Du greifst aus einer Region auf Bluesky zu, in der wir gesetzlich verpflichtet sind, dein Alter zu verifizieren, bevor wir dir Zugriff auf die App gewähren dürfen." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Du blockierst {0}" @@ -14342,7 +14363,7 @@ msgstr "Du bist nicht mehr live" msgid "You are not allowed to upload videos." msgstr "Du darfst keine Videos hochladen." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Du folgst noch niemandem" @@ -14362,7 +14383,7 @@ msgstr "Du bist verifiziert. Du verlierst deinen Verifizierungsstatus, wenn du d msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Du bist verifiziert. Du verlierst deinen Verifizierungsstatus, wenn du deinen Handle änderst. <0>Mehr erfahren (auf Englisch)." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Du kannst deine Interessen jederzeit in den Einstellungen unter „Inhalte und Medien“ anpassen." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Du kannst dich jetzt mit deinem neuen Passwort einloggen." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Du kannst pro Post maximal {MAX_GALLERY_IMAGES, plural, other {# Bilder}} hinzufügen" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Du kannst Entwürfe nur mit bis zu 1000 Zeichen speichern." @@ -14439,9 +14460,9 @@ msgstr "Du kannst den Chatverlauf lesen, aber keine neuen Nachrichten senden." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Du kannst insgesamt maximal {MAX_GALLERY_IMAGES, plural, other {# Bilder}} auswählen." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Du kannst dies später in deinen Einstellungen aktualisieren." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Du kannst maximal {EMOJI_REACTION_LIMIT, plural, one {# Emoji-Reaktion} other {# Emoji-Reaktionen}} hinzufügen" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Du kannst noch keinen Gruppenchat erstellen." @@ -14555,7 +14577,7 @@ msgstr "Du hast deine E-Mail-Adresse erfolgreich verifiziert. Du kannst dieses F msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Du hast vorübergehend das Limit für Video-Uploads erreicht. Bitte versuche es später erneut." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Du hast ungespeicherte Änderungen an diesem Entwurf. Möchtest du sie speichern?" @@ -14563,7 +14585,7 @@ msgstr "Du hast ungespeicherte Änderungen an diesem Entwurf. Möchtest du sie s msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Du hast ungespeicherte Änderungen. Möchtest du sie speichern, bevor du deine Entwürfe ansiehst?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Du hast noch kein Startpaket erstellt!" @@ -14614,7 +14636,7 @@ msgstr "Du darfst nur bis zu {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PAC msgid "You may only add up to 3 feeds" msgstr "Du kannst nur bis zu 3 Feeds hinzufügen" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Du musst Inhaber dieses Chats sein, um ein Mitglied entfernen zu können." @@ -14622,7 +14644,7 @@ msgstr "Du musst Inhaber dieses Chats sein, um ein Mitglied entfernen zu können msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Du musst mindestens 13 Jahre alt sein, um Bluesky nutzen zu können. Lies unsere <0>Nutzungsbedingungen, um mehr zu erfahren." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Du musst mindestens sieben anderen Personen folgen, um ein Startpaket erstellen zu können." @@ -14639,7 +14661,7 @@ msgstr "Du musst den Zugriff auf deine Galerie erlauben." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Du musst deine E-Mail-Adresse verifizieren, bevor du die Zwei-Faktor-Authentisierung (2FA) per E-Mail aktivieren kannst." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Du besitzt diesen Chat" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Du solltest die App jetzt wahrscheinlich neu starten." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Du hast mit {0} reagiert" @@ -14667,15 +14689,15 @@ msgstr "Du hast mit {0} auf {target} reagiert" msgid "You recently changed your birthdate" msgstr "Du hast kürzlich dein Geburtsdatum geändert" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Du hast geantwortet" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Du hast {originalName} geantwortet" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Du hast dir selbst geantwortet" @@ -14715,11 +14737,11 @@ msgstr "Du kannst erst wieder beitreten, wenn du eingeladen wirst." msgid "You: {message}" msgstr "Du: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Du folgst den vorgeschlagenen Nutzern und Feeds, sobald du mit der Erstellung deines Accounts fertig bist!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Du folgst den vorgeschlagenen Nutzern, sobald du mit der Erstellung deines Accounts fertig bist!" @@ -14791,7 +14813,7 @@ msgstr "Du hast das Ende des aktiven Inhalts erreicht." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du hast das Ende deines Feeds erreicht! Finde weitere Accounts, denen du folgen kannst." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Du hast die maximale Anzahl an Entwürfen erreicht" @@ -14799,7 +14821,7 @@ msgstr "Du hast die maximale Anzahl an Entwürfen erreicht" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Du hast die maximale Anzahl an Anfragen erreicht. Bitte versuche es später erneut." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Du hast die maximale Anzahl von {MAX_FILTERS, plural, one {# Filter} other {# Filtern}} erreicht. Füge einem bestehenden Filter weitere Werte hinzu, anstatt neue Filter zu erstellen." @@ -14815,11 +14837,11 @@ msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Byte msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Videos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Du hast keine Videos mehr zum Anschauen. Vielleicht ist es ein guter Zeitpunkt, eine Pause zu machen?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Dein Account" @@ -14835,11 +14857,11 @@ msgstr "Dein Account wurde gesperrt" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Dein Account ist noch nicht alt genug, um Videos hochzuladen. Bitte versuche es später erneut." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Dein Account ist zu neu" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Dein Account muss mindestens 7 Tage alt sein, um einen neuen Gruppenchat erstellen zu können." @@ -14915,7 +14937,7 @@ msgstr "Deine Follower" #: src/view/com/posts/FollowingEmptyState.tsx:41 msgid "Your following feed is empty! Follow more users to see what's happening." -msgstr "Dein Following-Feed ist leer! Folge mehr Nutzern, um zu sehen, was passiert." +msgstr "Dein „Folge ich“-Feed ist leer! Folge weiteren Nutzern, um zu sehen, was gerade passiert." #. placeholder {0}: createFullHandle(subdomain, host) #: src/screens/Settings/components/ChangeHandleDialog.tsx:247 @@ -14930,8 +14952,8 @@ msgstr "Dein Hosting-Anbieter kann anhand einer E-Mail-Adresse nicht erkannt wer msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Dein Hosting-Anbieter wird automatisch anhand des eingegebenen Nutzernamens erkannt." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Deine Interessen wurden aktualisiert!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Deine Interessen helfen uns dabei, das zu finden, was dir gefällt!" @@ -14967,11 +14989,11 @@ msgstr "Dein Passwort wurde erfolgreich geändert! Bitte verwende ab sofort dein msgid "Your password must be at least 8 characters long." msgstr "Dein Passwort muss mindestens 8 Zeichen lang sein." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Dein Post wurde gesendet" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Deine Posts wurden gesendet" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Deine bevorzugte Sprache" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Dein Profilbild" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Dein Profilbild, umgeben von konzentrischen Kreisen mit den Profilbildern anderer Nutzer" @@ -14992,7 +15014,7 @@ msgstr "Dein Profilbild, umgeben von konzentrischen Kreisen mit den Profilbilder msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Dein Profil, deine Posts, deine Feeds und Listen werden nicht mehr für andere Bluesky-Nutzer sichtbar sein. Du kannst deinen Account jederzeit reaktivieren, indem du dich einloggst." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Deine Antwort wurde gesendet" @@ -15005,7 +15027,7 @@ msgstr "Deine Meldung wird an <0>{0} gesendet." msgid "Your selected interests help us serve you content you care about." msgstr "Deine ausgewählten Interessen helfen uns dabei, dir Inhalte anzuzeigen, die dich interessieren." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Dein Thread enthält leere Posts, die übersprungen werden. Die übrigen Posts werden als Thread veröffentlicht." diff --git a/src/locale/locales/el/messages.po b/src/locale/locales/el/messages.po index e6777a3739..6398043d73 100644 --- a/src/locale/locales/el/messages.po +++ b/src/locale/locales/el/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: el\n" +"Language: el_GR\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Greek\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" κατηγορία (ενεργό)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(περιέχει ενσωματωμένο περιεχόμενο)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# ώρα} other {# ώρες}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {Μου αρέσει} other {Μου αρέσει}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Λογαριασμός)" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} ακολουθεί" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} από 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} αντέδρασε {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "Ο/Η {firstAuthorName} σας επαλήθευσε" msgid "{following} following" msgstr "{following} ακόλουθοι" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Δεν είναι δυνατόν να στείλετε μήνυμα στον/ην {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# αδιάβαστο} other {# αδιά msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# επαφή βρέθηκε} other {# επαφές βρέθηκαν}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "Ο/Η {profileName} έγινε μέλος στο Bluesky πριν από {timeAgoString}" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "Ο/Η {profileName} γράφτηκε στο Bluesky με πακέτο νέων πριν από {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}ώ πριν" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "Ο/Η {userName} είναι ένας έμπιστος επαληθευτής" @@ -842,13 +795,13 @@ msgstr "Οι επαληθεύσεις του/της {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {ακόλουθος} other {ακόλουθο #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {παράθεση} other {παραθέσεις}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {αναδημοσίευση} other {αναδημοσιεύσεις}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {αποθήκευση} other {αποθηκε #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Συνδεθείτε<1> ή <2>δημιουργήστε έναν λογαριασμό<3> <4>για να αναζητήσετε ειδήσεις, αθλητικά, πολιτικά και οτιδήποτε άλλο συμβαίνει στο Bluesky." @@ -971,7 +924,7 @@ msgstr "30 ημέρες" msgid "7 days" msgstr "7 ημέρες" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Μια συλλογή από δημοφιλείς ροές που μπορείτε να βρείτε στο Bluesky, συμπεριλαμβανομένου News, Booksky, Game Dev, Blacksky, και Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Παρουσιάστηκε σφάλμα δικτύου. Παρακαλο #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Ένας νέος κωδικός έχει σταλεί" msgid "A new form of verification" msgstr "Μια νέα μορφή επαλήθευσης" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Προσβασιμότητα" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Ρυθμίσεις Προσβασιμότητας" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Λογαριασμός σε σίγαση από λίστα" msgid "Account options" msgstr "Επιλογές λογαριασμού" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Λογαριασμός αφαιρέθηκε από την γρήγορη πρόσβαση" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Λογαριασμοί με ένα μπλε κυματοειδές τικ <0><1/> μπορούν να επαληθεύσουν άλλους. Αυτοί οι αξιόπιστοι επαληθευτές επιλέγονται από το Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Δραστηριότητα από άλλους" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Προσθήκη εναλλακτικού κειμένου (προαιρ msgid "Add another account" msgstr "Προσθήκη άλλου λογαριασμού" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Προσθήκη άλλης ανάρτησης" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Προσθήκη άλλης δημοσίευσης στο νήμα" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Προσθήκη αντίδρασης emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Προσθήκη αυτού της ροής στις ροές σας" msgid "Add to lists" msgstr "Προσθήκη σε λίστες" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Προσθήκη στις αποθηκευμένες δημοσιεύσεις" @@ -1400,7 +1360,7 @@ msgstr "Ενήλικες" msgid "Adult content" msgstr "Περιεχόμενο για ενήλικες" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Επιτρέπει την πρόσβαση σε προσωπικά μη msgid "Already have a code?" msgstr "Έχετε ήδη κωδικό;" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Έχετε ήδη λογαριασμό;" @@ -1614,7 +1574,7 @@ msgstr "Ένα email έχει σταλεί στο {0}. Περιλαμβάνει msgid "An error has occurred" msgstr "Παρουσιάστηκε σφάλμα" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Παρουσιάστηκε σφάλμα" @@ -1631,7 +1591,7 @@ msgstr "Παρουσιάστηκε σφάλμα κατά τη λήψη προτ msgid "An error occurred while fetching the feed." msgstr "Παρουσιάστηκε σφάλμα κατά την λήψη της ροής." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του πακέτου έναρξής σας. Θέλετε να δοκιμάσετε ξανά;" @@ -1640,11 +1600,11 @@ msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργί msgid "An error occurred while hiding suggestion. {0}" msgstr "Παρουσιάστηκε σφάλμα κατά την απόκρυψη της πρότασης. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση του βίντεο. Παρακαλώ δοκιμάστε ξανά αργότερα." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση του βίντεο. Παρακαλώ δοκιμάστε ξανά." @@ -1684,7 +1644,7 @@ msgstr "Παρουσιάστηκε σφάλμα. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Ένα θέμα που δεν περιλαμβάνεται σε αυτές τις επιλογές" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Παρουσιάστηκε πρόβλημα κατά την προσπάθεια ανοίγματος της συνομιλίας" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Οποιοσδήποτε" @@ -1802,7 +1760,7 @@ msgstr "Οποιοσδήποτε με ακολουθεί" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Τα ονόματα κωδικών πρόσβασης εφαρμογής msgid "App passwords" msgstr "Κωδικοί πρόσβασης εφαρμογής" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Κωδικοί Πρόσβασης Εφαρμογής" @@ -1891,8 +1849,8 @@ msgstr "Εφεση σε αυτήν την απόφαση" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Αρχειοθετήθηκε από {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Αρχειοθετημένη ανάρτηση" @@ -1980,7 +1938,7 @@ msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετ msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Είστε σίγουροι ότι θέλετε να απορρίψετε αυτήν την ανάρτηση;" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Αυτόματη αναπαραγωγή βίντεο και GIF" msgid "Available" msgstr "Διαθέσιμο" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Πριν δημιουργήσετε μια δημοσίευση ή απαντήσετε, πρέπει πρώτα να επαληθεύσετε το email σας." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Πριν δημιουργήσετε ένα Starter Pack, πρέπει πρώτα να επαληθεύσετε το email σας." @@ -2135,10 +2097,10 @@ msgstr "Πριν μπορέσετε να λάβετε ειδοποιήσεις #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Ξεκινήστε τη διαδικασία διασφάλισης ηλ msgid "Beta Feature" msgstr "Beta Λειτουργία" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Ημερομηνία Γέννησης" msgid "Birthday" msgstr "Ημερομηνία γέννησης" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Αποκλεισμένος" msgid "Blocked accounts" msgstr "Αποκλεισμένοι λογαριασμοί" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Αποκλεισμένοι Λογαριασμοί" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Ο αποκλεισμός δεν εμποδίζει αυτόν τον ετικετοποιητή από το να τοποθετεί ετικέτες στον λογαριασμό σας." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Το Bluesky δεν μπορεί να επιβεβαιώσει την αυθεντικότητα της ημερομηνίας που δηλώθηκε." @@ -2330,7 +2299,7 @@ msgstr "Το Bluesky είναι ένα ανοιχτό δίκτυο όπου μπ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky είναι ένα ανοικτό δίκτυο όπου μπορείτε να επιλέξετε το δικό σας πάροχο. Αν είστε νέοι εδώ, σας συνιστούμε να μείνετε με την προεπιλεγμένη επιλογή Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Το Bluesky είναι καλύτερο με φίλους!" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Το Bluesky αποθηκεύει τις επαφές σας ως κωδικοποιημένα δεδομένα. Η αφαίρεση των επαφών σας θα διαγράψει αμέσως αυτά τα δεδομένα." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Το Bluesky θα επιλέξει μια σειρά από προτεινόμενους λογαριασμούς από άτομα στο δίκτυό σας." @@ -2425,24 +2394,25 @@ msgstr "Περιηγηθείτε σε περισσότερες προτάσει msgid "Browse other feeds" msgstr "Περιηγηθείτε σε άλλες ροές" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Περιηγηθείτε σε δημοσιεύσεις σχετικά με το {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Περιηγηθείτε σε δημοσιεύσεις με ετικέτα {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Περιήγηση πακέτου νέων {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Περιήγηση θέματος {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Περιήγηση θέματος {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Κουμπί για να επιστρέψετε στο αρχικό χρ #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Από {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Από <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Δημιουργώντας λογαριασμό συμφωνείτε μ msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Δημιουργώντας λογαριασμό συμφωνείτε με τους <0>Όρους Χρήσης." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Από εσάς" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Κάμερα" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Ακύρωση επανενεργοποίησης και έξοδος" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Ακύρωση αναζήτησης" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Σίγαση συνομιλίας" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Εισερχόμενα αιτήματος συνομιλίας" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Αιτήματα συνομιλίας" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Ρυθμίσεις συνομιλίας" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Αφαίρεση σίγασης συνομιλίας" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Συνομιλίες" @@ -2837,7 +2808,7 @@ msgstr "Επιλέξτε μέθοδο επαλήθευσης domain" msgid "Choose Feeds" msgstr "Επιλέξτε Ροές" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Επιλέξτε για μένα" @@ -2854,7 +2825,7 @@ msgstr "Επιλέξτε Άτομα" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Επιλέξτε αυτό το χρώμα ως εικόνα προφίλ σας" @@ -2879,7 +2850,7 @@ msgstr "Επιλέξτε το δικό σας χρονολόγιο! Οι ροέ msgid "Choose your password" msgstr "Επιλέξτε τον κωδικό σας" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Επιλογή του ονόματος χρήστη σας" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "Πατήστε για άνοιγμα του μενού ετικέτας για {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχημένο μήνυμα" @@ -3003,7 +2974,7 @@ msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχ #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχ msgid "Close" msgstr "Κλείσιμο" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Κλείσιμο ενεργού διαλόγου" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Κλείσιμο προβολής εικόνων" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Κλείσιμο μενού" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Κλείσιμο αυτού του διαλόγου" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Κλείνει την ειδοποίηση ενημέρωσης κωδικού πρόσβασης" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Λειτουργία χρώματος" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Κόμικς" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Οδηγίες Κοινότητας" @@ -3141,7 +3112,7 @@ msgstr "Οδηγίες Κοινότητας" msgid "Complete onboarding and start using your account" msgstr "Ολοκληρώστε την εισαγωγή και ξεκινήστε να χρησιμοποιείτε τον λογαριασμό σας" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Ολοκλήρωση της πρόκλησης" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Σύνταξη νέας ανάρτησης" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Σύνταξη αναρτήσεων έως {0, plural, other {# χαρακτήρες}}" @@ -3160,11 +3131,11 @@ msgstr "Σύνταξη αναρτήσεων έως {0, plural, other {# χαρα msgid "Compose reply" msgstr "Σύνταξη απάντησης" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Συμπίεση βίντεο..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Επικοινωνία με την υποστήριξη" @@ -3253,7 +3224,7 @@ msgstr "Περιεχόμενο και Μέσα" msgid "Content and media" msgstr "Περιεχόμενο και μέσα" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Περιεχόμενο και Μέσα" @@ -3265,10 +3236,6 @@ msgstr "Αποκλεισμένο Περιεχόμενο" msgid "Content filters" msgstr "Φίλτρα περιεχομένου" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Περιεχόμενο από όλο το δίκτυο το οποίο πιστεύουμε ότι μπορεί να σας αρέσει." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Περιεχόμενο που προωθεί ή απεικονίζει αυτοτραυματισμό" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Προειδοποίηση Περιεχομένου" msgid "Content warnings" msgstr "Προειδοποιήσεις περιεχομένου" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Φόντο μενού περιβάλλοντος, κάντε κλικ για να κλείσετε το μενού." @@ -3302,7 +3269,7 @@ msgstr "Φόντο μενού περιβάλλοντος, κάντε κλικ γ #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Συνέχεια συζήτησης..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Η έκδοση build αντιγράφηκε στο πρόχειρο" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Αντιγραφή κωδικού πρόσβασης εφαρμογής" msgid "Copy at:// URI" msgstr "Αντιγραφή at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "Αντιγραφή Συνδέσμου" msgid "Copy link to list" msgstr "Αντιγραφή συνδέσμου στη λίστα" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Αντιγραφή συνδέσμου στην ανάρτηση" @@ -3470,8 +3437,8 @@ msgstr "Αντιγραφή συνδέσμου στο πακέτο νέων" msgid "Copy message text" msgstr "Αντιγραφή κειμένου μηνύματος" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Αντιγραφή ανάρτησης at:// URI" @@ -3490,7 +3457,7 @@ msgstr "Αντιγραφή τιμής εγγραφής TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Πολιτική Πνευματικών Δικαιωμάτων" @@ -3540,11 +3507,11 @@ msgstr "Αδυναμία ακολούθησης όλων των αντιστοι msgid "Could not leave chat" msgstr "Δεν ήταν δυνατή η αποχώρηση από τη συνομιλία" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Δεν ήταν δυνατή η φόρτωση της ροής" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Δεν ήταν δυνατή η σίγαση της συνομιλίας" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Δημιουργία" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Δημιουργία QR κώδικα για ένα starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Δημιουργία starter pack" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Δημιουργία starter pack για μένα" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Εγγραφή" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Δημιουργία λογαριασμού" @@ -3666,15 +3633,15 @@ msgstr "Δημιουργία λογαριασμού" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Δημιουργήστε μια εικόνα προφίλ εωαλλακτικά" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Δημιουργία άλλου" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Πολιτισμός" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Σκοτεινό" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Σκοτεινό" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Σκοτεινό θέμα" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Προεπιλογή" @@ -3894,7 +3861,7 @@ msgstr "Διαγραφή του λογαριασμού μου" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Διαγραφή ανάρτησης" @@ -3988,7 +3955,7 @@ msgstr "Διάλογος: ρυθμίστε ποιοι μπορούν να αλλ msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Ντιμαρισμένο" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Απενεργοποιημένο" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Απόρριψη" msgid "Discard changes?" msgstr "Απόρριψη αλλαγών;" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Απόρριψη προσχεδίου;" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Απόρριψη ανάρτησης;" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Αποθάρρυνση των εφαρμογών από την εμφάνιση του λογαριασμού μου σε χρήστες που δεν έχουν συνδεθεί" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Αποθάρρυνση των εφαρμογών από την εμφά msgid "Discover new custom feeds" msgstr "Ανακαλύψτε νέες προσαρμοσμένες ροές" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Ανακαλύψτε Νέες Ροές" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Απόρριψη" @@ -4103,19 +4070,19 @@ msgstr "Απόρριψη" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Απόρριψη σφάλματος" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Απόρριψη οδηγού Starter Pack" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Εμφάνιση μεγαλύτερων ετικετών εναλλακ msgid "Display name" msgstr "Εμφανιζόμενο όνομα" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Ολοκληρώθηκε" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Πατήστε δύο φορές για να κλείσετε το παράθυρο διαλόγου" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Επεξεργασία εικόνας" msgid "Edit interaction settings" msgstr "Επεξεργασία ρυθμίσεων αλληλεπίδρασης" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Επεξεργασία των ροών μου" @@ -4406,6 +4374,11 @@ msgstr "Επεξεργασία των ροών μου" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Επεξεργασία ατόμων" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Επεξεργασία του ποιος μπορεί να απαντήσει" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Επεξεργασία του starter pack σας" @@ -4500,8 +4473,8 @@ msgstr "Ενσωματώστε κώδικα HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Ενσωμάτωση ανάρτησης" @@ -4509,7 +4482,7 @@ msgstr "Ενσωμάτωση ανάρτησης" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Ενσωματώστε αυτήν την ανάρτηση στον ιστότοπό σας. Απλώς αντιγράψτε το παρακάτω τμήμα και επικολλήστε το στον κώδικα HTML του ιστότοπού σας." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "Ενεργοποίηση περιεχομένου ενηλίκων" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Ενεργοποίηση εξωτερικού μέσου" msgid "Enable media players for" msgstr "Ενεργοποίηση media players για" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "Ενεργοποιημένο" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Τέλος ροής" @@ -4608,7 +4582,7 @@ msgstr "Εισάγετε μια λέξη ή ετικέτα" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "Εισάγετε το όνομα χρήστη και τον κωδικό msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Σφάλμα" @@ -4684,7 +4658,7 @@ msgstr "Παρουσιάστηκε σφάλμα κατά την αποθήκευ msgid "Error receiving captcha response." msgstr "Σφάλμα λήψης απάντησης captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "Όλοι μπορούν να απαντήσουν" msgid "Everybody can reply to this post." msgstr "Όλοι μπορούν να απαντήσουν σε αυτήν την ανάρτηση." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Όλοι" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Όλοι" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "Αποκλεισμός χρηστών που ακολουθείτε" msgid "Excludes users you follow" msgstr "Αποκλείει τους χρήστες που ακολουθείτε" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Έξοδος από την πλήρη οθόνη" @@ -4755,11 +4729,11 @@ msgstr "Ανάπτυξη λίστας χρηστών" msgid "Expand or collapse the full post you are replying to" msgstr "Ανάπτυξη ή συμπίεση της πλήρους ανάρτησης στην οποία απαντάτε" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "Γυμνό ή ενδεχομένως ενοχλητικό μέσο." msgid "Explicit sexual images." msgstr "Γυμνές σεξουαλικές εικόνες." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Προτιμήσεις εξωτερικού μέσου" @@ -4886,7 +4860,7 @@ msgstr "Απέτυχε η αλλαγή του ονόματος χρήστη. Π #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Απέτυχε η φόρτωση προτιμήσεων ροών" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Απέτυχε η φόρτωση προτεινόμενων ροών" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Απέτυχε η φόρτωση προτεινόμενων ακολουθιών" @@ -5027,12 +5002,12 @@ msgstr "Απέτυχε η φόρτωση προτεινόμενων ακολου msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Ροή" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Οι ροές ενημερώθηκαν!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "Το αρχείο αποθηκεύτηκε με επιτυχία!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Βρείτε λογαριασμούς για να ακολουθήσετ msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Ακολουθήστε {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Ακολουθήστε 7 λογαριασμούς" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Ακολούθοι του/της @{0} που γνωρίζετε" @@ -5544,7 +5515,7 @@ msgstr "Ακολούθοι που γνωρίζετε" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Ακολουθείτε {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "Προτιμήσεις της ροής Ακολουθείτε" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Προτιμήσεις της ροής Ακολουθείτε" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Σας ακολουθεί" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Γραμματοσειρά" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Για λόγους ασφαλείας, δεν θα μπορείτε να το δείτε ξανά. Αν χάσετε αυτόν τον κωδικό πρόσβασης εφαρμογής, θα χρειαστεί να δημιουργήσετε έναν νέο." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Για την καλύτερη εμπειρία, σας προτείνουμε να χρησιμοποιήσετε τη γραμματοσειρά του θέματος." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "Για πάντα" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Ξεχάσατε τον κωδικό σας;" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "Από <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Δημιουργήστε ένα starter pack" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Λάβετε βοήθεια" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Δώστε στο προφίλ σας ένα πρόσωπο" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Έχετε πρόβλημα;" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Βοήθεια" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Βοηθήστε τους ανθρώπους να καταλάβουν ότι δεν είστε bot ανεβάζοντας μια εικόνα ή δημιουργώντας μια εικόνα προφίλ." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "Κρυφή λίστα" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Κρυφή λίστα" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Απόκρυψη" @@ -6198,7 +6172,7 @@ msgstr "Απόκρυψη απάντησης για όλους" msgid "Hide reply for me" msgstr "Απόκρυψη απάντησης για μένα" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "Απόκρυψη αυτής της απάντησης;" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "Απόκρυψη λίστας χρηστών" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "Χμμμ, δεν καταφέραμε να φορτώσουμε αυτή msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Περιμένετε! Δίνουμε σταδιακά πρόσβαση στο βίντεο και εσείς περιμένετε στην ουρά. Ελέγξτε ξανά σύντομα!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Εάν θέλετε να αλλάξετε τον κωδικό σας, θα σας στείλουμε έναν κωδικό για να επαληθεύσουμε ότι αυτός είναι ο λογαριασμός σας." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Είστε μόνοι σας αυτή τη στιγμή! Προσθέστε περισσότερους ανθρώπους στο starter pack σας κάνοντας αναζήτηση παραπάνω." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID εργασίας: {0}" @@ -6816,8 +6788,8 @@ msgstr "Συμμετάσχετε στη συζήτηση" msgid "Journalism" msgstr "Δημοσιογραφία" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Επισημασμένο από {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Επισημασμένο από τον/την συγγραφέα." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Ετικέτες" @@ -6852,7 +6824,7 @@ msgstr "Οι Ετικέτες προστέθηκαν" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Οι ετικέτες είναι σημειώσεις σε χρήστες και περιεχόμενο. Μπορούν να χρησιμοποιηθούν για να αποκρύψουν, να προειδοποιήσουν και να κατηγοριοποιήσουν το δίκτυο." @@ -6864,7 +6836,7 @@ msgstr "Οι Ετικέτες στον λογαριασμό σας" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Ρυθμίσεις γλώσσας" @@ -6874,7 +6846,7 @@ msgstr "Ρυθμίσεις γλώσσας" msgid "Languages" msgstr "Γλώσσες" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Μεγαλύτερο" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Πιο πρόσφατα" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Μάθετε περισσότερα" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Μάθετε περισσότερα για την αυτόνομη φιλοξενία του PDS σας." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Μάθετε περισσότερα για αυτήν την προειδοποίηση" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Μάθετε περισσότερα." @@ -6993,8 +6965,8 @@ msgstr "Αποχώρηση" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Αποχώρηση από το Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "απομένουν." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Αφήστε με να διαλέξω" @@ -7057,7 +7029,7 @@ msgstr "Πάμε!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Φωτεινό" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Φωτεινό" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις" @@ -7085,7 +7057,7 @@ msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις" msgid "Like 10 posts to train the Discover feed" msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις για να εκπαιδεύσετε την ροής Ανακαλύψτε" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Πατήστε \"Μου αρέσει\" σε αυτήν την ροή" @@ -7093,8 +7065,8 @@ msgstr "Πατήστε \"Μου αρέσει\" σε αυτήν την ροή" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "\"Μου αρέσει\" από" @@ -7111,27 +7083,45 @@ msgstr "\"Μου αρέσει\" από" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "\"Μου αρέσει\"" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "\"Μου αρέσει\" σε αυτήν την ανάρτηση" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Λίστα" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Λίστα αφαίρεση σίγασης" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Φόρτωση περισσότερων" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Φόρτωση περισσότερων προτεινόμενων ροών" @@ -7292,8 +7282,8 @@ msgstr "Φόρτωση περισσότερων προτεινόμενων ρο msgid "Load new notifications" msgstr "Φόρτωση νέων ειδοποιήσεων" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Ημερολόγιο" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Φτιάξε ένα για μένα" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Σημείωση ως ανάγνωση" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Μέσα" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Μέσα που μπορεί να είναι ενοχλητικά ή ακατάλληλα για ορισμένα ακροατήρια." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "αναφερόμενοι χρήστες" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Το μήνυμα διαγράφηκε" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Μηνύματα" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Διαχείριση" @@ -7636,7 +7630,7 @@ msgstr "Η Λίστα διαχείρισης ενημερώθηκε" msgid "Moderation lists" msgstr "Λίστες διαχείρισης" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Λίστες Διαχείρισης" @@ -7645,7 +7639,7 @@ msgstr "Λίστες Διαχείρισης" msgid "moderation settings" msgstr "ρυθμίσεις διαχείρισης" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Καταστάσεις διαχείρισης" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Λογαριασμοί σε σίγαση" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Λογαριασμοί σε σίγαση" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Δεν πειράζει, δημιουργήστε ένα όνομα χρήστη για μένα" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Νέο" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Νέα συνομιλία" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Νέος κωδικός πρόσβασης" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Νέα δημοσίευση" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Πιο πρόσφατες απαντήσεις πρώτα" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Ειδήσεις" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Επόμενη εικόνα" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Δεν βρέθηκαν ροές. Δοκιμάστε να αναζητήσετε κάτι άλλο." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Δεν υπάρχουν ακόμη \"Μου αρέσει\"" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Δεν ακολουθώ πλέον τον {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Δεν υπάρχουν ακόμη μηνύματα" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Δεν υπάρχουν ακόμη παραθέσεις" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Χωρίς αποτέλεσμα" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Χωρίς αποτελέσματα" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "Δεν βρέθηκαν αποτελέσματα" msgid "No results found for \"{query}\"" msgstr "Δεν βρέθηκαν αποτελέσματα για “{query}”" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Όχι ευχαριστώ" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Κανείς" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Κανείς δεν το έχει κάνει \"Μου αρέσει\" ακόμη. Ίσως θα έπρεπε να είστε ο πρώτος!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Κανείς δεν το έχει παραθέσει ακόμη. Ίσως θα έπρεπε να είστε ο πρώτος!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Μη σεξουαλικό γυμνό" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Δεν Βρέθηκε" @@ -8333,7 +8330,7 @@ msgstr "Σημείωση σχετικά με την κοινή χρήση" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Σημείωση: Το Bluesky είναι ένα ανοιχτό και δημόσιο δίκτυο. Αυτή η ρύθμιση περιορίζει μόνο την ορατότητα του περιεχομένου σας στην εφαρμογή και τον ιστότοπο Bluesky, και άλλες εφαρμογές ενδέχεται να μην σεβαστούν αυτήν τη ρύθμιση. Το περιεχόμενό σας μπορεί να εξακολουθεί να εμφανίζεται σε χρήστες που δεν έχουν συνδεθεί από άλλες εφαρμογές και ιστότοπους." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ρυθμίσεις ειδοποιήσεων" @@ -8353,11 +8350,12 @@ msgstr "Ρυθμίσεις ειδοποιήσεων" msgid "Notification sounds" msgstr "Ήχοι ειδοποιήσεων" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Ωχ όχι!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Εντάξει" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Επαναφορά onboardin" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Ένα ή περισσότερα GIF λείπουν το εναλλακτικό κείμενο." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Μία ή περισσότερες εικόνες λείπουν το εναλλακτικό κείμενο." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Ένα ή περισσότερα βίντεο λείπουν το εναλλακτικό κείμενο." @@ -8471,7 +8471,7 @@ msgstr "Μόνο ο/η {0} μπορεί να απαντήσει." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Υποστηρίζονται μόνο αρχεία WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ουπς!" @@ -8544,7 +8544,7 @@ msgstr "Ουπς!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Άνοιγμα δημιουργού εικόνας προφίλ" @@ -8570,21 +8570,22 @@ msgstr "Άνοιγμα επιλογών συνομιλίας" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Άνοιγμα επιλογέα emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Άνοιγμα μενού επιλογών ροών" @@ -8627,7 +8628,7 @@ msgstr "Άνοιγμα σελίδας εντοπισμού σφαλμάτων δ msgid "Open muted words and tags settings" msgstr "Άνοιγμα ρυθμίσεων λέξεων και ετικετών σε σίγαση" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "Ανοίγει πρόσθετες λεπτομέρειες για μια msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Ανοίγει την κάμερα στη συσκευή" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Ανοίγει τη διαδικασία για να δημιουργήσετε ένα νέο λογαριασμό Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Ο κωδικός πρόσβασης ενημερώθηκε!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Παύση" @@ -8925,12 +8926,12 @@ msgstr "Παύση" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Παύση βίντεο" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Άτομα" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Άτομα που ακολουθούν τον/την @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Άτομα που ακολουθούνται από τον/την @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Εικόνες για ενήλικες." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "Καρφίτσωμα στην αρχική" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Καρφίτσωμα στην Αρχική" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Καρφιτσωμένο" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Καρφιτσωμένο στις ροές σας" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Αναπαραγωγή" @@ -9076,8 +9077,8 @@ msgstr "Αναπαραγωγή {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Αναπαραγωγή βίντεο" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Πολιτική" @@ -9269,7 +9270,7 @@ msgstr "Πολιτική" msgid "Porn" msgstr "Πορνογραφία" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Δημοσίευση" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Δημοσίευση" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Δημοσίευση Όλων" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Δημοσίευση από @{0}" @@ -9340,7 +9341,7 @@ msgstr "Δημοσίευση κρυμμένη από εσάς" msgid "Post interaction settings" msgstr "Ρυθμίσεις αλληλεπίδρασης δημοσίευσης" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Δημοσίευση καρφιτσωμένη" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Δημοσίευση ξεκαρφιτσωμένη" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Δημοσιεύσεις" @@ -9398,6 +9396,10 @@ msgstr "Οι δημοσιεύσεις μπορούν να τεθούν σε σί msgid "Posts hidden" msgstr "Κρυμμένες δημοσιεύσεις" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Απόρρητο" msgid "Privacy and security" msgstr "Απόρρητο και ασφάλεια" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Απόρρητο και Ασφάλεια" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Πολιτική Απορρήτου" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Επεξεργασία βίντεο..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Οι παραθέσεις δημοσιεύσεων είναι απενε #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Παραθέσεις" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Παραθέσεις αυτής της δημοσίευσης" @@ -9647,7 +9650,7 @@ msgstr "Επαναενεργοποίηση του λογαριασμού σας" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "Διαβάστε την Πολιτική Απορρήτου του Blues msgid "Read the Bluesky Terms of Service" msgstr "Διαβάστε τους Όρους Χρήσης του Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Επανασύνδεση" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Επαναφόρτωση συνομιλιών" @@ -9766,7 +9765,7 @@ msgstr "Επαναφόρτωση συνομιλιών" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Αφαίρεση" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Αφαίρεση λογαριασμού" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Αφαίρεση από τις ροές μου" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Αφαίρεση από την γρήγορη πρόσβαση;" @@ -9862,7 +9861,7 @@ msgstr "Αφαίρεση από την γρήγορη πρόσβαση;" msgid "Remove from saved feeds" msgstr "Αφαίρεση από τις αποθηκευμένες ροές" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Αφαίρεση εικόνας" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Αφαιρέθηκε από τη λίστα" msgid "Removed from saved feeds" msgstr "Αφαιρέθηκε από τις αποθηκευμένες ροές" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Απαντήσεις" @@ -10037,7 +10037,7 @@ msgstr "Οι απαντήσεις σε αυτή τη δημοσίευση είν msgid "Reply" msgstr "Απάντηση" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Απάντηση" @@ -10098,8 +10098,8 @@ msgstr "Αναφορά συνομιλίας" msgid "Report dialog" msgstr "Παράθυρο αναφοράς" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Αναφορά ροής" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Αναδημοσίευση από εσάς" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Αναδημοσίευση αυτής της ανάρτησης" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Επανάληψη της τελευταίας ενέργειας, η ο #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Επιστροφή στην αρχική σελίδα" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Επιστροφή στην προηγούμενη σελίδα" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Αποθήκευση αλλαγών" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Αποθήκευση QR κώδικα" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Αποθήκευση στις ροές μου" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Αποθηκευμένες ροές" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Αποθηκεύτηκε στις ροές σας" @@ -10520,8 +10520,8 @@ msgstr "Αποθηκεύτηκε στις ροές σας" msgid "Say hello!" msgstr "Πείτε γεια!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Επιστήμη" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Μετακίνηση στην κορυφή" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Αναζήτηση" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Αναζητήστε ροές που θέλετε να προτείνετε σε άλλους." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Αναζήτηση GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Δείτε θέσεις εργασίας στο Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Επιλογή χρώματος" @@ -10764,11 +10769,11 @@ msgstr "Επιλογή λογαριασμού" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Επιλογή εικόνας προφίλ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Επιλογή emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Επιλογή GIF" msgid "Select GIF \"{0}\"" msgstr "Επιλέξτε GIF “{0}”" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Επιλέξτε το emoji {emojiName} ως εικόνα προφίλ σας" @@ -10945,7 +10951,8 @@ msgstr "Αποστολή μηνύματος" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Αποστολή ανάρτησης σε..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Αποστολή email επαλήθευσης" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Αποστολή μέσω προσωπικού μηνύματος" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Ορίζει email για επαναφορά κωδικού πρόσβασης" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Κοινή χρήση ούτως ή άλλως" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Παράθυρο διαλόγου κοινής χρήσης συνδέσ msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Κοινή χρήση QR κώδικα" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Κοινή χρήση αυτού του Starter Pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Μοιραστείτε αυτό το Starter Pack και βοηθήστε κι άλλους να γίνουν μέλη της κοινότητάς σας στο Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Ελεγκτής κοινών προτιμήσεων" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Εμφάνιση" msgid "Show alt text" msgstr "Εμφάνιση εναλλακτικού κειμένου" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Εμφάνιση ούτως ή άλλως" @@ -11274,9 +11281,9 @@ msgstr "Εμφάνιση λίστας ούτως ή άλλως" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Εμφάνιση περισσότερων" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Εμφάνιση προειδοποίησης και φιλτράρισ msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Αποσύνδεση;" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Απαιτείται σύνδεση" @@ -11469,7 +11476,7 @@ msgstr "Παράλειψη" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Μικρότερο" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Κάτι πήγε στραβά, παρακαλώ δοκιμάστε ξανά" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Αθλήματα" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Έναρξη νέας συνομιλίας" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Έναρξη συνομιλίας με {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "starter pack" @@ -11715,12 +11722,16 @@ msgstr "starter pack από εσάς" msgid "Starter pack is invalid" msgstr "Το starter pack είναι άκυρο" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Τα Starter Packs σας επιτρέπουν να μοιράζεστε εύκολα τις αγαπημένες σας ροές και άτομα με τους φίλους σας." @@ -11728,7 +11739,7 @@ msgstr "Τα Starter Packs σας επιτρέπουν να μοιράζεστε msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Σελίδα κατάστασης" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Βήμα {0} από {1}" @@ -11754,7 +11765,7 @@ msgstr "Η αποθήκευση εκκαθαρίστηκε, πρέπει να ε msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Εγγραφείτε στο @{0} για να χρησιμοποιήσετε αυτές τις ετικέτες:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Σύστημα" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Πατήστε για να απορρίψετε" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "Η εργασία ολοκληρώθηκε - 10 \"Μου αρέσει\"!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Μάθετε στον αλγόριθμό μας τι σας αρέσει" @@ -12060,7 +12073,7 @@ msgstr "Όροι" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Δεν βρέθηκε αυτό το starter pack." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Αυτά ήταν όλα, παιδιά!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "Ο διακομιστής φαίνεται να αντιμετωπίζε msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Το starter pack που προσπαθείτε να δείτε είναι άκυρο. Μπορείτε να διαγράψετε αυτό το starter pack αντίθετα." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "Ο κωδικός επαλήθευσης που δώσατε είναι msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Θέμα" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή, παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά." @@ -12283,8 +12296,8 @@ msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας μ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Παρουσιάστηκε πρόβλημα λήψης ειδοποιήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Παρουσιάστηκε πρόβλημα λήψης αναρτήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά." @@ -12309,7 +12322,7 @@ msgstr "Παρουσιάστηκε πρόβλημα λήψης των πληρο msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Παρουσιάστηκε πρόβλημα κατά την κατάργηση αυτής της ροής. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Αυτές οι ρυθμίσεις ισχύουν μόνο για τη msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Αυτό το {screenDescription} έχει επισημανθεί:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Αυτός ο λογαριασμός έχει ζητήσει από τους χρήστες να συνδεθούν για να δουν το προφίλ τους." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Αυτή η ροή είναι άδεια! Ίσως χρειαστεί να ακολουθήσετε περισσότερους χρήστες ή να ρυθμίσετε τις γλωσσικές σας ρυθμίσεις." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Αυτή η ροή είναι άδεια." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Αυτό το όνομα χρήστη είναι κρατημένο. Παρακαλούμε δοκιμάστε ένα διαφορετικό." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Αυτή η ετικέτα εφαρμόστηκε από εσάς." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Αυτός ο ετικετογράφος δεν έχει δηλώσει ποιες ετικέτες δημοσιεύει, και ενδέχεται να μην είναι ενεργός." @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Αυτή η ανάρτηση θα κρυφτεί από τις ροές και τα νήματα. Αυτό δεν μπορεί να αναιρεθεί." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Αυτός ο χρήστης δεν έχει ακόλουθους." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Αυτός ο χρήστης σας έχει μπλοκάρει. Δεν μπορείτε να δείτε το περιεχόμενό του." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Αυτός ο χρήστης περιλαμβάνεται στη λίσ msgid "This user is new here. Press for more info about when they joined." msgstr "Αυτός ο χρήστης είναι νέος εδώ. Πατήστε για περισσότερες πληροφορίες σχετικά με το πότε εντάχθηκε." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Αυτός ο χρήστης δεν ακολουθεί κανέναν." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Αυτό θα αφαιρέσει τον @{0} από τη λίστα γρήγορης πρόσβασης." @@ -12786,7 +12801,7 @@ msgstr "Προτιμήσεις Νήματος" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Προτιμήσεις Νημάτων" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Κορυφή" @@ -12858,7 +12873,7 @@ msgstr "Κορυφή" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Ξεμπλοκάρισμα Λογαριασμού;" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Διακοπή παρακολούθησης {0}" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Ακύρωση Σίγασης νήματος" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Ακύρωση Σίγασης βίντεο" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Αφαίρεση καρφιτσωμένου" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Αφαίρεση καρφιτσωμένου από την αρχική σελίδα" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Αφαίρεση καρφιτσωμένου από τη λίστα διαχείρισης" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "Απεγγραφή από αυτόν τον ετικετογράφο" msgid "Unsubscribed from list" msgstr "Απεγγραφή από αυτήν την λίστα" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Η ενημέρωση της ορατότητας της απάντησης απέτυχε" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Αντ'αυτού, ανεβάστε μια φωτογραφία" @@ -13355,7 +13374,7 @@ msgstr "Ανεβάστε από αρχεία" msgid "Upload from Library" msgstr "Ανεβάστε από τη βιβλιοθήκη" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Ανεβάζω εικόνες..." msgid "Uploading link thumbnail..." msgstr "Ανεβάζω μικρογραφία συνδέσμου..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Ανεβάζω βίντεο..." @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "Βίντεο" msgid "Video failed to process" msgstr "Αποτυχία επεξεργασίας βίντεο" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Βιντεοπαιχνίδια" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Το βίντεο δεν βρέθηκε." @@ -13653,7 +13672,7 @@ msgstr "Το βίντεο δεν βρέθηκε." msgid "Video settings" msgstr "Ρυθμίσεις βίντεο" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Το βίντεο ανέβηκε" @@ -13662,17 +13681,17 @@ msgstr "Το βίντεο ανέβηκε" msgid "Video: {0}" msgstr "Βίντεο: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Προβολή εικόνας προφίλ του/της {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Προβολή προφίλ του/της {0}" @@ -13724,13 +13743,13 @@ msgstr "Δείτε την ανάρτηση ιστολογίου για περι msgid "View debug entry" msgstr "Προβολή καταχώρησης εντοπισμού σφαλμάτων" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Προβολή λεπτομερειών" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Προβολή πλήρους νήματος" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Προβολή της υπηρεσίας επισήμανσης που παρέχεται από το @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Προβολή χρηστών που τους αρέσει αυτή η ροή" @@ -13831,7 +13850,7 @@ msgstr "Προβολή των λιστών εποπτείας σας" msgid "View your muted accounts" msgstr "Προβολή των λογαριασμών που έχετε σε σίγαση" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Αντιμετωπίζουμε προβλήματα δικτύου, δοκιμάστε ξανά" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Λυπούμαστε, αλλά δεν μπορέσαμε να επιλύ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Λυπούμαστε, αλλά δεν μπορέσαμε να φορτώσουμε τις λέξεις που έχετε σε σίγαση αυτήν τη στιγμή. Παρακαλώ προσπαθήστε ξανά." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Λυπούμαστε! Η ανάρτηση στην οποία απαντάτε έχει διαγραφεί." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Τι συμβαίνει;" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ουπς!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Γράψτε ανάρτηση" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Γράψτε την απάντησή σας" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Δεν επιτρέπεται να ανεβάζετε βίντεο." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Τώρα μπορείτε να συνδεθείτε με τον νέο σας κωδικό πρόσβασης." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Έχετε φτάσει προσωρινά το όριο για μεταφορτώσεις βίντεο. Παρακαλώ προσπαθήστε ξανά αργότερα." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Δεν έχετε δημιουργήσει ακόμη starter pack!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Μπορείτε να προσθέσετε έως και 3 ροές" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Πρέπει να ακολουθείτε τουλάχιστον επτά άλλα άτομα για να δημιουργήσετε ένα starter pack." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Θα ακολουθήσετε τους προτεινόμενους χρήστες και τις ροές μόλις ολοκληρώσετε τη δημιουργία του λογαριασμού σας!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Θα ακολουθήσετε τους προτεινόμενους χρήστες μόλις ολοκληρώσετε τη δημιουργία του λογαριασμού σας!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Φτάσατε στο τέλος της ροής σας! Βρείτε περισσότερους λογαριασμούς για να ακολουθήσετε." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφ msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφορτώσεις βίντεο (πάρα πολλά βίντεο)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Ο λογαριασμός σας" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ο λογαριασμός σας δεν είναι ακόμη αρκετά παλιός για να ανεβάσετε βίντεο. Παρακαλώ προσπαθήστε ξανά αργότερα." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/en-CA/messages.po b/src/locale/locales/en-CA/messages.po new file mode 100644 index 0000000000..a4d128e60b --- /dev/null +++ b/src/locale/locales/en-CA/messages.po @@ -0,0 +1,15041 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en_CA\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2026-07-24 15:42\n" +"Last-Translator: \n" +"Language-Team: English, Canada\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: en-CA\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. +#: src/components/InterestTabs.tsx:333 +msgid "\"{interestsDisplayName}\" category (active)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:902 +msgid "(blocked message hidden)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/getMessageInfo.ts:123 +#: src/components/dms/replyPreview.ts:85 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:105 +msgid "(contains embedded content)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:916 +msgid "(deleted message)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:68 +msgid "(disabled chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:77 +msgid "(invalid chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:910 +msgid "(message sent before you joined)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:74 +msgid "(no email)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:107 +msgid "(no text)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:99 +msgid "(quoted post)" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/LabelsOnMe.tsx:57 +msgid "{0, plural, one {# account label} other {# account labels}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#. placeholder {0}: profile.followersCount ?? 0 +#: src/screens/Profile/ProfileFollowers.tsx:33 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount ?? 0 +#: src/screens/Profile/ProfileFollows.tsx:33 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#. placeholder {0}: item.count +#: src/components/contacts/screens/ViewMatches.tsx:268 +msgid "{0, plural, one {# friend found!} other {# friends found!}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:157 +msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:164 +msgid "{0, plural, one {# label applied} other {# labels applied}}" +msgstr "" + +#. placeholder {0}: likeCount ?? 0 +#: src/screens/Post/PostLikedBy.tsx:34 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#. placeholder {0}: convo.details.memberCount +#: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 +msgid "{0, plural, one {# member} other {# members}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:224 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#. placeholder {0}: reactions.length +#. placeholder {1}: groupedReactions.map(g => g.value).join(' ') +#: src/components/dms/MessageItem.tsx:371 +msgid "{0, plural, one {# person} other {# people}} reacted – {1}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostQuotes.tsx:34 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostRepostedBy.tsx:34 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#. placeholder {0}: numUnreadMessages.numUnread ?? 0 +#. placeholder {0}: numUnreadNotifications ?? 0 +#: src/view/shell/bottom-bar/BottomBar.tsx:251 +#: src/view/shell/bottom-bar/BottomBar.tsx:283 +#: src/view/shell/Drawer.tsx:557 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes. +#. placeholder {0}: view.readingTime +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:251 +msgid "{0, plural, one {#m} other {#m}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#. placeholder {0}: draft.meta.replyCount +#: src/view/com/composer/drafts/DraftItem.tsx:143 +msgid "{0, plural, one {1 more post} other {# more posts}}" +msgstr "" + +#. placeholder {0}: profile.followersCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#. placeholder {0}: profile.postsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#. placeholder {0}: starterPack.joinedAllTimeCount || 0 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +msgid "{0, plural, other {# people have}} joined Bluesky via this starter pack!" +msgstr "" + +#. placeholder {0}: starterPack.list.listItemCount - 4 +#: src/components/dialogs/StarterPackDialog.tsx:362 +msgid "{0, plural, other {+# more}}" +msgstr "" + +#. placeholder {0}: aaRegionConfig.minAccessAge +#: src/screens/Signup/StepInfo/index.tsx:314 +msgid "{0, plural, other {You must be # years of age or older to create an account in your region.}}" +msgstr "" + +#. placeholder {0}: i18n.date(d, {timeStyle: ts}) +#. placeholder {1}: i18n.date(d, {dateStyle: 'medium'}) +#: src/lib/strings/time.ts:15 +msgctxt "date and time formatted like this: [time] · [date]" +msgid "{0} · {1}" +msgstr "" + +#. placeholder {0}: desc.name +#: src/components/moderation/ContentHider.tsx:98 +msgid "{0} (Account)" +msgstr "" + +#. Pattern: {wordValue} in tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:495 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:484 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 +msgid "{0} added to chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +msgid "{0} and {1} added to chat" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:724 +msgid "{0} is blocking you" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle) +#: src/features/liveNow/components/LiveStatusDialog.tsx:84 +msgid "{0} is live" +msgstr "" + +#. placeholder {0}: createFullHandle(draftValue, state.userDomain) +#: src/screens/Signup/StepHandle/index.tsx:211 +msgid "{0} is not available" +msgstr "" + +#. placeholder {0}: codeToLanguageName( expectedSourceLanguage, langPrefs.appLanguage, ) +#: src/lib/translation/index.tsx:314 +msgid "{0} is not supported by your device." +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:83 +msgid "{0} joined" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:84 +msgid "{0} joined the group" +msgstr "" + +#. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK) +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "{0} joined this week" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:96 +msgid "{0} left" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:97 +msgid "{0} left the group" +msgstr "" + +#. placeholder {0}: formatTime(currentTime) +#. placeholder {1}: formatTime(duration) +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#. placeholder {0}: state.name?.length +#: src/screens/StarterPack/Wizard/StepDetails.tsx:56 +msgid "{0} out of 50" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(memberSender) +#. placeholder {1}: reaction.value +#: src/components/dms/MessageItem.tsx:366 +msgid "{0} reacted {1}" +msgstr "" + +#. Accessibility hint for the bottom bar chat icon when the number of unread messages exceeds the cap, with the + symbol already included – for example, 99+ unread items +#. placeholder {0}: numUnreadMessages.numUnread +#: src/view/shell/bottom-bar/BottomBar.tsx:246 +msgid "{0} unread items" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:57 +msgid "{0} was added" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:58 +msgid "{0} was added to the group" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:70 +msgid "{0} was removed" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:71 +msgid "{0} was removed from the group" +msgstr "" + +#. List formatting: {0}, {1}, {2} +#. placeholder {0}: link(lang) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:113 +msgid "{0}, " +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 +msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {2}: feed.likeCount || 0 +#: src/view/com/feeds/FeedSourceCard.tsx:189 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#: src/view/com/feeds/FeedSourceCard.tsx:192 +msgid "{0}, a list by {1}" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 +msgid "{0}'s avatar" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/screens/Messages/JoinRequest.tsx:139 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {0}: preview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: joinLinkPreview.memberLimit +#. placeholder {2}: preview.memberLimit +#: src/components/dms/ChatInvite/Card.tsx:62 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. Badge showing the current image position out of the total number of images in a gallery. +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:532 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" + +#. Displayed when the number of requests exceeds the cap – for example, 99+ requests +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:55 +msgid "{0}+" +msgstr "" + +#. Displayed when the number of requests exceeds the cap +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:30 +msgid "{0}+ requests" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:38 +msgid "{count, plural, one {# chat update} other {# chat updates}}" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#: src/screens/Messages/components/InboxRequests.tsx:34 +msgid "{count, plural, one {# request} other {# requests}}" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:484 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:427 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + +#: src/components/dms/DateDivider.tsx:60 +msgid "{date} at {time}" +msgstr "" + +#: src/lib/generate-starterpack.ts:104 +#: src/screens/StarterPack/Wizard/index.tsx:189 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:219 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:225 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:170 +msgid "{filterCount, plural, one {+# filter} other {+# filters}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:361 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:395 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:304 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:500 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:473 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:328 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:524 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:419 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:448 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:373 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:350 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:407 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:316 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:512 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:485 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:340 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:431 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:460 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:354 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:388 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:297 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:493 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:466 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:321 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:517 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:412 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:441 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:359 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:349 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:393 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:302 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:498 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:471 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:326 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:522 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:417 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:446 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:1158 +msgid "{handle} can’t be added" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:459 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:1119 +msgid "{handle} can’t be messaged" +msgstr "" + +#: src/features/liveNow/utils.ts:40 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/features/liveNow/utils.ts:44 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/RequestStatus.tsx:69 +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:219 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:102 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:138 +msgid "{MAX_ALT_TEXT, plural, other {Alt text must be less than # characters.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:380 +msgid "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:329 +msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 +msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" +msgstr "" + +#. The number of group chat members out of the total number of permitted users. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" +msgstr "" + +#: src/features/liveNow/utils.ts:35 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:65 +msgid "{name} reacted {0} to {target}" +msgstr "" + +#. When the last message in a group chat came from someone other than you. +#: src/components/dms/getMessageInfo.ts:89 +msgid "{name}: {message}" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:76 +msgid "{name}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "{name}'s starter pack" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:457 +msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:115 +msgid "{profileName} joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:112 +msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 +msgid "{rank}." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 +msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:811 +msgid "{replierDisplayName} replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:810 +msgid "{replierDisplayName} replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:808 +msgid "{replierDisplayName} replied to you" +msgstr "" + +#. The number of requests to join a group chat. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 +msgid "{requestCount, plural, one {# request} other {# requests}}" +msgstr "" + +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 +msgid "{requestCount}+ requests" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:62 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:71 +msgid "{userName}'s verifications" +msgstr "" + +#. Number of images beyond the first 3 +#. placeholder {0}: labels.length +#. placeholder {0}: totalNumber - 3 +#: src/components/moderation/PostAlerts.tsx:163 +#: src/view/com/composer/ComposerReplyTo.tsx:278 +msgid "+{0}" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:258 +msgid "+{computedTotal}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:569 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[2]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) +#. placeholder {1}: profile?.followersCount || 0 +#: src/view/shell/Drawer.tsx:155 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) +#. placeholder {1}: profile?.followsCount || 0 +#: src/view/shell/Drawer.tsx:166 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.quoteCount) +#. placeholder {1}: post.quoteCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 +msgid "<0>{0} {1, plural, one {quote} other {quotes}}" +msgstr "" + +#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.repostCount) +#. placeholder {1}: post.repostCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 +msgid "<0>{0} {1, plural, one {repost} other {reposts}}" +msgstr "" + +#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.bookmarkCount) +#. placeholder {1}: post.bookmarkCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 +msgid "<0>{0} {1, plural, one {save} other {saves}}" +msgstr "" + +#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(likeCount) +#: src/screens/PostThread/components/LikesStat.tsx:44 +msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[1]) +#: src/screens/StarterPack/Wizard/index.tsx:503 +#: src/screens/StarterPack/Wizard/index.tsx:557 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:550 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/WhoCanReply.tsx:353 +msgid "<0>{0} members" +msgstr "" + +#. Text identifying the person who added you to a group chat +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 +msgid "<0>{displayName}<1/><2> added you" +msgstr "" + +#: src/screens/Hashtag.tsx:230 +#: src/screens/Search/SearchResults.tsx:412 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:250 +msgid "<0>Tap here to update your location with GPS." +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#: src/screens/StarterPack/Wizard/index.tsx:494 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/lib/strings/handles.ts:38 +#: src/screens/Profile/Header/Handle.tsx:58 +msgid "⚠Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:202 +#: src/components/dialogs/MutedWords.tsx:551 +#: src/components/dialogs/MutedWords.tsx:554 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:436 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:241 +#: src/components/dialogs/MutedWords.tsx:565 +#: src/components/dialogs/MutedWords.tsx:568 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:226 +#: src/components/dialogs/MutedWords.tsx:558 +#: src/components/dialogs/MutedWords.tsx:561 +msgid "7 days" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 +msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/components/dms/getReactionInfo.ts:53 +msgid "a message" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:102 +msgid "A network error occurred. Please check your internet connection" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:99 +#: src/components/contacts/screens/VerifyNumber.tsx:155 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 +msgid "A network error occurred. Please check your internet connection." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:143 +msgid "A new code has been sent" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "A new form of verification" +msgstr "" + +#: src/components/dms/MessageItem.tsx:821 +msgid "A reply to a message sent before you joined" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 +msgid "A screenshot of a post from @esb.lol, showing the user is currently livestreaming content on Twitch. The post reads: \"Hello! I'm live on Twitch, and I'm testing Bluesky's latest feature too!\"" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:121 +msgid "A screenshot of a post with a new button next to the share button that allows you to save the post to your bookmarks. The post is from @jcsalterego.bsky.social and reads \"inventing a saturday that immediately follows monday\"." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:114 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:98 +msgid "A screenshot of the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now!!!\"." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:483 +#: src/screens/Settings/AboutSettings.tsx:85 +#: src/screens/Settings/Settings.tsx:264 +#: src/screens/Settings/Settings.tsx:267 +msgid "About" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:100 +msgid "Abusive or discriminatory behavior" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:287 +msgid "Accept" +msgstr "" + +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 +msgid "Accept chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 +msgid "Accept Request" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:460 +msgid "Accept this language suggestion" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:119 +msgid "Access requested! The group owner will review your request." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:45 +#: src/screens/Settings/Settings.tsx:234 +#: src/screens/Settings/Settings.tsx:237 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:390 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/screens/Settings/AccountSettings.tsx:54 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: src/view/com/profile/ProfileMenu.tsx:182 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:198 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/lib/strings/errors.ts:33 +msgid "Account has been suspended" +msgstr "" + +#: src/lib/strings/errors.ts:36 +msgid "Account is deactivated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 +#: src/view/com/profile/ProfileMenu.tsx:152 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:123 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:646 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:681 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:87 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:169 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:213 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:139 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:100 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:214 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:337 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:388 +#: src/components/dms/AddMembersFlow.tsx:410 +msgid "Add" +msgstr "" + +#. placeholder {0}: 8 - items.length +#: src/screens/StarterPack/Wizard/index.tsx:605 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:63 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:103 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +msgid "Add a content warning" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:114 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:64 +#: src/screens/ProfileList/AboutSection.tsx:82 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/screens/Deactivated.tsx:184 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/GifAltText.tsx:217 +#: src/view/com/composer/photos/Gallery.tsx:201 +#: src/view/com/composer/photos/Gallery.tsx:236 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:115 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:584 +#: src/screens/Settings/Settings.tsx:587 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1607 +msgid "Add another post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2273 +msgid "Add another post to thread" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 +msgid "Add another search filter" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:170 +msgid "Add automation label to account" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:31 +msgid "Add emoji reaction" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 +msgid "Add filter" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:492 +msgid "Add group chat members" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:223 +msgid "Add image" +msgstr "" + +#. Accessibility label for button in composer to add images, a video, or a GIF to a post +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Add media to post" +msgstr "" + +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:72 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:106 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:125 +msgid "Add members" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 +msgid "Add more details (optional)" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:218 +#: src/screens/Settings/LanguageSettings.tsx:223 +msgid "Add more languages…" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:330 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:120 +msgid "Add muted words and tags" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/ProfileList/AboutSection.tsx:72 +#: src/screens/ProfileList/AboutSection.tsx:90 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:81 +msgid "Add people to list" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:56 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:100 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:538 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:40 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:419 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:350 +#: src/view/com/profile/ProfileMenu.tsx:353 +msgid "Add to lists" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:121 +msgid "Add to saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:184 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/com/profile/ProfileMenu.tsx:344 +msgid "Add to starter packs" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:178 +msgid "Add user to list" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:297 +msgid "Add your birthdate" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) +#: src/screens/Messages/ConversationSettings/Member.tsx:109 +msgid "Added by {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:114 +msgid "Added by invite link" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:125 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:221 +msgid "Added to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:274 +msgid "Added to starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:225 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:230 +msgid "Adding members to list..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:116 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:546 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Admin" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:155 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:66 +msgid "Adult content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:129 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:149 +#: src/view/com/composer/labels/LabelsBtn.tsx:123 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:412 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:134 +#: src/view/com/composer/labels/LabelsBtn.tsx:192 +msgid "Adult Content labels" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76 +msgid "Adult sexual abuse content" +msgstr "" + +#: src/screens/Moderation/index.tsx:457 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:72 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:82 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:185 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:449 +msgid "Age assurance only takes a few minutes." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 +msgid "alice@example.com" +msgstr "" + +#. the default tab in the interests tab bar +#: src/components/dms/ReactionsDialog.tsx:292 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 +#: src/view/screens/Notifications.tsx:86 +msgid "All" +msgstr "" + +#. Tab label showing the total count of reactions on a chat message. +#. placeholder {0}: tab.count +#: src/components/dms/ReactionsDialog.tsx:389 +msgid "All {0}" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:400 +msgid "All accounts have been followed!" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:144 +msgid "All friends followed!" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:255 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 +msgid "All languages" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:189 +msgid "All languages will be shown in your feeds." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:245 +msgid "All of these words" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "All posts" +msgstr "" + +#: src/view/screens/Feeds.tsx:700 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451 +msgid "Allow anyone to reply" +msgstr "" + +#: src/screens/Messages/Settings.tsx:156 +#: src/screens/Messages/Settings.tsx:171 +msgid "Allow direct messages from" +msgstr "" + +#: src/screens/Messages/Settings.tsx:202 +#: src/screens/Messages/Settings.tsx:224 +msgid "Allow group chat invites from" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:128 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:134 +msgid "Allow location access" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:53 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504 +msgid "Allow people you follow to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518 +msgid "Allow people you mention to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:636 +msgid "Allow quote posts" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:598 +msgid "Allow users in {0} to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490 +msgid "Allow your followers to reply" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:201 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:237 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:243 +msgid "Already have a code?" +msgstr "" + +#: src/components/WelcomeModal.tsx:189 +msgid "Already have an account?" +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Login/ChooseAccountForm.tsx:44 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:76 +#: src/components/images/AutoSizedImage.tsx:205 +#: src/components/images/Gallery/index.tsx:596 +#: src/components/images/ImageLayoutGridItem.tsx:135 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:211 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:55 +#: src/view/com/composer/GifAltText.tsx:160 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128 +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:59 +#: src/view/com/composer/videos/SubtitleDialog.tsx:110 +#: src/view/com/composer/videos/SubtitleDialog.tsx:114 +msgid "Alt text" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:83 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:105 +#: src/view/com/composer/photos/Gallery.tsx:130 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#. placeholder {0}: i18n.number(MAX_ALT_TEXT) +#: src/view/com/composer/GifAltText.tsx:185 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:149 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#. placeholder {0}: currentAccount?.email || '(no email)' +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:94 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#. Accessibility label for the dialog shown when the GIF picker hits an unexpected runtime error and falls back to its error boundary. +#: src/components/dialogs/LanguageSelectDialog.tsx:344 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:15 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:433 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:223 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:69 +msgid "An error occurred while fetching suggested accounts." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:183 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/ViewMatches.tsx:243 +msgid "An error occurred while hiding suggestion. {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:581 +msgid "An error occurred while loading your lists :/" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:104 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:54 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:82 +#: src/screens/StarterPack/StarterPackScreen.tsx:359 +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:485 +msgid "An error occurred while uploading the video. {message}" +msgstr "" + +#: src/view/com/composer/state/video.ts:477 +msgid "An error occurred while uploading the video. Please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/PhoneInput.tsx:120 +#: src/components/contacts/screens/VerifyNumber.tsx:131 +#: src/components/contacts/screens/VerifyNumber.tsx:184 +msgid "An error occurred. {0}" +msgstr "" + +#: src/components/contacts/components/HeroImage.tsx:28 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:79 +msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 +msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:111 +msgid "An illustration of the Bluesky app with a paper airplane flying out of it, representing inviting friends" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:86 +#: src/components/verification/VerifierDialog.tsx:88 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:198 +msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 +msgid "An issue occurred starting the chat, please try again." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:52 +#: src/components/ProfileCard.tsx:510 +#: src/components/ProfileCard.tsx:532 +#: src/view/com/notifications/NotificationFeedItem.tsx:798 +#: src/view/com/notifications/NotificationFeedItem.tsx:820 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +#: src/lib/moderation/useModerationCauseDescription.ts:145 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:374 +msgid "and" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:88 +msgid "Animal sexual abuse" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:130 +msgid "Animal welfare" +msgstr "" + +#: src/lib/interests.ts:52 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:85 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:39 +msgid "Announcing verification on Bluesky" +msgstr "" + +#. Placeholder text for a date picker +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 +msgid "Any date" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 +msgid "Anyone" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135 +msgid "Anyone can interact" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:356 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +msgid "Anyone can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +msgid "Anyone can request to join" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:112 +#: src/screens/Settings/ActivityPrivacySettings.tsx:117 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:478 +msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." +msgstr "" + +#: src/Navigation.tsx:491 +#: src/screens/Settings/AppIconSettings/index.tsx:65 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:107 +#: src/screens/Settings/LanguageSettings.tsx:123 +msgid "App language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:358 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:169 +#: src/components/moderation/LabelsOnMeDialog.tsx:172 +#: src/components/moderation/ModerationDetailsDialog.tsx:223 +msgid "Appeal" +msgstr "" + +#. placeholder {0}: strings.name +#: src/components/moderation/AppealForm.tsx:93 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:159 +msgid "Appeal label" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 +msgid "Appeal livestream suspension" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:83 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 +#: src/screens/Messages/components/ChatDisabled.tsx:125 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:114 +#: src/screens/Takendown.tsx:140 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:117 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:76 +#: src/screens/Messages/components/ChatDisabled.tsx:79 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:135 +msgid "Appeal this decision" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:219 +msgid "Appeal this label" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 +#: src/screens/Settings/Settings.tsx:226 +#: src/screens/Settings/Settings.tsx:229 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:52 +#: src/screens/Home/NoFeedsPinned.tsx:94 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:515 +#: src/screens/Settings/Settings.tsx:517 +msgid "Apply Pull Request" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt, 'medium') +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:327 +msgid "Are you really, really sure?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#. placeholder {1}: link(languages[1]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 +msgid "Are you searching for posts in {0} or {1}?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 +msgid "Are you searching for posts in {0}?" +msgstr "" + +#. List formatting: {0}, {1}, or {2} +#. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) +#. placeholder {1}: link(last) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 +msgid "Are you searching for posts in {0}or {1}?" +msgstr "" + +#. placeholder {0}: appPassword.name +#: src/screens/Settings/AppPasswords.tsx:210 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:684 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:99 +#: src/screens/Profile/Header/EditProfileDialog.tsx:77 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:128 +#: src/screens/Messages/ConversationSettings/prompts.tsx:152 +msgid "Are you sure you want to leave {groupName}?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:57 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:56 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants." +msgstr "" + +#: src/components/FeedCard.tsx:374 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:116 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:452 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:349 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/lib/interests.ts:53 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:167 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:209 +msgid "At least 8 characters" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:338 +msgid "AT Protocol FAQ" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#: src/components/BotAccountAlert.tsx:32 +#: src/components/BotBadge.tsx:65 +msgid "Automated account" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:165 +#: src/screens/Login/components/HostingProviderDialog.tsx:167 +msgid "Automatic" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:155 +#: src/screens/Settings/AccountSettings.tsx:158 +msgid "Automation label" +msgstr "" + +#: src/Navigation.tsx:422 +#: src/screens/Settings/AutomationLabelSettings.tsx:103 +msgid "Automation Label" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:118 +#: src/screens/Settings/ContentAndMediaSettings.tsx:124 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:69 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:88 +msgid "Available" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:359 +#: src/components/dms/AddMembersFlow.tsx:527 +#: src/components/dms/AddMembersFlow.tsx:533 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 +#: src/components/moderation/AppealForm.tsx:145 +#: src/components/moderation/AppealForm.tsx:146 +#: src/screens/Login/ChooseAccountForm.tsx:96 +#: src/screens/Login/ChooseAccountForm.tsx:100 +#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:124 +#: src/screens/Login/LoginForm.tsx:511 +#: src/screens/Login/LoginForm.tsx:516 +#: src/screens/Login/SetNewPasswordForm.tsx:157 +#: src/screens/Login/SetNewPasswordForm.tsx:163 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:276 +#: src/screens/Messages/components/InviteLinkDialog.tsx:304 +#: src/screens/Messages/Inbox.tsx:233 +#: src/screens/Profile/Header/Shell.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:273 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:282 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:315 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:87 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:93 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:232 +msgid "Back to Chats" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:216 +msgid "Banned activities or security violations" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:227 +msgid "Banned user returning" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:184 +msgid "Based on your device's location, we think you're in <0>{geolocationString}." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236 +msgid "Based on your device's location, we think you're in <0>{region}." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:194 +msgid "Based on your network, we think you're in <0>{geolocationString}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 +msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/view/screens/Lists.tsx:35 +#: src/view/screens/ModerationModlists.tsx:35 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:72 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:260 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:56 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:155 +#: src/components/dms/MessageProfileButton.tsx:60 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:319 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:313 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 +msgid "Beta Feature" +msgstr "" + +#: src/Navigation.tsx:414 +#: src/screens/Settings/BetaFeaturesSettings.tsx:108 +#: src/screens/Settings/Settings.tsx:248 +#: src/screens/Settings/Settings.tsx:251 +msgid "Beta features" +msgstr "" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:144 +msgctxt "web" +msgid "Beta features may be unstable. Some changes may require reloading the app." +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:149 +msgctxt "native" +msgid "Beta features may be unstable. Some changes may require restarting the app." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:163 +msgid "Birthdate" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:145 +msgid "Birthday" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +msgid "Block" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 +msgid "Block {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/screens/Messages/components/RequestButtons.tsx:154 +#: src/screens/Messages/components/RequestButtons.tsx:156 +#: src/view/com/profile/ProfileMenu.tsx:464 +#: src/view/com/profile/ProfileMenu.tsx:471 +msgid "Block account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:148 +msgid "Block account?" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:91 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:94 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:148 +msgid "Block and delete" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:167 +msgctxt "button" +msgid "Block and leave" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:119 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 +msgid "Block or report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:114 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:221 +#: src/components/dms/AfterReportConversationDialog.tsx:224 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 +msgid "Block user" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:185 +msgid "Block user and/or delete this conversation" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:212 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:329 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:194 +#: src/view/screens/ModerationBlockedAccounts.tsx:95 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:163 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:181 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:204 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:116 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:157 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:176 +msgid "Blog" +msgstr "" + +#. Advanced search: Examples of hashtags +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:17 +msgid "bloomscrolling booksky" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:144 +#: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classic™" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:235 +msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:214 +#: src/screens/Login/components/HostingProviderDialog.tsx:236 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:162 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:115 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:43 +msgid "Bluesky is more fun with friends" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 +msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:315 +msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "" + +#: src/screens/Takendown.tsx:213 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:570 +msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:100 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:97 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:100 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:54 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/lib/interests.ts:54 +msgid "Books" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 +msgid "Breaking site rules" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:167 +#: src/view/com/feeds/ProfileFeedgens.tsx:168 +msgid "Browse custom feeds" +msgstr "" + +#: src/components/FeedInterstitials.tsx:535 +msgid "Browse more accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:665 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:646 +#: src/components/FeedInterstitials.tsx:649 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:674 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:104 +#: src/screens/Home/NoFeedsPinned.tsx:110 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:58 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:66 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:75 +msgid "Browse starter pack {displayName}" +msgstr "" + +#. placeholder {0}: trend.displayName +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:112 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:171 +msgid "Business" +msgstr "" + +#: src/screens/Bookmarks.tsx:295 +msgid "Button to go back to the home timeline" +msgstr "" + +#. The owner (creator) of a group chat. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile( joinLinkPreview.owner, moderationOpts, ).ui('displayName'), ) +#. placeholder {0}: sanitizeHandle(handle, '@') +#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@') +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:177 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 +msgid "By {0}" +msgstr "" + +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') +#: src/components/intents/GroupChatJoinDialog.tsx:379 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 +msgid "By <0>{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:84 +msgid "By <0>{ownerDisplayName}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:297 +msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:76 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:43 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:63 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:111 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 +msgid "Camera" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 +#: src/components/contacts/screens/GetContacts.tsx:292 +#: src/components/contacts/screens/GetContacts.tsx:297 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128 +#: src/components/dialogs/InAppBrowserConsent.tsx:99 +#: src/components/dialogs/InAppBrowserConsent.tsx:105 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:291 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:299 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 +#: src/components/Menu/index.tsx:373 +#: src/components/moderation/BlockDialog.tsx:204 +#: src/components/PostControls/RepostButton.tsx:210 +#: src/components/Prompt.tsx:152 +#: src/components/Prompt.tsx:154 +#: src/components/SendErrorReportDialog.tsx:98 +#: src/components/SendErrorReportDialog.tsx:102 +#: src/features/liveNow/components/GoLiveDialog.tsx:254 +#: src/features/liveNow/components/GoLiveDialog.tsx:260 +#: src/lib/media/picker.tsx:38 +#: src/screens/Deactivated.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:108 +#: src/screens/Messages/ConversationSettings/prompts.tsx:132 +#: src/screens/Messages/ConversationSettings/prompts.tsx:156 +#: src/screens/Messages/ConversationSettings/prompts.tsx:180 +#: src/screens/Profile/Header/EditProfileDialog.tsx:215 +#: src/screens/Profile/Header/EditProfileDialog.tsx:223 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:202 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:209 +#: src/screens/Settings/AppIconSettings/index.tsx:42 +#: src/screens/Settings/AppIconSettings/index.tsx:228 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:143 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:152 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:80 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:87 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:248 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:254 +#: src/screens/Settings/Settings.tsx:309 +#: src/screens/Takendown.tsx:102 +#: src/screens/Takendown.tsx:105 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:44 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:53 +#: src/view/shell/desktop/LeftNav.tsx:228 +msgid "Cancel" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:205 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:144 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Messages/components/MessageInputReply.tsx:83 +msgid "Cancel reply" +msgstr "" + +#: src/screens/Search/Shell.tsx:592 +msgid "Cancel search" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 +msgid "Cancels signing in so you can check your username" +msgstr "" + +#: src/components/PostControls/index.tsx:108 +#: src/components/PostControls/index.tsx:138 +#: src/components/PostControls/index.tsx:166 +#: src/state/shell/composer/index.tsx:105 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:156 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:57 +msgid "Captions & alt text" +msgstr "" + +#: src/components/images/Gallery/index.tsx:273 +msgid "carousel" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Cashtag {tag}" +msgstr "" + +#. Advanced search: Example of an “all of these words” search. Paired with “cows pigs”. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 +msgid "cats dogs" +msgstr "" + +#: src/components/Post/Translated/index.tsx:439 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:37 +msgid "Change app icon" +msgstr "" + +#. placeholder {0}: icon.name +#. placeholder {0}: next.name +#: src/screens/Settings/AppIconSettings/index.tsx:36 +#: src/screens/Settings/AppIconSettings/index.tsx:224 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:41 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:96 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:100 +msgid "Change Handle" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:644 +msgid "Change hosting provider" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:445 +msgid "Change moderation service" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:262 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:268 +msgid "Change password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:165 +msgid "Change password dialog" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:312 +msgid "Change report category" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:390 +msgid "Change report reason" +msgstr "" + +#: src/components/Post/Translated/index.tsx:424 +msgid "Change the source language" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:58 +msgid "Change your password" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:219 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:50 +#: src/components/forms/HostingProvider.tsx:70 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:179 +msgid "Changes saved" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:164 +msgid "Changes to the starter pack will not be reflected in the list after creation. The list will be an independent copy." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/Navigation.tsx:509 +#: src/view/shell/bottom-bar/BottomBar.tsx:242 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:108 +msgid "Chat ended" +msgstr "" + +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:269 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:104 +msgid "Chat locked" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:146 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:137 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:206 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 +msgid "Chat not found." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 +msgid "Chat options" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:290 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:529 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:62 +#: src/screens/Messages/Inbox.tsx:97 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 +#: src/screens/Messages/Settings.tsx:48 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:147 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:115 +msgid "Chat title changed" +msgstr "" + +#. placeholder {0}: data.newName +#: src/components/dms/getSystemMessageInfo.ts:114 +msgid "Chat title changed to {0}" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:106 +msgid "Chat unlocked" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:208 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 +msgid "Chats" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:233 +msgid "Check <0>{currentEmail} for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:182 +msgid "Check back later!" +msgstr "" + +#: src/screens/SignupQueued.tsx:79 +#: src/screens/SignupQueued.tsx:83 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:463 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:161 +msgid "Child safety" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:165 +msgid "Child Sexual Abuse Material (CSAM)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:401 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:205 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 +msgid "Choose for me" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:199 +msgid "Choose languages" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Choose People" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:75 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:136 +msgid "Choose post languages" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +msgid "Choose who can join this group chat and how." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:57 +msgid "Choose who to invite" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:134 +#: src/screens/Login/components/HostingProviderDialog.tsx:155 +msgid "Choose your hosting provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:726 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:271 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:201 +msgid "Choose your username" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.native.tsx:73 +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.tsx:110 +#: src/screens/Search/components/AdvancedSearchDialog/ClearableInput.tsx:59 +msgid "Clear" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:70 +msgid "Clear date" +msgstr "" + +#. Accessibility label for the X button inside the search input that clears the typed query and returns to the trending feed. +#: src/features/gifPicker/components/GifPickerHeader.tsx:67 +msgid "Clear GIF search" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +#: src/screens/Settings/AboutSettings.tsx:138 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:87 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:88 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:35 +msgid "click here" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +msgid "Click here to add people to this group chat" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +msgid "Click here to create or manage an invite link for this group chat" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:327 +msgid "Click here to delete your account" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:318 +msgid "Click here to log out" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:263 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:272 +msgid "Click here to resend the email" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:119 +#: src/ageAssurance/components/NoAccessScreen.tsx:294 +msgid "Click here to update your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 +msgid "Click here to update your email" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +msgid "Click here to view the invite link for this group chat" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:56 +msgid "Click to open tag menu for {0}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:643 +msgid "Click to retry failed message" +msgstr "" + +#. Visible label of the button that dismisses the GIF picker error dialog. +#: src/ageAssurance/components/RedirectOverlay.tsx:265 +#: src/ageAssurance/components/RedirectOverlay.tsx:271 +#: src/ageAssurance/components/RedirectOverlay.tsx:321 +#: src/ageAssurance/components/RedirectOverlay.tsx:327 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:174 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:180 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 +#: src/components/AltBadgeWithDialog.tsx:88 +#: src/components/dialogs/LanguageSelectDialog.tsx:359 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:147 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200 +#: src/components/dialogs/SearchablePeopleList.tsx:340 +#: src/components/dialogs/StarterPackDialog.tsx:187 +#: src/components/dms/AddMembersFlow.tsx:384 +#: src/components/dms/AfterReportConversationDialog.tsx:91 +#: src/components/dms/AfterReportConversationDialog.tsx:96 +#: src/components/dms/AfterReportConversationDialog.tsx:247 +#: src/components/dms/AfterReportConversationDialog.tsx:252 +#: src/components/dms/AfterReportDialog.tsx:94 +#: src/components/dms/AfterReportDialog.tsx:99 +#: src/components/dms/AfterReportDialog.tsx:212 +#: src/components/dms/AfterReportDialog.tsx:217 +#: src/components/dms/EmojiPopup.android.tsx:59 +#: src/components/dms/InitiateChatFlow.tsx:670 +#: src/components/intents/GroupChatJoinDialog.tsx:246 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +#: src/components/NewskieDialog.tsx:169 +#: src/components/NewskieDialog.tsx:175 +#: src/components/ProgressGuide/FollowDialog.tsx:462 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128 +#: src/components/verification/VerificationsDialog.tsx:146 +#: src/components/verification/VerifierDialog.tsx:147 +#: src/components/WhoCanReply.tsx:236 +#: src/components/WhoCanReply.tsx:243 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45 +#: src/features/liveNow/components/EditLiveDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:524 +#: src/screens/Messages/components/InviteLinkDialog.tsx:529 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:288 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:293 +#: src/view/com/feeds/MissingFeed.tsx:211 +#: src/view/com/feeds/MissingFeed.tsx:218 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:30 +msgid "Close alert" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + +#. Accessibility label for the button that dismisses the GIF picker error dialog. +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:223 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:229 +#: src/components/dialogs/LanguageSelectDialog.tsx:221 +#: src/components/dialogs/LanguageSelectDialog.tsx:322 +#: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:102 +#: src/components/moderation/BlockDialog.tsx:201 +#: src/components/verification/VerificationsDialog.tsx:138 +#: src/components/verification/VerifierDialog.tsx:140 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:127 +msgid "Close drawer menu" +msgstr "" + +#: src/components/Lightbox/chrome/Header.tsx:47 +msgid "Close image" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:73 +#: src/components/Lightbox/Lightbox.web.tsx:334 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 +msgid "Close menu" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:239 +#: src/components/intents/GroupChatJoinDialog.tsx:240 +#: src/components/intents/GroupChatJoinDialog.tsx:276 +#: src/components/intents/GroupChatJoinDialog.tsx:277 +#: src/components/Menu/index.tsx:367 +msgid "Close this dialog" +msgstr "" + +#: src/components/WelcomeModal.tsx:214 +msgid "Close welcome modal" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1829 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:611 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:949 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:68 +msgid "Color" +msgstr "" + +#: src/components/dialogs/Embed.tsx:150 +#: src/screens/Settings/AppearanceSettings.tsx:79 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:147 +msgid "Color theme" +msgstr "" + +#: src/lib/interests.ts:55 +msgid "Comedy" +msgstr "" + +#: src/lib/interests.ts:56 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 +#: src/Navigation.tsx:348 +#: src/view/screens/CommunityGuidelines.tsx:28 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:329 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:203 +msgid "Complete the challenge" +msgstr "" + +#: src/lib/hotkeys/index.tsx:66 +#: src/view/com/feeds/ComposerPrompt.tsx:147 +#: src/view/shell/desktop/LeftNav.tsx:587 +msgid "Compose new post" +msgstr "" + +#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 +#: src/view/com/composer/Composer.tsx:1705 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:63 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2677 +msgid "Compressing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2679 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:254 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:211 +#: src/components/Prompt.tsx:214 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:186 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:189 +msgid "Confirm" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 +#: src/screens/Login/LoginForm.tsx:442 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:187 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:191 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:244 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:145 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:151 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:132 +msgid "Connecting to service..." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:542 +msgid "Connecting to service…" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:138 +#: src/screens/Login/LoginForm.tsx:548 +msgid "Connecting…" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Connection issue" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:404 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:128 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:31 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:109 +msgid "Contact our support team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 +msgid "Contact support" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 +#: src/screens/Settings/FindContactsSettings.tsx:164 +msgid "Contact sync is not available on this device, as the app is unable to access your contacts." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:526 +msgid "Contacts imported" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:499 +msgid "Contacts removed" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:53 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:206 +#: src/screens/Settings/Settings.tsx:209 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:362 +msgid "Content filters" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:177 +msgid "Content languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:83 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:192 +msgid "Content promoting or depicting self-harm" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/components/moderation/ScreenHider.tsx:98 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:46 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:61 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:93 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 +#: src/screens/Onboarding/StepInterests/index.tsx:93 +#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 +msgid "Continue" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:134 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 +msgid "Continue signing in" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:64 +msgid "Continue thread..." +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:598 +msgid "Continue to group name" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:90 +#: src/screens/Onboarding/StepProfile/index.tsx:298 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:63 +msgid "Conversation" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:321 +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:172 +#: src/components/dms/AfterReportConversationDialog.tsx:179 +msgctxt "toast" +msgid "Conversation left" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:169 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/screens/Search/Shell.tsx:512 +msgid "Copied link to clipboard" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:97 +#: src/components/PostControls/DiscoverDebug.tsx:36 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 +#: src/lib/sharing.ts:24 +#: src/lib/sharing.ts:42 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:197 +#: src/screens/Messages/components/CopyTextButton.tsx:71 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:145 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:256 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:266 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:501 +#: src/view/com/profile/ProfileMenu.tsx:504 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:186 +#: src/components/dialogs/Embed.tsx:202 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:504 +#: src/view/com/profile/ProfileMenu.tsx:510 +#: src/view/com/profile/ProfileMenu.tsx:513 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:436 +msgid "Copy host" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copy invite link" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:91 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:644 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:122 +msgid "Copy Link" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:164 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:290 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:637 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:198 +#: src/components/dms/MessageContextMenu.tsx:202 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:184 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:457 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 +#: src/Navigation.tsx:353 +#: src/view/screens/CopyrightPolicy.tsx:25 +msgid "Copyright Policy" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:80 +msgid "Could not capture QR code" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:134 +msgid "Could not connect to feed service" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:121 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:75 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 +msgid "Could not fetch post" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:183 +msgid "Could not find profile" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 +msgid "Could not follow all matches - please check your network connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 +msgid "Could not follow all matches. {0}" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:158 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 +msgid "Could not leave chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:282 +msgid "Could not leave chat." +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:72 +msgid "Could not load feed" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:27 +#: src/screens/ProfileList/index.tsx:80 +#: src/screens/ProfileList/index.tsx:102 +msgid "Could not load list" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 +msgid "Could not mute chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:308 +msgid "Could not remove member." +msgstr "" + +#. placeholder {0}: cleanError(error) +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:61 +msgid "Could not share – please try again" +msgstr "" + +#: src/state/queries/notifications/settings.ts:124 +msgid "Could not update notification settings" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/GetContacts.tsx:171 +msgid "Could not upload contacts. {0}" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:165 +msgid "Could not upload contacts. You need to re-verify your phone number to proceed" +msgstr "" + +#. Title of the error screen shown when the GIF provider request fails. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:51 +msgid "Couldn’t load GIFs" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:80 +msgid "Country code" +msgstr "" + +#. Advanced search: Example of a “none of these words” search. Paired with “cats dogs”. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 +msgid "cows pigs" +msgstr "" + +#. Text on button to create a new starter pack +#. Text on button to create a new starter pack +#: src/components/dialogs/StarterPackDialog.tsx:113 +#: src/components/dialogs/StarterPackDialog.tsx:210 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +msgid "Create" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:166 +#: src/view/com/lists/ProfileLists.tsx:167 +msgid "Create a list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:620 +msgid "Create a list from this starter pack" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 +msgid "Create a starter pack" +msgstr "" + +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 +msgid "Create a Starter Pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +msgid "Create a starter pack for me" +msgstr "" + +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 +#: src/screens/Messages/JoinRequest.tsx:310 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 +#: src/view/shell/bottom-bar/BottomBar.tsx:351 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/NavSignupCard.tsx:48 +#: src/view/shell/NavSignupCard.tsx:53 +msgid "Create account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:87 +#: src/components/dialogs/Signin.tsx:89 +#: src/screens/Hashtag.tsx:236 +#: src/screens/Search/SearchResults.tsx:418 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:314 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 +msgid "Create another" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:606 +msgid "Create group chat" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:180 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:188 +msgid "Create list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:626 +msgid "Create list from members" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:148 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:152 +msgid "Create list from starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:367 +msgid "Create moderation list" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:304 +#: src/view/com/auth/SplashScreen.tsx:89 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Create new account" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:554 +msgid "Create or modify an invite link for this group chat" +msgstr "" + +#. Accessibility label for button to create a moderation report for the selected option +#. placeholder {0}: option.title +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 +msgid "Create report for {0}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:108 +#: src/components/dialogs/StarterPackDialog.tsx:205 +msgid "Create starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:366 +msgid "Create user list" +msgstr "" + +#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', }) +#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', }) +#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', }) +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:509 +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:131 +msgid "Creator has been blocked" +msgstr "" + +#: src/lib/interests.ts:57 +msgid "Culture" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:188 +msgid "Current beta features" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:375 +msgid "Current chat" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:152 +#: src/components/dialogs/ServerInput.tsx:154 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:140 +msgid "Customization options" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:60 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:200 +msgid "Dangerous challenges or activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:204 +msgid "Dangerous substances or drug abuse" +msgstr "" + +#: src/components/dialogs/Embed.tsx:164 +#: src/components/dialogs/Embed.tsx:166 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:299 +msgid "Date of birth" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Day" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:177 +#: src/screens/Settings/AccountSettings.tsx:182 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:472 +msgid "Debug Moderation" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:469 +msgid "Decline this language suggestion" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84 +msgid "Deepfake adult content" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:73 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:184 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275 +#: src/screens/Settings/AppPasswords.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:715 +#: src/screens/StarterPack/StarterPackScreen.tsx:794 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:187 +#: src/screens/Settings/AccountSettings.tsx:192 +msgid "Delete account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:183 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:230 +msgid "Delete account “{currentHandle}”" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:208 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:479 +msgid "Delete chat declaration record" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:567 +msgid "Delete contacts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:151 +#: src/components/dms/AfterReportDialog.tsx:195 +#: src/components/dms/AfterReportDialog.tsx:198 +#: src/screens/Messages/components/RequestButtons.tsx:147 +#: src/screens/Messages/components/RequestButtons.tsx:149 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:212 +msgid "Delete for me" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:202 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:182 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:209 +msgid "Delete message for me" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:309 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1717 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:609 +#: src/screens/StarterPack/StarterPackScreen.tsx:785 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:681 +msgid "Delete starter pack?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:270 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:205 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 +msgid "Deleted Account" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:286 +msgid "Deleted by Plivo after verification" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:43 +#: src/view/com/feeds/MissingFeed.tsx:76 +#: src/view/com/feeds/MissingFeed.tsx:128 +#: src/view/com/feeds/MissingFeed.tsx:136 +msgid "Deleted list" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:453 +#: src/components/SendErrorReportDialog.tsx:78 +#: src/screens/Profile/Header/EditProfileDialog.tsx:360 +#: src/screens/Profile/Header/EditProfileDialog.tsx:367 +msgid "Description" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:82 +msgid "Description (1000 characters max)" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:156 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:124 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:158 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:152 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:291 +#: src/screens/Settings/Settings.tsx:294 +msgid "Developer options" +msgstr "" + +#: src/lib/translation/index.tsx:303 +msgid "Device failed to translate :(" +msgstr "" + +#: src/components/WhoCanReply.tsx:222 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 +msgid "Dialog: Set search filters" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:108 +msgid "Dim" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 +msgid "Disable" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 +msgid "Disable 2FA" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 +msgid "Disable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:90 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:90 +#: src/screens/Settings/AccessibilitySettings.tsx:95 +msgid "Disable haptic feedback" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +msgid "Disable link" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:628 +msgid "Disable quote posts of this post" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465 +msgid "Disable replies entirely" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 +msgid "Disable this invite link?" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:35 +#: src/lib/moderation/useLabelBehaviorDescription.ts:45 +#: src/lib/moderation/useLabelBehaviorDescription.ts:71 +#: src/screens/Moderation/index.tsx:402 +msgid "Disabled" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 +#: src/screens/Profile/Header/EditProfileDialog.tsx:79 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 +#: src/view/com/composer/drafts/DraftItem.tsx:242 +#: src/view/com/composer/drafts/DraftsButton.tsx:131 +msgid "Discard" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:98 +#: src/screens/Profile/Header/EditProfileDialog.tsx:76 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1495 +#: src/view/com/composer/drafts/DraftItem.tsx:239 +#: src/view/com/composer/drafts/DraftsButton.tsx:98 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 +msgid "Discard post?" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 +msgid "Disconnect Germ DM" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:88 +#: src/screens/Settings/components/PwiOptOut.tsx:92 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:64 +#: src/view/com/posts/FollowingEmptyState.tsx:69 +#: src/view/com/posts/FollowingEndOfFeed.tsx:65 +#: src/view/com/posts/FollowingEndOfFeed.tsx:70 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:723 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:398 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 +msgid "Dismiss" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:78 +msgid "Dismiss banner" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2598 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:80 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 +msgid "Dismiss interests" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 +msgid "Dismiss live event banner" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:90 +msgid "Dismiss this section" +msgstr "" + +#: src/components/FeedInterstitials.tsx:349 +msgid "Dismiss this suggestion" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:70 +#: src/screens/Settings/AccessibilitySettings.tsx:75 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:310 +#: src/screens/Profile/Header/EditProfileDialog.tsx:316 +msgid "Display name" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 +msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:405 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:407 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:525 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:269 +msgid "Don’t see a code? <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:26 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:73 +#: src/components/contacts/components/InviteInfo.tsx:79 +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:412 +#: src/components/dialogs/BirthDateSettings.tsx:193 +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200 +#: src/components/dialogs/LanguageSelectDialog.tsx:327 +#: src/components/dialogs/NotificationSettingsDialog.tsx:106 +#: src/components/dialogs/ServerInput.tsx:237 +#: src/components/dialogs/ServerInput.tsx:239 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 +#: src/components/forms/DateField/index.tsx:128 +#: src/components/forms/DateField/index.tsx:145 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:147 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:153 +#: src/lib/media/picker.tsx:37 +#: src/screens/Login/components/HostingProviderDialog.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:255 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 +#: src/view/com/composer/labels/LabelsBtn.tsx:219 +#: src/view/com/composer/labels/LabelsBtn.tsx:226 +#: src/view/com/composer/videos/SubtitleDialog.tsx:192 +#: src/view/com/composer/videos/SubtitleDialog.tsx:203 +msgid "Done" +msgstr "" + +#: src/components/dms/MessageItem.tsx:541 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:399 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1178 +msgid "Double tap to like" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:149 +msgid "Download chat data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:154 +msgctxt "button" +msgid "Download chat data" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 +msgid "Download image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +msgid "Doxxing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120 +#: src/view/com/composer/drafts/DraftsButton.tsx:70 +#: src/view/com/composer/drafts/DraftsButton.tsx:79 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:119 +msgid "Drafts" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:369 +msgid "Drop to add images" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:20 +msgid "Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:162 +msgid "Duration:" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Dusk" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:237 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:317 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:388 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:370 +msgid "e.g. Great Posters" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:371 +msgid "e.g. Spammers" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:374 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:375 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:196 +msgid "Eating disorders" +msgstr "" + +#: src/screens/Messages/components/EditTextButton.tsx:52 +#: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/Wizard/index.tsx:331 +#: src/screens/StarterPack/Wizard/index.tsx:336 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:215 +#: src/view/com/lists/ListMembers.tsx:220 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:116 +msgid "Edit Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:43 +#: src/screens/Messages/ConversationSettings/prompts.tsx:49 +msgid "Edit group name" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:86 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:90 +#: src/view/com/composer/photos/Gallery.tsx:218 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 +msgid "Edit interests" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 +msgid "Edit link settings" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:191 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:194 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:364 +#: src/view/com/profile/ProfileMenu.tsx:384 +msgid "Edit live status" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:364 +msgid "Edit moderation list" +msgstr "" + +#: src/Navigation.tsx:363 +#: src/view/screens/Feeds.tsx:511 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:544 +msgid "Edit name" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:116 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:266 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:265 +#: src/screens/Profile/Header/EditProfileDialog.tsx:271 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:330 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:332 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:596 +msgid "Edit starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:493 +#: src/screens/Messages/ConversationSettings/index.tsx:543 +msgid "Edit this group chat’s name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:363 +msgid "Edit user list" +msgstr "" + +#: src/components/WhoCanReply.tsx:116 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:565 +msgid "Edit your starter pack" +msgstr "" + +#: src/lib/interests.ts:59 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:145 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:65 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:90 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:99 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 +msgid "Email sent!" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:260 +msgid "Email sent! <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:183 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:74 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:178 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:105 +#: src/components/dialogs/Embed.tsx:109 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:96 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:389 +msgid "Enable adult content" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:117 +#: src/screens/Settings/BetaFeaturesSettings.tsx:124 +msgid "Enable beta features" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 +msgid "Enable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:80 +#: src/components/dialogs/EmbedConsent.tsx:86 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:53 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +#: src/view/screens/Storybook/Admonitions.tsx:76 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 +msgid "Enable push notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:629 +msgid "Enable quote posts of this post" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:90 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:134 +#: src/screens/Settings/ContentAndMediaSettings.tsx:148 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:155 +#: src/screens/Settings/ContentAndMediaSettings.tsx:169 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Moderation/index.tsx:400 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:135 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:182 +msgid "Ensure you have selected a language for each caption file." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:231 +msgid "Enter 6-digit code that was sent to your phone number" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:136 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:136 +#: src/components/dialogs/MutedWords.tsx:137 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:64 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 +msgid "Enter fullscreen" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:226 +msgid "Enter the 6-digit code sent to {prettyNumber}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:382 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:109 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:164 +msgid "Enter your birthdate" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:96 +#: src/screens/Signup/StepInfo/index.tsx:243 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:389 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:291 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2697 +#: src/view/com/util/error/ErrorScreen.tsx:40 +msgid "Error" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:95 +msgid "Error getting the latest data." +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:201 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +#: src/screens/Settings/components/ExportCarDialog.tsx:80 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:127 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:206 +msgid "Error: {error}" +msgstr "" + +#: src/components/WhoCanReply.tsx:85 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:279 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:93 +msgctxt "allow group chat invites from" +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:78 +msgctxt "allow messages from" +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 +msgid "Everything else" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 +msgid "Everything look right?" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:46 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:57 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 +msgid "Exclude" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:320 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:605 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 +msgid "Exit fullscreen" +msgstr "" + +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:612 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:103 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:31 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1054 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:490 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:127 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:520 +msgid "Expired" +msgstr "" + +#. placeholder {0}: formatDistance(expiryDate, new Date(), { addSuffix: true, }) +#: src/components/dialogs/MutedWords.tsx:589 +msgid "Expires {0}" +msgstr "" + +#. placeholder {0}: timeDiff(Date.now(), label.exp) +#. placeholder {0}: timeDiff(Date.now(), modcause.label.exp) +#: src/components/moderation/LabelsOnMeDialog.tsx:218 +#: src/components/moderation/ModerationDetailsDialog.tsx:294 +msgid "Expires in {0}" +msgstr "" + +#. placeholder {0}: displayDuration(i18n, minutesUntilExpiry) +#. placeholder {1}: i18n.date(expiryDateTime, { hour: 'numeric', minute: '2-digit', hour12: true, }) +#: src/features/liveNow/components/EditLiveDialog.tsx:125 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 +msgid "Explore" +msgstr "" + +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 +msgid "Explore the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:329 +#: src/screens/Messages/Settings.tsx:338 +#: src/screens/Settings/components/ExportCarDialog.tsx:130 +msgid "Export my chat data" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:168 +#: src/screens/Settings/AccountSettings.tsx:172 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:97 +msgid "Export my profile data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:86 +#: src/screens/Settings/ContentAndMediaSettings.tsx:89 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:44 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "" + +#: src/Navigation.tsx:382 +#: src/screens/Settings/ExternalMediaPreferences.tsx:35 +msgid "External Media Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:146 +msgid "Extremist content" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:244 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:92 +#: src/components/dms/MessageContextMenu.tsx:140 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 +msgid "Failed to add members" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:239 +msgid "Failed to add to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:280 +msgid "Failed to add to starter pack" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:605 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 +#: src/screens/Search/Shell.tsx:513 +msgid "Failed to copy link" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:38 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 +msgid "Failed to create invite link" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:250 +#: src/screens/StarterPack/Wizard/index.tsx:260 +msgid "Failed to create starter pack" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:112 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:754 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +msgid "Failed to disable invite link" +msgstr "" + +#. placeholder {0}: error?.message +#: src/screens/Profile/components/GermButton.tsx:196 +msgid "Failed to disconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:381 +msgid "Failed to edit group chat name" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 +msgid "Failed to edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 +msgid "Failed to enable invite link" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:143 +msgid "Failed to follow all suggested accounts, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:148 +msgid "Failed to follow all your friends, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:236 +msgid "Failed to hide suggestion, please check your internet connection" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Failed to join the group chat. Please try again." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:582 +msgid "Failed to launch SMS app" +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:41 +#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/screens/Messages/ConversationSettings/index.tsx:408 +msgctxt "toast" +msgid "Failed to leave group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:420 +#: src/screens/Messages/Inbox.tsx:202 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 +msgid "Failed to load feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:85 +#: src/screens/Messages/Settings.tsx:369 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:22 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:66 +msgid "Failed to load preference." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:292 +msgid "Failed to load profiles" +msgstr "" + +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:386 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:433 +msgid "Failed to lock group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:636 +#: src/view/shell/bottom-bar/BottomBar.tsx:447 +msgid "Failed to mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:645 +#: src/screens/Messages/Inbox.tsx:304 +#: src/view/shell/bottom-bar/BottomBar.tsx:456 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:397 +msgid "Failed to mute group chat" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#. placeholder {0}: e?.message +#: src/screens/Profile/components/GermButton.tsx:164 +msgid "Failed to reconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to reject join request" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:509 +msgid "Failed to remove data due to a network error, please check your internet connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:515 +msgid "Failed to remove data. {0}" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:77 +#: src/components/dms/MessageContextMenu.tsx:125 +#: src/components/dms/ReactionsDialog.tsx:179 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:258 +msgid "Failed to remove from list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:293 +msgid "Failed to remove from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 +msgid "Failed to remove group chat member" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:193 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 +msgid "Failed to resolve location. Please try again." +msgstr "" + +#: src/view/com/composer/Composer.tsx:731 +msgid "Failed to save draft" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:319 +msgid "Failed to save image" +msgstr "" + +#. placeholder {0}: String(e) +#: src/lib/media/save-image.ios.ts:27 +#: src/lib/media/save-image.ts:31 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:109 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:147 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:52 +msgid "Failed to send report" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:77 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 +#: src/screens/Messages/components/ChatDisabled.tsx:119 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:442 +msgid "Failed to unlock group chat" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 +msgid "Failed to unpin list" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:316 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:110 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:73 +#: src/lib/media/video/upload.web.ts:73 +#: src/lib/media/video/upload.web.ts:77 +#: src/lib/media/video/upload.web.ts:87 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:169 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:372 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +msgid "Fake account or bot" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +msgid "False information about elections" +msgstr "" + +#: src/Navigation.tsx:293 +msgid "Feed" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/components/FeedCard.tsx:170 +#: src/state/queries/feed.ts:127 +#: src/view/com/feeds/FeedSourceCard.tsx:151 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:153 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:190 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:74 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:109 +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/Drawer.tsx:427 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 +msgctxt "toast" +msgid "Feedback sent to feed operator" +msgstr "" + +#: src/Navigation.tsx:545 +#: src/screens/SavedFeeds.tsx:112 +#: src/screens/SavedFeeds.tsx:303 +#: src/screens/Search/SearchResults.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:196 +#: src/view/screens/Feeds.tsx:504 +#: src/view/screens/Profile.tsx:241 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 +msgid "Feeds" +msgstr "" + +#: src/screens/SavedFeeds.tsx:227 +#: src/screens/SavedFeeds.tsx:398 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide for more information." +msgstr "" + +#: src/components/FeedCard.tsx:313 +#: src/screens/SavedFeeds.tsx:92 +#: src/screens/SavedFeeds.tsx:271 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +#: src/screens/Settings/components/ExportCarDialog.tsx:76 +msgid "File saved successfully!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 +msgid "Filter by author" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 +msgid "Filter by author (currently: {currentLabel})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 +msgid "Filter by media" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 +msgid "Filter by media (currently: {currentLabel})" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:69 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 +msgid "Filter search by language" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#. placeholder {0}: lang.name +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 +msgid "Filter this search by {0}" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:106 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:78 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 +msgctxt "search" +msgid "Filters" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:335 +msgid "Finalizing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 +msgid "Finally!" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 +msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." +msgstr "" + +#: src/lib/interests.ts:60 +msgid "Finance" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:67 +#: src/view/com/posts/CustomFeedEmptyState.tsx:72 +#: src/view/com/posts/FollowingEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:49 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 +#: src/screens/Settings/Settings.tsx:217 +#: src/screens/Settings/Settings.tsx:220 +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 +msgid "Find Contacts" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:273 +#: src/components/contacts/screens/GetContacts.tsx:287 +msgid "Find my friends" +msgstr "" + +#. Starter packs suggested to the user for them to follow +#: src/components/ProgressGuide/FollowDialog.tsx:72 +#: src/components/ProgressGuide/FollowDialog.tsx:80 +#: src/components/ProgressGuide/FollowDialog.tsx:448 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:43 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + +#: src/screens/Search/Shell.tsx:765 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 +msgid "Find your friends" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 +#: src/screens/Settings/FindContactsSettings.tsx:133 +msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 +msgid "Find your people" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:281 +msgid "Finding friends..." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Finish" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/components/contacts/components/OTPInput.tsx:55 +msgid "Focus code input" +msgstr "" + +#: src/lib/hotkeys/index.tsx:73 +msgid "Focus the search field" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:548 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 +#: src/screens/VideoFeed/index.tsx:937 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397 +msgid "Follow {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:167 +msgid "Follow {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:916 +msgid "Follow {handle}" +msgstr "" + +#: src/state/shell/progress-guide.tsx:232 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:73 +msgid "Follow 10 people to get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:114 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:331 +msgid "Follow account" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:276 +#: src/components/contacts/screens/ViewMatches.tsx:291 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:294 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:162 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:169 +#: src/screens/Settings/FindContactsSettings.tsx:465 +#: src/screens/Settings/FindContactsSettings.tsx:475 +#: src/screens/StarterPack/StarterPackScreen.tsx:452 +#: src/screens/StarterPack/StarterPackScreen.tsx:460 +msgid "Follow all" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:291 +msgid "Follow all accounts" +msgstr "" + +#. User is not following this account, click to follow back +#: src/components/ProfileCard.tsx:544 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow back" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132 +msgid "Followed all accounts!" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:418 +msgid "Followed all matches" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#: src/components/KnownFollowers.tsx:233 +msgid "Followed by <0>{0}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: serverCount - 1 +#: src/components/KnownFollowers.tsx:219 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#: src/components/KnownFollowers.tsx:206 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#. placeholder {2}: serverCount - 2 +#: src/components/KnownFollowers.tsx:189 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:355 +msgid "Followers can join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:247 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:98 +#: src/screens/Profile/KnownFollowers.tsx:115 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:539 +#: src/components/ProfileHoverCard/index.web.tsx:494 +#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 +#: src/screens/VideoFeed/index.tsx:935 +#: src/view/com/notifications/NotificationFeedItem.tsx:842 +#: src/view/com/notifications/NotificationFeedItem.tsx:859 +msgid "Following" +msgstr "" + +#: src/screens/SavedFeeds.tsx:618 +#: src/view/screens/Feeds.tsx:596 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:500 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:791 +msgid "Following {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:66 +msgid "Following {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:915 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:78 +#: src/screens/Settings/ContentAndMediaSettings.tsx:81 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:369 +#: src/screens/Settings/FollowingFeedPreferences.tsx:57 +msgid "Following Feed Preferences" +msgstr "" + +#: src/components/Pills.tsx:213 +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:126 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:146 +msgid "Font size" +msgstr "" + +#: src/lib/interests.ts:61 +msgid "Food" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:106 +msgid "For organizational accounts, use the birthdate of the person who is responsible for the account." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:186 +msgid "For security reasons, we’ll need to send a confirmation code to your email address <0>{currentEmail}." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:208 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:128 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:131 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:187 +#: src/components/dialogs/MutedWords.tsx:572 +#: src/components/dialogs/MutedWords.tsx:575 +msgid "Forever" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 +msgid "Forget the noise" +msgstr "" + +#: src/screens/Login/index.tsx:176 +#: src/screens/Login/index.tsx:192 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:421 +#: src/screens/Login/LoginForm.tsx:428 +msgid "Forgot password?" +msgstr "" + +#. This is alt text for a marketing image which transcribes English text that appears in the image +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:153 +msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 +msgid "Free your feed" +msgstr "" + +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:123 +msgid "From {sanitizedAuthor}" +msgstr "" + +#: src/screens/Hashtag.tsx:124 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:48 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 +msgid "From these people" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +msgid "Generate a starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:277 +#: src/screens/Messages/components/InviteLinkDialog.tsx:305 +msgid "Generate invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 +msgid "Generate new invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 +msgid "Generate new link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:86 +#: src/screens/Profile/components/GermButton.tsx:225 +msgid "Germ DM" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:183 +msgid "Germ DM disconnected" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 +msgid "Germ DM Link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:160 +msgid "Germ DM reconnected" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:132 +msgid "Get early access to experimental features we’re testing." +msgstr "" + +#: src/view/shell/Drawer.tsx:431 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:389 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:316 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:366 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:340 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:348 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:332 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:357 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:375 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:33 +msgid "Get notifications when people send you message requests." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:23 +msgid "Get notifications when people send you messages." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:89 +#: src/components/activity-notifications/SubscribeProfileButton.tsx:90 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:233 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:84 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:219 +#: src/screens/Messages/components/InviteLinkDialog.tsx:226 +msgid "Get started" +msgstr "" + +#: src/components/MediaPreview.tsx:182 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:93 +msgid "GIF" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2702 +msgid "GIF uploaded" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:256 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:142 +msgid "Glorification of violence" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:127 +#: src/components/dialogs/LinkWarning.tsx:133 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 +#: src/screens/Login/components/AuthLayout/Header/index.tsx:74 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 +#: src/screens/ProfileList/components/ErrorScreen.tsx:35 +#: src/screens/ProfileList/components/ErrorScreen.tsx:41 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 +#: src/view/com/auth/LoggedOut.tsx:127 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:72 +#: src/screens/List/ListHiddenScreen.tsx:228 +#: src/screens/Profile/ErrorState.tsx:63 +#: src/screens/Profile/ErrorState.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:807 +msgid "Go Back" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:97 +#: src/screens/Onboarding/Layout.tsx:198 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "" + +#: src/screens/Bookmarks.tsx:296 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/view/com/profile/ProfileMenu.tsx:386 +msgid "Go live" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:106 +#: src/features/liveNow/components/GoLiveDialog.tsx:111 +#: src/features/liveNow/components/GoLiveDialog.tsx:239 +#: src/features/liveNow/components/GoLiveDialog.tsx:248 +msgid "Go Live" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:382 +msgid "Go live (disabled)" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:181 +msgid "Go live for" +msgstr "" + +#. placeholder {0}: name.displayName +#: src/screens/PostThread/components/LikesStat.tsx:146 +msgid "Go to {0}'s profile" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:256 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:93 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:73 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:82 +#: src/screens/Moderation/index.tsx:237 +msgid "Go to account settings" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Messages/components/ChatListItem.tsx:155 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:39 +msgid "Go to feed" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:168 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:194 +#: src/view/shell/desktop/LeftNav.tsx:336 +#: src/view/shell/desktop/LeftNav.tsx:342 +msgid "Go to profile" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:211 +msgid "Go to the group chat named \"{chatName}\"" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:258 +msgid "Go to user's profile" +msgstr "" + +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 +msgid "Go to user’s profile" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 +msgid "Going live is currently disabled for your account" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:121 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:126 +#: src/screens/Profile/components/GermButton.tsx:253 +#: src/screens/Profile/components/GermButton.tsx:258 +msgid "Got it" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:197 +#: src/view/com/composer/labels/LabelsBtn.tsx:200 +msgid "Graphic Media" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:138 +msgid "Graphic violent content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:169 +msgid "Grooming or predatory behavior" +msgstr "" + +#: src/components/dms/ChatInvite/Card.tsx:51 +#: src/components/intents/GroupChatJoinDialog.tsx:333 +#: src/screens/Messages/JoinRequest.tsx:125 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 +msgid "Group chat invite link dialog" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgctxt "toast" +msgid "Group chat locked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:389 +msgctxt "toast" +msgid "Group chat muted" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:376 +msgctxt "toast" +msgid "Group chat name updated" +msgstr "" + +#: src/Navigation.tsx:514 +#: src/screens/Messages/ConversationSettings/index.tsx:113 +msgid "Group chat settings" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:427 +msgctxt "toast" +msgid "Group chat unlocked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:392 +msgctxt "toast" +msgid "Group chat unmuted" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" + +#: src/screens/Messages/Settings.tsx:212 +msgid "Group chats are only available to users 18 and over." +msgstr "" + +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:205 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 +msgid "Group is locked" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 +#: src/screens/Messages/ConversationSettings/prompts.tsx:50 +msgid "Group name" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:730 +#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 +msgid "Hacking or system attacks" +msgstr "" + +#: src/state/shell/progress-guide.tsx:221 +#: src/state/shell/progress-guide.tsx:231 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:133 +#: src/screens/Settings/AccountSettings.tsx:138 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:609 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:197 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:613 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/components/FeedCard.tsx:156 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 +msgid "Happening now" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to happy/joyful GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:65 +msgid "Happy GIFs" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:86 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +msgid "Harassment or hate" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:189 +msgid "Harmful or high-risk activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:162 +msgid "Harming or endangering minors" +msgstr "" + +#: src/Navigation.tsx:498 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111 +msgid "Hate speech" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:323 +msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." +msgstr "" + +#: src/screens/Signup/index.tsx:246 +msgid "Having trouble?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:290 +msgid "Held by Bluesky for 7 days to prevent abuse, then deleted" +msgstr "" + +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:260 +#: src/view/shell/desktop/RightNav.tsx:130 +#: src/view/shell/desktop/RightNav.tsx:133 +#: src/view/shell/Drawer.tsx:440 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:259 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:74 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:120 +msgid "Hey there 👋" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:171 +msgid "Hey there!" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:276 +msgid "Hi there!" +msgstr "" + +#: src/components/VideoPostCard.tsx:178 +#: src/components/VideoPostCard.tsx:462 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:714 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:133 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:140 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 +#: src/lib/moderation/useLabelBehaviorDescription.ts:18 +#: src/lib/moderation/useLabelBehaviorDescription.ts:23 +#: src/lib/moderation/useLabelBehaviorDescription.ts:28 +#: src/lib/moderation/useLabelBehaviorDescription.ts:33 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:956 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:124 +msgid "Hide customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Hide group chat updates" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:533 +msgid "Hide lists" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Hide password" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 +msgid "Hide this reply?" +msgstr "" + +#: src/components/Post/Translated/index.tsx:216 +#: src/components/Post/Translated/index.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 +msgid "Hide translation" +msgstr "" + +#: src/components/interstitials/Trending.tsx:125 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:137 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:947 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:88 +#: src/screens/Moderation/VerificationSettings.tsx:97 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:168 +#: src/components/moderation/PostHider.tsx:94 +msgid "Hides the content" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:76 +msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:122 +msgid "Hmm, it seems we weren't able to compute your level of access. Please try again." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:141 +msgid "Hmm, it seems your device was unable to share age information with us." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:125 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:113 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:119 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:116 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:110 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:61 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:32 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:447 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 +#: src/view/shell/bottom-bar/BottomBar.tsx:196 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:430 +msgid "Host:" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:138 +#: src/screens/Login/components/HostingProviderDialog.tsx:159 +#: src/screens/Login/ForgotPasswordForm.tsx:80 +#: src/screens/Login/LoginForm.tsx:659 +msgid "Hosting provider" +msgstr "" + +#. placeholder {0}: toNiceHostingUrl(state.pdsUrl) +#: src/screens/Login/LoginForm.tsx:655 +msgid "Hosting provider: {0}" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:657 +msgid "Hosting provider: Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:54 +msgid "How it works:" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:63 +#: src/components/dialogs/InAppBrowserConsent.tsx:67 +msgid "How should we open this link?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:279 +msgid "How we use your number:" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:150 +msgid "Human trafficking" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:267 +msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out." +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:134 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:137 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:292 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:298 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:55 +msgid "I understand" +msgstr "" + +#. placeholder {0}: currentAccount.handle +#: src/components/contacts/screens/ViewMatches.tsx:578 +msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:246 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:235 +msgid "If none are selected, all languages will be shown in your feeds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:103 +msgid "If you are 18 years of age or older and want to try again, click the button below and use a different verification method if one is available in your region. If you have questions or concerns, <0>our support team can help." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:340 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:116 +msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:272 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:274 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:60 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 +#: src/view/screens/Storybook/Admonitions.tsx:90 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:210 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/images/ImageLayoutGridItem.tsx:91 +msgid "Image" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:457 +msgid "Image {0}" +msgstr "" + +#. placeholder {0}: index + 1 +#. placeholder {1}: imgs.length +#: src/components/Lightbox/Lightbox.web.tsx:261 +msgid "Image {0} of {1}" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:442 +msgid "Image {0} of {imageCount}" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:74 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#. placeholder {0}: i18n.number( Math.abs(sizeDiffBytes / 1024 / 1024), { notation: 'compact', style: 'unit', unit: 'megabyte', }, ) +#: src/screens/Settings/AboutSettings.tsx:60 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#. placeholder {0}: images.length +#: src/components/images/Gallery/index.tsx:274 +msgid "Image gallery, {0} images" +msgstr "" + +#. Image has been moderated and user has the option of showing it temporarily +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 +msgid "Image is hidden due to your moderation settings." +msgstr "" + +#. Image has been moderated and is not visible to the user +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 +msgid "Image is unavailable." +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:72 +#: src/components/Lightbox/Lightbox.web.tsx:265 +#: src/components/Lightbox/Lightbox.web.tsx:273 +msgid "Image options" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/lib/media/save-image.ios.ts:25 +#: src/lib/media/save-image.ts:29 +msgid "Image saved" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:82 +msgid "Image viewer" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:51 +msgid "Impersonation" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 +msgid "Import contacts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 +msgid "Import Contacts" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:33 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 +msgid "Import contacts to find your friends" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) +#: src/screens/Settings/FindContactsSettings.tsx:535 +msgid "Imported on {0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:279 +msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:30 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:21 +msgid "In-app, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:25 +msgid "In-app, people you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:29 +msgid "In-app, push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:20 +msgid "In-app, push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:24 +msgid "In-app, push, people you follow" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:437 +msgid "Inbox empty" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:219 +msgid "Inbox zero!" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Include" +msgstr "" + +#. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 +msgid "Include or exclude matching posts (currently: {0})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +msgid "Include posts and/or replies (currently: {currentLabel})" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 +msgid "Include posts made since this date" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 +msgid "Include posts made until this date" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 +msgid "Include these results" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:165 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:124 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:148 +msgid "Input new password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:456 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:269 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:33 +msgid "Introducing activity notifications" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:49 +msgid "Introducing drafts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:56 +msgid "Introducing finding friends via contacts" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 +msgid "Introducing saved posts AKA bookmarks" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:71 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:157 +msgid "Invalid group chat code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:615 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 +msgctxt "toast" +msgid "Invalid interaction settings." +msgstr "" + +#: src/components/contacts/phone-number.ts:33 +#: src/components/contacts/screens/PhoneInput.tsx:142 +msgid "Invalid phone number" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:100 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:200 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:86 +msgid "Invalid Verification Code" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:587 +msgid "Invite" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:567 +msgid "Invite {name} to join Bluesky" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:193 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:347 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:42 +#: src/components/contacts/components/InviteInfo.tsx:44 +msgid "Invite Friends" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:301 +msgid "Invite friends <0/>" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:193 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +#: src/screens/Messages/components/InviteLinkDialog.tsx:335 +#: src/screens/Messages/components/InviteLinkDialog.tsx:514 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 +#: src/screens/Messages/ConversationSettings/index.tsx:557 +msgid "Invite link" +msgstr "" + +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:214 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:127 +msgid "Invite link copied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:120 +msgid "Invite link created" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:138 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +msgid "Invite link disabled" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:126 +msgid "Invite link edited" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:132 +msgid "Invite link enabled" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:83 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:37 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Invited" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invites, but personal" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:47 +msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:373 +msgid "It's correct" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:483 +msgid "It's just <0>{0} right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:478 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#. placeholder {0}: videoState.jobId +#: src/view/com/composer/Composer.tsx:2617 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:181 +msgid "Jobs" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +msgid "Join" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:488 +msgid "Join Bluesky" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:72 +#: src/components/intents/GroupChatJoinDialog.tsx:464 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:189 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:72 +#: src/view/shell/NavSignupCard.tsx:41 +msgid "Join the conversation" +msgstr "" + +#: src/lib/interests.ts:63 +msgid "Journalism" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 +#: src/view/com/composer/drafts/DraftsButton.tsx:135 +msgid "Keep editing" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:230 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 +msgid "KWS website" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName(desc.source!) +#: src/components/moderation/ContentHider.tsx:245 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:243 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:70 +#: src/view/screens/Profile.tsx:234 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:68 +msgid "Labels added" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "Labels applied to this post" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:195 +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:76 +msgid "Labels on your account" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 +msgid "Language" +msgstr "" + +#: src/Navigation.tsx:220 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +#: src/screens/Settings/Settings.tsx:240 +#: src/screens/Settings/Settings.tsx:243 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:158 +msgid "Larger" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:443 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:179 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:441 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:177 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:97 +#: src/screens/Search/SearchResults.tsx:95 +#: src/screens/Topic.tsx:64 +msgid "Latest" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:168 +#: src/components/verification/VerifierDialog.tsx:136 +#: src/screens/Moderation/VerificationSettings.tsx:50 +#: src/screens/Profile/Header/EditProfileDialog.tsx:346 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:215 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:279 +msgctxt "english-only-resource" +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:143 +msgid "Learn More" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:273 +msgctxt "english-only-resource" +msgid "Learn more about <0>how to use advanced search." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:169 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:33 +msgid "Learn more about how inviting friends works" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:303 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 +#: src/screens/Settings/FindContactsSettings.tsx:140 +msgctxt "english-only-resource" +msgid "Learn more about importing contacts" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:220 +#: src/screens/Login/components/HostingProviderDialog.tsx:241 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:150 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:90 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:116 +#: src/components/moderation/ScreenHider.tsx:132 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:153 +#: src/components/verification/VerifierDialog.tsx:122 +msgctxt "english-only-resource" +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:212 +msgid "Learn more about your Germ DM link" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:222 +#: src/components/moderation/ContentHider.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:243 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:591 +msgid "Leave" +msgstr "" + +#. Leave a conversation (reject a chat invitation) +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 +msgctxt "Button" +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:109 +#: src/components/dms/MessagesListBlockedFooter.tsx:116 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 +#: src/screens/Messages/components/ChatEnded.tsx:66 +#: src/screens/Messages/components/ChatLocked.tsx:112 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:229 +#: src/components/dms/AfterReportConversationDialog.tsx:233 +#: src/components/dms/ConvoMenu.tsx:236 +#: src/components/dms/ConvoMenu.tsx:240 +#: src/components/dms/ConvoMenu.tsx:308 +#: src/components/dms/ConvoMenu.tsx:312 +#: src/components/dms/LeaveConvoPrompt.tsx:53 +msgid "Leave conversation" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:130 +#: src/screens/Messages/ConversationSettings/prompts.tsx:154 +msgid "Leave group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:590 +msgid "Leave this group chat" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:83 +#: src/components/dialogs/LinkWarning.tsx:91 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:153 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:274 +msgid "Left group chat." +msgstr "" + +#: src/screens/SignupQueued.tsx:158 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:177 +#: src/screens/Login/index.tsx:193 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:337 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:159 +#: src/components/dialogs/Embed.tsx:161 +#: src/screens/Settings/AppearanceSettings.tsx:87 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:284 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:108 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:217 +#: src/state/shell/progress-guide.tsx:222 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:149 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:31 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:22 +#: src/view/screens/ProfileFeedLikedBy.tsx:22 +msgid "Liked By" +msgstr "" + +#. placeholder {0}: count || 0 +#. placeholder {0}: feed.likeCount || 0 +#: src/components/FeedCard.tsx:249 +#: src/view/com/feeds/FeedSourceCard.tsx:173 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:158 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:200 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 +msgid "Likes of your reposts" +msgstr "" + +#: src/screens/PostThread/components/LikesStat.tsx:39 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:49 +#: src/screens/PostThread/components/HeaderDropdown.tsx:54 +msgid "Linear" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:300 +msgid "Link copied to clipboard" +msgstr "" + +#: src/Navigation.tsx:253 +msgid "List" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:397 +msgid "List avatar" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:48 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#: src/components/ListCard.tsx:153 +#: src/view/com/feeds/FeedSourceCard.tsx:153 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:145 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:143 +msgid "List by you" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:127 +msgid "List created, but failed to add some members" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:155 +msgid "List creator" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:446 +msgid "List description" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:466 +msgid "List description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:133 +msgid "List has been hidden" +msgstr "" + +#: src/screens/ProfileList/index.tsx:175 +msgid "List Hidden" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:438 +msgid "List must have a name." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:33 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:410 +msgid "List name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:430 +msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:115 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:130 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:101 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:116 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:174 +#: src/view/screens/Lists.tsx:60 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 +msgid "Lists" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Lists allow you to see content from your favorite people." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:38 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/features/liveNow/components/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#. placeholder {0}: feed.title +#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:54 +msgid "Live event happening now: {0}" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 +msgid "Live event hidden" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 +msgid "Live event unhidden" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 +msgid "Live feature is in beta" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:142 +#: src/features/liveNow/components/EditLiveDialog.tsx:146 +#: src/features/liveNow/components/GoLiveDialog.tsx:137 +#: src/features/liveNow/components/GoLiveDialog.tsx:141 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:87 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:271 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 +#: src/screens/ProfileList/FeedSection.tsx:113 +#: src/view/com/feeds/FeedPage.tsx:168 +msgid "Load new posts" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:254 +msgctxt "placeholder" +msgid "Loading chat…" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 +msgid "Loading lists..." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:279 +msgid "Loading post interaction settings..." +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +msgid "Loading..." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Lock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:107 +msgid "Lock group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:105 +msgid "Lock group chat?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:569 +msgid "Lock this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Locked" +msgstr "" + +#: src/Navigation.tsx:328 +msgid "Log" +msgstr "" + +#: src/components/AccountList.tsx:189 +msgid "Logged out" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:142 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:139 +#: src/view/shell/Drawer.tsx:768 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:55 +msgid "Long press to open tag menu for {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:114 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:44 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:84 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:36 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection. +#: src/features/gifPicker/components/GifCategoryPills.tsx:55 +msgid "Love GIFs" +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:39 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:101 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:65 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:339 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:111 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:173 +#: src/screens/Login/components/HostingProviderDialog.tsx:174 +msgid "Manual" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:312 +#: src/screens/Messages/Inbox.tsx:318 +msgid "Mark all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 +#: src/view/shell/bottom-bar/BottomBar.tsx:465 +#: src/view/shell/bottom-bar/BottomBar.tsx:469 +msgid "Mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 +#: src/view/shell/bottom-bar/BottomBar.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:477 +msgid "Mark all requests as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:299 +msgid "Marked all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:633 +#: src/view/shell/bottom-bar/BottomBar.tsx:444 +msgid "Marked all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:642 +#: src/view/shell/bottom-bar/BottomBar.tsx:453 +msgid "Marked all requests as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +msgid "Maybe later" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 +#: src/view/screens/Profile.tsx:238 +msgid "Media" +msgstr "" + +#. Example: "Media stored on John's iPhone" +#. placeholder {0}: draft.draft.deviceName +#: src/view/com/composer/drafts/DraftItem.tsx:119 +msgid "Media stored on {0}" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:117 +msgid "Media stored on another device" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:206 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:300 +msgid "Member removed from group chat." +msgstr "" + +#. The heading above the list of chat members. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +msgid "Members" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:106 +msgid "Members can still read chat history but can’t send new messages." +msgstr "" + +#: src/components/WhoCanReply.tsx:320 +msgid "mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:179 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 +#: src/view/screens/Notifications.tsx:99 +msgid "Mentions" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 +msgid "Mentions of these people" +msgstr "" + +#: src/components/Menu/index.tsx:119 +msgid "Menu" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 +msgctxt "action" +msgid "Message" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:255 +msgctxt "description" +msgid "Message" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/components/dms/MessageProfileButton.tsx:99 +msgid "Message {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +msgid "Message {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:322 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:111 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageItem.tsx:637 +msgid "Message failed to send." +msgstr "" + +#. placeholder {0}: sender?.handle ?? 'unknown' +#. placeholder {1}: message.text +#: src/components/dms/MessageContextMenu.tsx:166 +msgid "Message from @{0}: {1}" +msgstr "" + +#. placeholder {0}: rawError.message +#: src/view/com/posts/PostFeedErrorMessage.tsx:209 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:251 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:116 +msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:165 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:779 +msgid "Messages" +msgstr "" + +#: src/components/dms/MessageItem.tsx:736 +msgid "Messages from this person are hidden while they are blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:731 +msgid "Messages from this person are hidden while you are blocking them." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:177 +msgid "Minor harassment or bullying" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 +msgid "Misleading" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:131 +msgid "Missing media" +msgstr "" + +#: src/Navigation.tsx:179 +#: src/screens/Moderation/index.tsx:100 +msgid "Moderation" +msgstr "" + +#: src/screens/Settings/Settings.tsx:190 +#: src/screens/Settings/Settings.tsx:193 +msgid "Moderation and content filters" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:175 +msgid "Moderation details" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:311 +#: src/components/ListCard.tsx:152 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:309 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +msgid "Moderation list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:256 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:242 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:299 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:184 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:257 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:313 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:253 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:48 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:106 +#: src/view/shell/desktop/Feeds.tsx:153 +msgid "More feeds" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:125 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:128 +msgid "More languages..." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 +#: src/view/com/composer/drafts/DraftItem.tsx:190 +#: src/view/com/profile/ProfileMenu.tsx:251 +#: src/view/com/profile/ProfileMenu.tsx:258 +msgid "More options" +msgstr "" + +#: src/screens/SavedFeeds.tsx:488 +msgid "Move feed down" +msgstr "" + +#: src/screens/SavedFeeds.tsx:478 +msgid "Move feed up" +msgstr "" + +#: src/lib/interests.ts:64 +msgid "Movies" +msgstr "" + +#: src/lib/interests.ts:65 +msgid "Music" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Mute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:184 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97 +msgctxt "video" +msgid "Mute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:154 +#: src/components/RichTextTag.tsx:170 +msgid "Mute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 +#: src/view/com/profile/ProfileMenu.tsx:443 +#: src/view/com/profile/ProfileMenu.tsx:450 +msgid "Mute account" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:83 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:86 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:262 +msgid "Mute in:" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:109 +msgid "Mute list" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:104 +msgid "Mute these accounts?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:534 +msgid "Mute this group chat" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:194 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:233 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:218 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:267 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:283 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:179 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 +msgid "Mute words & tags" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Muted" +msgstr "" + +#: src/screens/Moderation/index.tsx:314 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:189 +#: src/view/screens/ModerationMutedAccounts.tsx:107 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:193 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:284 +msgid "Muted words & tags" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:106 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:54 +#: src/components/dialogs/BirthDateSettings.tsx:58 +msgid "My birthdate" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:77 +msgid "My favorite feeds and people - join me!" +msgstr "" + +#: src/view/screens/Feeds.tsx:697 +msgid "My Feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "My starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:416 +msgid "Name" +msgstr "" + +#: src/lib/interests.ts:66 +msgid "Nature" +msgstr "" + +#. placeholder {0}: record.name +#. placeholder {0}: view.record.name +#: src/components/StarterPack/StarterPackCard.tsx:134 +#: src/components/StarterPack/StarterPackCard.tsx:169 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:135 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:144 +#: src/screens/Login/ForgotPasswordForm.tsx:169 +#: src/screens/Login/LoginForm.tsx:555 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:92 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:342 +#: src/components/moderation/ReportDialog/index.tsx:358 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:585 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:398 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:71 +#: src/view/screens/ModerationModlists.tsx:72 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 +msgctxt "nux-description" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:569 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:552 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 +#: src/screens/Messages/ChatList.tsx:232 +#: src/screens/Messages/ChatList.tsx:455 +#: src/screens/Messages/ChatList.tsx:456 +#: src/screens/Messages/ChatList.tsx:580 +msgid "New chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +msgid "New chat with {0}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +msgid "New chat with {0} and {1}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73 +msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:75 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:74 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:85 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:65 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:129 +msgid "New Feature" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:193 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 +msgid "New followers" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 +msgid "New group chat" +msgstr "" + +#. Button used to create a new group chat. +#. Button used to create a new group chat. +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:332 +msgid "New group chat with:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:228 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:236 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:387 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:64 +#: src/view/screens/ModerationModlists.tsx:64 +msgid "New list" +msgstr "" + +#: src/screens/Messages/Settings.tsx:289 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:281 +msgid "New message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:268 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 +#: src/screens/Settings/NotificationSettings/index.tsx:264 +msgid "New messages" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:130 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:204 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:208 +msgid "New password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:218 +#: src/screens/ProfileList/index.tsx:237 +#: src/screens/ProfileList/index.tsx:280 +#: src/view/screens/Feeds.tsx:545 +#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Profile.tsx:607 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:179 +#: src/view/shell/desktop/LeftNav.tsx:598 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:558 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:543 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:202 +msgid "New starter pack" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:569 +msgid "New to Bluesky? <0>Sign up" +msgstr "" + +#: src/components/NewskieDialog.tsx:122 +msgid "New user info dialog" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:95 +#: src/screens/PostThread/components/HeaderDropdown.tsx:100 +#: src/screens/Settings/ThreadPreferences.tsx:73 +#: src/screens/Settings/ThreadPreferences.tsx:76 +msgid "Newest replies first" +msgstr "" + +#: src/lib/interests.ts:67 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 +msgid "News" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:410 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:599 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/ForgotPasswordForm.tsx:150 +#: src/screens/Login/SetNewPasswordForm.tsx:171 +#: src/screens/Login/SetNewPasswordForm.tsx:177 +#: src/screens/Onboarding/StepFinished/index.tsx:330 +#: src/screens/Onboarding/StepFinished/index.tsx:339 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:198 +#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:384 +#: src/screens/StarterPack/Wizard/index.tsx:391 +msgid "Next" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:218 +msgid "Next image" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:33 +msgid "Night" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 +msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:177 +msgid "No beta features at the moment." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:681 +msgid "No contacts found" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:659 +msgid "No contacts with the name “{query}” found" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:161 +msgid "No custom feeds yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:410 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:412 +msgid "No DNS Panel" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:143 +msgid "No drafts yet" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:134 +msgid "No expiry set" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:122 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:216 +msgid "No followers yet" +msgstr "" + +#. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the user’s search query. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25 +msgid "No GIFs found for \"{query}\"." +msgstr "" + +#. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue). +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36 +msgid "No GIFs to show right now. Try again in a moment." +msgstr "" + +#: src/features/liveNow/components/LinkPreview.tsx:64 +msgid "No image" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +#: src/view/screens/Profile.tsx:539 +msgid "No likes yet" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:160 +msgid "No lists" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:523 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/notifications/NotificationFeedItem.tsx:813 +msgid "No longer following {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:485 +msgid "No media yet" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:310 +msgid "No messages yet" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 +msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:563 +msgid "No name" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:125 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:104 +msgctxt "allow group chat invites from" +msgid "No one" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +msgctxt "allow messages from" +msgid "No one" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:130 +#: src/screens/Settings/ActivityPrivacySettings.tsx:135 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgctxt "enable for" +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "No one can send messages" +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:43 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 +msgid "No posts yet" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:114 +msgid "No quotes yet" +msgstr "" + +#. Empty-state message shown in the GIF picker’s Recents tab before the user has selected any GIFs. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:31 +msgid "No recent GIFs yet. Pick one to see it here." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "No replies" +msgstr "" + +#: src/view/screens/Profile.tsx:470 +msgid "No replies yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:192 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:250 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:469 +#: src/components/ProgressGuide/FollowDialog.tsx:221 +msgid "No results" +msgstr "" + +#. placeholder {0}: interestsDisplayNames[selectedInterest] +#: src/screens/Search/Explore.tsx:817 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:466 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:233 +msgid "No results found for “<0>{query}” with advanced search filters applied." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:245 +msgid "No results found for “<0>{query}”." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:239 +msgid "No results found for your query with advanced search filters applied." +msgstr "" + +#: src/screens/Search/Explore.tsx:821 +msgid "No results." +msgstr "" + +#: src/view/screens/Profile.tsx:571 +msgid "No Starter Packs yet" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +#: src/components/dialogs/EmbedConsent.tsx:107 +msgid "No thanks" +msgstr "" + +#: src/lib/translation/index.tsx:308 +msgid "No translation received from your device." +msgstr "" + +#: src/view/screens/Profile.tsx:512 +msgid "No video posts yet" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:471 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:116 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:107 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:80 +msgid "Non-consensual intimate imagery" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 +msgid "None of these words" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:62 +#: src/screens/Settings/FindContactsSettings.tsx:106 +msgid "Not available on this platform." +msgstr "" + +#: src/components/KnownFollowers.tsx:254 +msgid "Not followed by anyone you’re following" +msgstr "" + +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 +msgid "Not Found" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131 +msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:546 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:292 +msgid "Nothing saved yet" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:72 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 +#: src/view/screens/Notifications.tsx:134 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:305 +#: src/screens/Messages/Settings.tsx:318 +msgid "Notification sounds" +msgstr "" + +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 +#: src/screens/Messages/Settings.tsx:255 +#: src/screens/Notifications/ActivityList.tsx:31 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 +#: src/screens/Settings/Settings.tsx:198 +#: src/screens/Settings/Settings.tsx:201 +#: src/view/screens/Notifications.tsx:128 +#: src/view/shell/bottom-bar/BottomBar.tsx:279 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 +msgid "Notifications" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 +msgid "Nudity" +msgstr "" + +#: src/components/contacts/phone-number.ts:43 +msgid "Number should be a mobile number" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:14 +#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:34 +msgid "Off" +msgstr "" + +#. Title of the error screen shown when the GIF picker crashes unexpectedly. +#: src/components/dialogs/LanguageSelectDialog.tsx:347 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:22 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#. Confirm button text. +#: src/components/contacts/screens/GetContacts.tsx:317 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:46 +#: src/screens/Settings/AppIconSettings/index.tsx:232 +msgid "OK" +msgstr "" + +#: src/components/BotAccountAlert.tsx:52 +#: src/components/BotAccountAlert.tsx:57 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 +#: src/screens/Login/PasswordUpdatedForm.tsx:35 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:85 +#: src/screens/PostThread/components/HeaderDropdown.tsx:90 +#: src/screens/Settings/ThreadPreferences.tsx:65 +#: src/screens/Settings/ThreadPreferences.tsx:68 +msgid "Oldest replies first" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:162 +msgid "On" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:86 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:405 +msgid "Onboarding reset" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:939 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:936 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "One or more of your selected files are not supported." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:446 +msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." +msgstr "" + +#: src/view/com/composer/Composer.tsx:742 +msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" +msgstr "" + +#: src/view/com/composer/Composer.tsx:946 +msgid "One or more videos is missing alt text." +msgstr "" + +#. placeholder {0}: settings.map((rule, i) => ( )) +#: src/components/WhoCanReply.tsx:283 +msgid "Only {0} can reply." +msgstr "" + +#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept +#. placeholder {0}: result.accepted.length +#. placeholder {1}: next.length +#. placeholder {2}: next.length +#: src/view/com/composer/Composer.tsx:235 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can reject join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:155 +msgid "Only followers can join this group chat." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:121 +#: src/screens/Settings/ActivityPrivacySettings.tsx:126 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:34 +msgid "Only image files are supported" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:218 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:306 +msgid "Only people the chat owner follows can join" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 +msgid "Only posts with media" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 +msgid "Only posts with videos" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 +msgid "Only replies" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:99 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +msgid "Oops, this profile doesn't exist. Try scanning another one." +msgstr "" + +#: src/components/Lists.tsx:184 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:108 +#: src/view/screens/Profile.tsx:133 +msgid "Oops!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 +msgid "Open advanced search options" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:308 +msgid "Open avatar creator" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:201 +msgid "Open camera" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 +msgid "Open chat member options for {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:490 +#: src/screens/Messages/components/ChatListItem.tsx:494 +msgid "Open conversation options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:69 +msgid "Open draft" +msgstr "" + +#: src/components/Layout/Header/index.tsx:168 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:213 +#: src/view/com/composer/Composer.tsx:2250 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:28 +msgid "Open full emoji list" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:75 +msgid "Open Germ DM" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:446 +msgid "Open group chat" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 +msgid "Open group chat settings" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:147 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:40 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:470 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:280 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:128 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:67 +msgid "Open post options menu" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 +msgid "Open profile" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "" + +#: src/components/BotAccountAlert.tsx:62 +#: src/components/BotAccountAlert.tsx:71 +msgid "Open settings" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:98 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:463 +#: src/screens/Settings/Settings.tsx:477 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:456 +msgid "Open system log" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Open this group chat" +msgstr "" + +#. placeholder {0}: feedInfo.displayName +#: src/view/shell/desktop/Feeds.tsx:185 +msgid "Opens {0} feed" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:645 +msgid "Opens a dialog to change the hosting provider you sign in to" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 +msgid "Opens a dialog to choose who can interact with this post" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:40 +msgid "Opens a list of color themes for the QR card" +msgstr "" + +#: src/screens/Log.tsx:74 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:45 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:134 +msgid "Opens change handle dialog" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:64 +msgid "Opens composer" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:202 +msgid "Opens device camera" +msgstr "" + +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:517 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:305 +#: src/view/com/auth/SplashScreen.tsx:91 +#: src/view/com/auth/SplashScreen.web.tsx:112 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:291 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/components/images/Gallery/index.tsx:458 +msgid "Opens full image" +msgstr "" + +#: src/screens/Settings/Settings.tsx:257 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:224 +msgid "Opens image picker" +msgstr "" + +#. placeholder {0}: link?.href ?? '' +#: src/components/dialogs/LinkWarning.tsx:113 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:603 +msgid "Opens live status dialog" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:200 +msgid "Opens post language settings" +msgstr "" + +#: src/components/dms/SystemMessageItem.tsx:61 +msgid "Opens profile" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "" + +#. Accessibility hint announced after the GIF picker button label, describing what activating it will do. +#: src/view/com/composer/photos/SelectGifBtn.tsx:45 +msgid "Opens the GIF picker dialog" +msgstr "" + +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:148 +msgid "Opens the post composer" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:70 +msgid "Opens this draft in the composer" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:621 +msgid "Opens this profile" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:308 +msgid "Options:" +msgstr "" + +#: src/screens/Deactivated.tsx:192 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:179 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:55 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:51 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:53 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:57 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242 +#: src/view/com/composer/labels/LabelsBtn.tsx:181 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:93 +msgid "Other account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:181 +msgid "Other child safety issue" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:208 +msgid "Other dangerous content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:119 +msgid "Other harassing or hateful content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +msgid "Other misleading content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:231 +msgid "Other network rule-breaking" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:92 +msgid "Other sexual violence content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:154 +msgid "Other violent content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:51 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:86 +#: src/components/dms/AfterReportConversationDialog.tsx:213 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:54 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:384 +msgid "Owner" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" + +#: src/components/Lists.tsx:204 +#: src/components/Lists.tsx:219 +#: src/view/screens/NotFound.tsx:34 +#: src/view/screens/NotFound.tsx:41 +msgid "Page not found" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:85 +msgid "Party GIFs" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:365 +#: src/screens/Login/LoginForm.tsx:372 +#: src/screens/Settings/AccountSettings.tsx:124 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:284 +#: src/screens/Signup/StepInfo/index.tsx:258 +msgid "Password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:70 +msgid "Password changed" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:125 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:206 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:22 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Pause GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 +msgid "Pause video" +msgstr "" + +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Search/SearchResults.tsx:107 +#: src/screens/StarterPack/StarterPackScreen.tsx:195 +msgid "People" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 +msgid "People {ownerName} follows can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 +msgid "People {ownerName} follows can request to join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:240 +msgid "People followed by @{0}" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:233 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:97 +msgctxt "allow group chat invites from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:82 +msgctxt "allow messages from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 +msgid "People I follow can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 +msgid "People I follow can request to join" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 +msgid "People you follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:524 +msgid "People you mention" +msgstr "" + +#: src/lib/media/save-image.ts:59 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Person toggle" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:60 +msgid "Personalize the message" +msgstr "" + +#: src/lib/interests.ts:68 +msgid "Pets" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:192 +#: src/components/contacts/screens/PhoneInput.tsx:204 +msgid "Phone number" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:304 +msgid "Phone number verified" +msgstr "" + +#: src/lib/interests.ts:69 +msgid "Photography" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:39 +msgid "Pick a color theme" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:165 +msgid "Pictures meant for adults." +msgstr "" + +#: src/components/FeedCard.tsx:364 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 +#: src/screens/SavedFeeds.tsx:559 +msgid "Pin feed" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:116 +msgid "Pinned" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/screens/SavedFeeds.tsx:146 +#: src/screens/SavedFeeds.tsx:337 +msgid "Pinned Feeds" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:77 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 +msgid "Play" +msgstr "" + +#. placeholder {0}: link.title +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Play GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:33 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:109 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:111 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:294 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/StepInfo/index.tsx:149 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:309 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/view/com/composer/state/video.ts:471 +msgid "Please confirm your email address to upload videos." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:102 +#: src/screens/Signup/StepInfo/index.tsx:139 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:56 +msgid "Please enter a password." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:120 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:134 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:89 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:145 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:66 +msgid "Please enter the code you received and the new password you would like to use." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/StepInfo/index.tsx:122 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:115 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:196 +msgid "Please enter your password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:190 +msgid "Please enter your username" +msgstr "" + +#. placeholder {0}: labeler ? sanitizeHandle(labeler.creator.handle, '@') : label.src +#: src/components/moderation/AppealForm.tsx:120 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:124 +msgid "Please explain why you think your Go Live access was incorrectly disabled." +msgstr "" + +#: src/components/FocusScope/index.tsx:91 +#: src/components/FocusScope/index.tsx:115 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:102 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:304 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:32 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:29 +msgid "Please select a reason for this report" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:54 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:107 +msgid "Please use the native app to import your contacts." +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:63 +msgid "Please use the native app to sync your contacts." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:29 +msgid "Please write your message below:" +msgstr "" + +#: src/lib/interests.ts:70 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +msgid "Porn" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1895 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/screens/PostThread/index.tsx:560 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 +msgid "Post a photo" +msgstr "" + +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 +msgid "Post a video" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1893 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1554 +msgid "Post anyway" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:189 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:116 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109 +#: src/screens/VideoFeed/index.tsx:551 +msgid "Post has been deleted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:127 +#: src/lib/moderation/useModerationCauseDescription.ts:107 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:130 +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:685 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:200 +#: src/screens/ModerationInteractionSettings/index.tsx:35 +msgid "Post Interaction Settings" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "" + +#. Accessibility label for button that opens dialog to choose post language settings +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:195 +msgid "Post language selection" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 +msgid "Post link" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:33 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 +#: src/screens/StarterPack/StarterPackScreen.tsx:197 +#: src/view/screens/Profile.tsx:236 +msgid "Posts" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +msgid "Posts and replies" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:123 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:76 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:89 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:82 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:292 +msgid "Preferred language" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:56 +#: src/components/Lists.tsx:104 +#: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:355 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:125 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 +msgid "Preview" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:197 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:141 +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Primary language" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:118 +#: src/view/shell/desktop/RightNav.tsx:119 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 +#: src/screens/Settings/ActivityPrivacySettings.tsx:41 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 +#: src/view/screens/Storybook/Admonitions.tsx:94 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 +#: src/Navigation.tsx:338 +#: src/screens/Settings/AboutSettings.tsx:102 +#: src/screens/Settings/AboutSettings.tsx:105 +#: src/view/screens/PrivacyPolicy.tsx:25 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 +msgid "Privacy Policy" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:173 +msgid "Privacy violation of a minor" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2691 +msgid "Processing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2693 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:62 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:956 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:322 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:164 +msgid "Profile banner placeholder" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 +#: src/lib/strings/errors.ts:39 +msgid "Profile not found" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:186 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:223 +msgid "Promoting or selling prohibited items or services" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:161 +msgid "Psst! You can edit who can interact with this post." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1879 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1874 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:1863 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1868 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:31 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:22 +msgid "Push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:26 +msgid "Push, people you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:143 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:121 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:101 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:176 +#: src/components/PostControls/RepostButton.tsx:199 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +#: src/view/com/composer/drafts/DraftItem.tsx:137 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:175 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:186 +#: src/screens/Post/PostQuotes.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:618 +msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:109 +msgid "Rate limit exceeded. Please try again later." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 +msgid "Re-attach quote" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 +msgid "Re-enable invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 +msgid "Re-enable link" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:80 +msgid "React with {emoji}" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:70 +#: src/components/dms/ReactionsDialog.tsx:98 +msgid "Reactions" +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "Reactivate your account" +msgstr "" + +#. placeholder {0}: item.moreReplies +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:93 +msgid "Read {0, plural, one {# more reply} other {# more replies}}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:276 +msgctxt "english-only-resource" +msgid "Read about how to use advanced search filters" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:72 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:113 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:174 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:53 +#: src/screens/Signup/StepInfo/Policies.tsx:79 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:46 +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/components/WelcomeModal.tsx:146 +msgid "Real conversations." +msgstr "" + +#: src/components/WelcomeModal.tsx:144 +msgid "Real people." +msgstr "" + +#: src/screens/Takendown.tsx:158 +#: src/screens/Takendown.tsx:166 +msgid "Reason for appeal" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +msgid "Receive push notifications" +msgstr "" + +#. Accessibility label for the icon-only pill that shows previously selected GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:35 +msgid "Recent GIFs" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:52 +msgid "Recent searches" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:249 +msgid "Recently used" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:136 +msgid "Reject" +msgstr "" + +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:424 +#: src/screens/Messages/Inbox.tsx:206 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:193 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:457 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:386 +#: src/components/FeedCard.tsx:376 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:106 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:113 +#: src/screens/Bookmarks.tsx:258 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:178 +#: src/screens/Moderation/index.tsx:477 +#: src/screens/Settings/Settings.tsx:683 +#: src/view/com/posts/PostFeedErrorMessage.tsx:221 +msgid "Remove" +msgstr "" + +#: src/components/dms/ChatProfileTabs.tsx:153 +msgid "Remove {displayName} from group chat" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:62 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 +msgid "Remove {displayName} from this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:176 +msgid "Remove {displayName}?" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:182 +msgid "Remove {q}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 +msgid "Remove account" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 +msgid "Remove all contacts" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 +msgid "Remove Banner" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:286 +msgid "Remove caption file" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:234 +#: src/screens/Messages/components/MessageInputEmbed.tsx:289 +#: src/screens/Messages/components/MessageInputEmbed.tsx:344 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:121 +#: src/view/com/posts/FeedShutdownMsg.tsx:125 +#: src/view/com/posts/PostFeedErrorMessage.tsx:177 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:218 +msgid "Remove feed?" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 +msgid "Remove filter" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 +msgid "Remove from chat" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 +#: src/screens/SavedFeeds.tsx:549 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:677 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:174 +#: src/screens/List/ListHiddenScreen.tsx:178 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:120 +#: src/screens/Bookmarks.tsx:252 +msgid "Remove from saved posts" +msgstr "" + +#: src/components/FeedCard.tsx:373 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:227 +msgid "Remove image" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:221 +#: src/features/liveNow/components/EditLiveDialog.tsx:228 +msgid "Remove live status" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 +msgid "Remove member" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:613 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:243 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:153 +#: src/components/PostControls/RepostButton.tsx:163 +msgid "Remove repost" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:500 +#: src/screens/Settings/FindContactsSettings.tsx:349 +msgid "Remove suggestion" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:219 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:473 +msgid "Remove unavailable moderation services" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:48 +#: src/components/verification/VerificationsDialog.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:416 +#: src/view/com/profile/ProfileMenu.tsx:419 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:240 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:238 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:136 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:246 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:98 +msgid "Removed from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:88 +#: src/screens/Bookmarks.tsx:211 +msgid "Removed from saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:287 +msgid "Removed from starter pack" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 +#: src/view/com/posts/FeedShutdownMsg.tsx:45 +msgid "Removed from your feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:187 +msgid "Removed unavailable services" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:541 +msgid "Renew" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:547 +msgid "Renew duration" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:531 +msgid "Renew mute word" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:134 +#: src/view/com/posts/FeedShutdownMsg.tsx:138 +msgid "Replace with Discover" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:39 +msgctxt "description" +msgid "Replied to <0><1/>" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:28 +msgctxt "description" +msgid "Replied to a blocked post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:30 +msgctxt "description" +msgid "Replied to a post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:36 +msgctxt "description" +msgid "Replied to you" +msgstr "" + +#: src/components/dms/MessageItem.tsx:926 +msgid "Replied-to message from {senderName}, tap to scroll to it" +msgstr "" + +#: src/components/dms/MessageItem.tsx:924 +msgid "Replied-to message was sent before you joined" +msgstr "" + +#: src/components/dms/MessageItem.tsx:927 +msgid "Replied-to message, tap to scroll to it" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 +#: src/lib/hooks/useNotificationHandler.ts:172 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:87 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:281 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:182 +#: src/components/dms/MessageContextMenu.tsx:185 +msgid "Reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1891 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#. placeholder {0}: post.replyCount || 0 +#: src/components/PostControls/index.tsx:240 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:136 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:135 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:71 +msgid "Reply sorting" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:220 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:583 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:483 +#: src/view/com/profile/ProfileMenu.tsx:486 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:295 +#: src/components/dms/ConvoMenu.tsx:299 +#: src/screens/Messages/components/RequestButtons.tsx:161 +#: src/screens/Messages/components/RequestButtons.tsx:164 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 +msgid "Report feed" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:210 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:213 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:217 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 +msgid "Report post" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:47 +msgid "Report sent" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:83 +#: src/components/dms/AfterReportConversationDialog.tsx:210 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 +msgid "Report submitted" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:51 +#: src/components/moderation/ReportDialog/copy.ts:65 +msgid "Report this conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +msgid "Report this feed" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:582 +msgid "Report this group chat" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +msgid "Report this list" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 +msgid "Report this livestream" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:57 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:43 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:154 +#: src/components/PostControls/RepostButton.tsx:165 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:78 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:146 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:577 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:31 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:97 +msgid "Reposted by {reposter}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:95 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:165 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:207 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 +msgid "Reposts of your reposts" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:463 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:226 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:232 +msgid "Request code" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request rejected." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:295 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + +#. Incoming message requests +#: src/screens/Messages/components/InboxRequests.tsx:25 +msgid "Requests" +msgstr "" + +#: src/Navigation.tsx:519 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:59 +#: src/screens/Settings/AccessibilitySettings.tsx:64 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:207 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:310 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:115 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:117 +msgid "Rescind request" +msgstr "" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 +msgid "Resend" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:365 +#: src/components/contacts/screens/VerifyNumber.tsx:382 +msgid "Resend code" +msgstr "" + +#. placeholder {0}: String( clamp(Math.round(timeUntilCanResend / 1000), 0, 30), ).padStart(2, '0') +#: src/components/contacts/screens/VerifyNumber.tsx:372 +msgid "Resend code in <0>00:{0}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:174 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:177 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:124 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:117 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:499 +#: src/screens/Settings/Settings.tsx:501 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "Reset code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:484 +#: src/screens/Settings/Settings.tsx:486 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:77 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:422 +msgid "Reset your password by sending a code to your email" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 +msgid "Resync contacts" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:532 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:56 +#: src/view/com/util/error/ErrorScreen.tsx:93 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:28 +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 +#: src/components/contacts/screens/VerifyNumber.tsx:350 +#: src/components/contacts/screens/VerifyNumber.tsx:355 +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:115 +#: src/components/moderation/ReportDialog/index.tsx:297 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 +#: src/screens/Login/LoginForm.tsx:531 +#: src/screens/Login/LoginForm.tsx:537 +#: src/screens/Messages/ChatList.tsx:429 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/JoinRequests.tsx:361 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:95 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/PostThread/components/ThreadError.tsx:87 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:91 +#: src/view/screens/Storybook/Admonitions.tsx:64 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:294 +#: src/view/screens/Storybook/Admonitions.tsx:61 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:68 +#: src/screens/List/ListHiddenScreen.tsx:223 +#: src/screens/StarterPack/StarterPackScreen.tsx:801 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to home page" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:36 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:577 +#: src/screens/VideoFeed/index.tsx:1240 +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:316 +msgid "Returns to the previous step" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Reveal password" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:75 +msgid "Sad GIFs" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:309 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 +#: src/components/StarterPack/QrCodeDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:197 +#: src/features/liveNow/components/EditLiveDialog.tsx:204 +#: src/screens/Messages/ConversationSettings/prompts.tsx:82 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Profile/Header/EditProfileDialog.tsx:247 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:315 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:269 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/GifAltText.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:63 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:76 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:173 +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:193 +msgid "Save birthdate" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:198 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:207 +#: src/screens/SavedFeeds.tsx:120 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:311 +#: src/screens/SavedFeeds.tsx:315 +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save changes" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1507 +#: src/view/com/composer/drafts/DraftsButton.tsx:93 +msgid "Save changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save draft" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1509 +#: src/view/com/composer/drafts/DraftsButton.tsx:95 +msgid "Save draft?" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/MediaPreview.tsx:231 +#: src/components/Post/Embed/ImageContextMenu.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:144 +#: src/components/StarterPack/ShareDialog.tsx:150 +msgid "Save image" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:255 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:202 +msgid "Save QR code" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:655 +msgid "Save these options for next time" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 +msgid "Save to my feeds" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 +msgctxt "link to bookmarks screen" +msgid "Saved" +msgstr "" + +#: src/screens/SavedFeeds.tsx:198 +#: src/screens/SavedFeeds.tsx:375 +msgid "Saved Feeds" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:579 +#: src/screens/Bookmarks.tsx:59 +msgid "Saved Posts" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/screens/ProfileList/components/Header.tsx:88 +msgid "Saved to your feeds" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +#: src/view/com/notifications/NotificationFeedItem.tsx:895 +#: src/view/com/notifications/NotificationFeedItem.tsx:920 +msgid "Say hello!" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 +msgid "Say hi to someone" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:43 +msgid "Scam" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:318 +msgid "Scan QR code" +msgstr "" + +#: src/lib/interests.ts:71 +msgid "Science" +msgstr "" + +#: src/components/InterestTabs.tsx:258 +msgid "Scroll left" +msgstr "" + +#: src/components/InterestTabs.tsx:292 +msgid "Scroll right" +msgstr "" + +#: src/components/dms/MessageItem.tsx:820 +msgid "Scroll to the message this is replying to" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:132 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:667 +#: src/components/forms/SearchInput.tsx:51 +#: src/components/forms/SearchInput.tsx:53 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 +#: src/screens/Search/Shell.tsx:753 +#: src/view/shell/bottom-bar/BottomBar.tsx:216 +msgid "Search" +msgstr "" + +#. placeholder {0}: profile.handle +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:259 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:708 +msgid "Search by name or interest" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:356 +msgid "Search contacts" +msgstr "" + +#: src/view/screens/Feeds.tsx:437 +msgid "Search feeds" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected. +#: src/components/ProgressGuide/FollowDialog.tsx:505 +msgid "Search for \"{interestsDisplayName}\"" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected. +#: src/components/ProgressGuide/FollowDialog.tsx:500 +msgid "Search for \"{interestsDisplayName}\" (active)" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:49 +msgid "Search for “{searchText}”" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:136 +msgid "Search for {q}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:452 +msgid "Search for more feeds" +msgstr "" + +#: src/components/dms/components/UserSearchInput.tsx:43 +msgid "Search for people" +msgstr "" + +#. Accessibility label for the GIF search input inside the GIF picker dialog. +#: src/features/gifPicker/components/GifPickerHeader.tsx:40 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Hashtag.tsx:228 +#: src/screens/Search/SearchResults.tsx:410 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#. Placeholder text inside the GIF search input. KLIPY is the third-party GIF provider; keep the brand name as-is. +#: src/features/gifPicker/components/GifPickerHeader.tsx:45 +msgid "Search KLIPY" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:232 +#: src/components/dialogs/LanguageSelectDialog.tsx:233 +msgid "Search languages" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:301 +#: src/view/com/profile/ProfileMenu.tsx:304 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:687 +#: src/components/dms/components/UserSearchInput.tsx:63 +#: src/components/ProgressGuide/FollowDialog.tsx:727 +msgid "Search profiles" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 +msgid "Search query" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:688 +#: src/components/dms/components/UserSearchInput.tsx:64 +#: src/components/ProgressGuide/FollowDialog.tsx:728 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 +msgid "Security step required" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:114 +msgid "See {0} posts" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:131 +msgid "See {0} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:122 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:142 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:179 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:491 +#: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:472 +msgid "See more suggested profiles" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 +msgid "See suggested accounts" +msgstr "" + +#: src/screens/SavedFeeds.tsx:232 +#: src/screens/SavedFeeds.tsx:403 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:196 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. +#: src/components/InterestTabs.tsx:340 +msgid "Select \"{interestsDisplayName}\" category" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#. Accessibility label for a username suggestion in the account creation flow +#. placeholder {0}: item.handle +#. placeholder {0}: suggestion.handle +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:40 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:72 +msgid "Select {0}" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:110 +msgid "Select {langName}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:380 +msgid "Select a reason" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:79 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:63 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:199 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:118 +msgid "Select app language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +msgid "Select caption file (.vtt)" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 +msgid "Select chat \"{name}\"" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:195 +#: src/screens/Settings/LanguageSettings.tsx:233 +msgid "Select content languages" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:186 +msgid "Select duration" +msgstr "" + +#. placeholder {0}: labels[filter.field].title +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 +msgid "Select filter type (currently: {0})" +msgstr "" + +#: src/screens/Login/index.tsx:166 +msgid "Select from an existing account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:553 +msgid "Select from your lists" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:555 +msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}" +msgstr "" + +#. Accessibility label for the button in the post composer that opens the GIF picker dialog. +#: src/view/com/composer/photos/SelectGifBtn.tsx:38 +msgid "Select GIF" +msgstr "" + +#. Accessibility label for an individual GIF tile in the picker grid. The placeholder is the GIF’s title from the provider. +#. placeholder {0}: gif.title +#: src/features/gifPicker/components/GifPickerItem.tsx:31 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:830 +msgid "Select group chat members" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:151 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:71 +#: src/components/LanguageSelect.tsx:41 +#: src/components/LanguageSelect.tsx:42 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:273 +msgid "Select language..." +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:267 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:430 +msgid "Select moderation service" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:91 +msgid "Select post language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:152 +msgid "Select primary language" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:68 +msgid "Select telephone code" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/Post/Translated/index.tsx:446 +msgid "Select the source language" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:77 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:137 +msgid "Select up to 3 languages used in this post" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:251 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:111 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:181 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:300 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:69 +#: src/screens/Settings/InterestsSettings.tsx:178 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:145 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:426 +msgid "Selecting multiple media types is not supported." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:188 +msgid "Self-harm or dangerous behaviors" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:255 +#: src/components/contacts/screens/PhoneInput.tsx:260 +msgid "Send code" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:199 +msgid "Send email" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:60 +#: src/components/SendErrorReportDialog.tsx:64 +#: src/screens/Settings/AboutSettings.tsx:125 +#: src/screens/Settings/AboutSettings.tsx:128 +msgid "Send error report" +msgstr "" + +#: src/view/shell/Drawer.tsx:420 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:324 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:146 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 +msgid "Send post to..." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:818 +msgid "Send report to {title}" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:63 +msgid "Send the message from your phone" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) +#: src/components/dms/MessageContextMenu.tsx:175 +msgid "Sent at {0}" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:283 +msgid "Sent to our phone number verification provider Plivo" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:174 +#: src/screens/Login/components/HostingProviderDialog.tsx:200 +msgid "Server address" +msgstr "" + +#. placeholder {0}: icon.name +#: src/screens/Settings/AppIconSettings/index.tsx:176 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:99 +msgid "Set new password" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:481 +msgid "Set precisely which groups of people can reply to your post" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:431 +msgid "Set who can reply to your post" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:286 +msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:352 +msgid "set your hosting provider manually" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:486 +msgid "Set your hosting provider manually" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:104 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:215 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:220 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:293 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:233 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Messages/Settings.tsx:280 +#: src/screens/Settings/NotificationSettings/index.tsx:276 +msgid "Settings for notifications for new message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:259 +#: src/screens/Settings/NotificationSettings/index.tsx:259 +msgid "Settings for notifications for new messages" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:246 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:198 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:209 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:103 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/Link.tsx:428 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/screens/Hashtag.tsx:130 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/StarterPack/StarterPackScreen.tsx:447 +#: src/screens/Topic.tsx:89 +msgid "Share" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:62 +msgid "Share age range" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:549 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 +msgid "Share author DID" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:158 +#: src/screens/Settings/BetaFeaturesSettings.tsx:165 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 +msgid "Share feedback" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 +msgid "Share image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:120 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/features/inviteFriends/components/ActionButtons.tsx:28 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:74 +msgid "Share link dialog" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 +msgid "Share post at:// URI" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:141 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:156 +msgid "Share Profile" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:129 +#: src/components/StarterPack/ShareDialog.tsx:139 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 +msgid "Share this feed" +msgstr "" + +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 +msgid "Share this search" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:440 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:86 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 +#: src/screens/StarterPack/StarterPackScreen.tsx:646 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:292 +msgid "Share via..." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:232 +msgid "Share your contacts to find friends" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 +msgid "Share your thoughts…" +msgstr "" + +#: src/Navigation.tsx:323 +msgid "Shared Preferences Tester" +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 +msgid "Sharing your age range reveals only the range associated with your Apple Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 +msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:140 +msgid "Show" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:48 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 +#: src/features/liveNow/components/LiveStatusDialog.tsx:318 +#: src/features/liveNow/components/LiveStatusDialog.tsx:322 +#: src/screens/List/ListHiddenScreen.tsx:194 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 +msgid "Show anyway" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 +msgid "Show automation label" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:64 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:125 +msgid "Show customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Show group chat updates" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:190 +msgid "Show list anyway" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:534 +msgid "Show lists of users to select from" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15 +msgid "Show more replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:99 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:108 +#: src/screens/Settings/FollowingFeedPreferences.tsx:118 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:72 +#: src/screens/Settings/FollowingFeedPreferences.tsx:82 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:45 +msgid "Show replies as" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:90 +#: src/screens/Settings/FollowingFeedPreferences.tsx:100 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:133 +#: src/screens/Settings/FollowingFeedPreferences.tsx:143 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:59 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 +msgid "Show when you’re live" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:124 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:169 +#: src/components/moderation/PostHider.tsx:94 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:98 +#: src/components/dialogs/Signin.tsx:100 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 +#: src/screens/Hashtag.tsx:231 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/index.tsx:165 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Login/LoginForm.tsx:554 +#: src/screens/Login/LoginForm.tsx:560 +#: src/screens/Messages/JoinRequest.tsx:290 +#: src/screens/Messages/JoinRequest.tsx:296 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBar.tsx:364 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255 +#: src/view/shell/NavSignupCard.tsx:58 +#: src/view/shell/NavSignupCard.tsx:63 +msgid "Sign in" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:135 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:84 +msgid "Sign in as…" +msgstr "" + +#: src/screens/Deactivated.tsx:195 +#: src/screens/Deactivated.tsx:201 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:76 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:216 +msgid "Sign in to accept invite." +msgstr "" + +#: src/components/AccountList.tsx:70 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:47 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Sign in to request access to this group chat." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:274 +#: src/screens/Settings/Settings.tsx:276 +#: src/screens/Settings/Settings.tsx:308 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:97 +#: src/screens/Takendown.tsx:88 +#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:282 +#: src/view/shell/desktop/LeftNav.tsx:285 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:91 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:305 +#: src/view/shell/desktop/LeftNav.tsx:224 +msgid "Sign out?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:572 +msgid "Sign up" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:96 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:42 +#: src/screens/Login/ChooseAccountForm.tsx:54 +msgid "Signed in as @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 +msgid "Since" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:163 +#: src/components/contacts/screens/VerifyNumber.tsx:205 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:86 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:90 +#: src/screens/Onboarding/StepFinished/index.tsx:295 +#: src/screens/Onboarding/StepFinished/index.tsx:317 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:281 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:105 +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Skip" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:160 +#: src/components/contacts/screens/VerifyNumber.tsx:202 +msgid "Skip contact sharing and continue to the app" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1552 +msgid "Skip empty posts?" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:288 +#: src/screens/Onboarding/StepFinished/index.tsx:314 +msgid "Skip introduction and start using your account" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:278 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 +msgid "Skip to next step" +msgstr "" + +#: src/components/images/Gallery/index.tsx:441 +msgid "slide" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Snoozes the reminder" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:155 +msgid "So many thoughts, you should post one" +msgstr "" + +#: src/components/WelcomeModal.tsx:148 +msgid "Social media you control." +msgstr "" + +#. Name for a feature flag +#: src/analytics/features/index.ts:84 +msgid "Social proofing on posts" +msgstr "" + +#: src/lib/interests.ts:58 +msgid "Software Dev" +msgstr "" + +#: src/screens/Moderation/index.tsx:466 +msgid "Some moderation services in your list are no longer available." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:122 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:628 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:88 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:86 +msgid "Someone joined" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:87 +msgid "Someone joined the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:99 +msgid "Someone left" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:100 +msgid "Someone left the group" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:368 +msgid "Someone reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:67 +msgid "Someone reacted {0} to {target}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:813 +msgid "Someone replied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:60 +msgid "Someone was added" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:61 +msgid "Someone was added to the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:73 +msgid "Someone was removed" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:74 +msgid "Someone was removed from the group" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:103 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 +#: src/components/moderation/ReportDialog/index.tsx:289 +#: src/screens/Deactivated.tsx:86 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +#: src/view/screens/Storybook/Admonitions.tsx:56 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/screens/Moderation/index.tsx:112 +#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Settings/BetaFeaturesSettings.tsx:80 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:185 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:28 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:247 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:231 +msgid "Sorry, we're unable to load account suggestions at this time." +msgstr "" + +#: src/App.tsx:139 +#: src/App.web.tsx:118 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:45 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:52 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:49 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:197 +#: src/components/moderation/ModerationDetailsDialog.tsx:272 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36 +msgid "Spam or other inauthentic behavior or deception" +msgstr "" + +#: src/lib/interests.ts:72 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 +msgid "Sports" +msgstr "" + +#. Description of a feature flag (Social proofing on posts) +#: src/analytics/features/index.ts:90 +msgid "Spot posts your friends and follows have liked." +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:192 +msgid "Start a new chat" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:104 +#: src/screens/ProfileList/FeedSection.tsx:82 +msgid "Start adding people" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:110 +#: src/screens/ProfileList/FeedSection.tsx:88 +msgid "Start adding people!" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:831 +msgid "Start chat" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:428 +#: src/components/dms/InitiateChatFlow.tsx:1087 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 +#: src/screens/StarterPack/Wizard/index.tsx:197 +msgid "Starter Pack" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#: src/components/StarterPack/StarterPackCard.tsx:91 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:765 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:105 +msgid "Starter packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/view/screens/Profile.tsx:569 +msgid "Starter Packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/AboutSettings.tsx:113 +msgid "Status Page" +msgstr "" + +#. placeholder {0}: state.activeStep + 1 +#. placeholder {0}: state.activeStepIndex + 1 +#. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' +#. placeholder {1}: state.totalSteps +#: src/screens/Onboarding/Layout.tsx:226 +#: src/screens/Signup/index.tsx:189 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:410 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:294 +msgid "Stored as part of a secure code for matching with others" +msgstr "" + +#: src/Navigation.tsx:308 +#: src/screens/Settings/Settings.tsx:465 +msgid "Storybook" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182 +msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:122 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128 +#: src/components/moderation/AppealForm.tsx:154 +#: src/components/moderation/AppealForm.tsx:155 +#: src/components/SendErrorReportDialog.tsx:90 +#: src/components/SendErrorReportDialog.tsx:95 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:133 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:80 +msgid "Submit Appeal" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 +msgid "Submit feedback" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:508 +#: src/components/moderation/ReportDialog/index.tsx:569 +#: src/components/moderation/ReportDialog/index.tsx:576 +msgid "Submit report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:75 +msgid "Subscribe" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:447 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:476 +msgid "Subscribe on {0}" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:475 +msgid "Subscribe to {publicationTitle} on {0}" +msgstr "" + +#. placeholder {0}: labelerInfo.creator.handle +#: src/screens/Profile/Sections/Labels.tsx:232 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:252 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:322 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:63 +msgid "Subscribe to this list" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:252 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:160 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 +msgid "Success!" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:131 +msgid "Successfully joined the group chat!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:37 +msgid "Successfully verified" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:432 +msgid "Suggested" +msgstr "" + +#: src/screens/Search/Explore.tsx:369 +msgid "Suggested accounts" +msgstr "" + +#. Accounts suggested to the user for them to follow +#: src/components/FeedInterstitials.tsx:469 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:143 +msgid "Suggestive" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Sunlight" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:333 +#: src/view/screens/Support.tsx:25 +#: src/view/screens/Support.tsx:28 +msgid "Support" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:236 +msgid "Support for this feature in your country has not been enabled yet! Please check back later." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 +msgid "Suspended accounts cannot participate in chat." +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:47 +#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:135 +#: src/screens/Settings/Settings.tsx:624 +#: src/view/shell/desktop/LeftNav.tsx:262 +msgid "Switch account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:124 +msgid "Switch accounts" +msgstr "" + +#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) +#: src/view/shell/desktop/LeftNav.tsx:364 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/components/dialogs/Embed.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 +msgid "System" +msgstr "" + +#: src/screens/Log.tsx:49 +#: src/screens/Settings/AboutSettings.tsx:117 +#: src/screens/Settings/AboutSettings.tsx:120 +#: src/screens/Settings/Settings.tsx:458 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:291 +msgid "Tags only" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:110 +msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." +msgstr "" + +#: src/components/dms/MessageItem.tsx:682 +msgid "Tap for details" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:90 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:45 +msgid "Tap for more information" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:326 +msgid "Tap here to update your location with GPS." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:159 +msgid "Tap to dismiss" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:469 +msgid "Tap to join this group chat immediately" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:200 +msgid "Tap to remove" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/ReactionsDialog.tsx:216 +msgid "Tap to remove your {0} reaction" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:468 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:647 +msgid "Tap to retry" +msgstr "" + +#. placeholder {0}: tab.value +#: src/components/dms/ReactionsDialog.tsx:362 +msgid "Tap to show {0} reactions" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:361 +msgid "Tap to show all reactions" +msgstr "" + +#: src/components/dms/MessageItem.tsx:394 +msgid "Tap to view reactions" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +msgid "Targeted harassment" +msgstr "" + +#: src/state/shell/progress-guide.tsx:236 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:226 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:109 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/lib/interests.ts:73 +msgid "Tech" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:368 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:70 +msgid "Tell us a little more" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:214 +msgid "Temporarily deactivate your account" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:125 +#: src/view/shell/desktop/RightNav.tsx:126 +msgid "Terms" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:181 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 +#: src/Navigation.tsx:343 +#: src/screens/Settings/AboutSettings.tsx:94 +#: src/screens/Settings/AboutSettings.tsx:97 +#: src/view/screens/TermsOfService.tsx:25 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 +msgid "Terms of Service" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:275 +msgid "Text & tags" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:118 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 +msgid "Thanks for your feedback!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:77 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:233 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:224 +msgid "Thanks! You're all set." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:500 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:116 +#: src/screens/StarterPack/StarterPackScreen.tsx:160 +#: src/screens/StarterPack/StarterPackScreen.tsx:161 +#: src/screens/StarterPack/Wizard/index.tsx:116 +#: src/screens/StarterPack/Wizard/index.tsx:126 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:90 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:142 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1212 +msgid "That's everything!" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:422 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:139 +#: src/lib/moderation/useModerationCauseDescription.ts:129 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:169 +msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you." +msgstr "" + +#: src/screens/Moderation/index.tsx:415 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:32 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:29 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:107 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:227 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:70 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:64 +msgid "The following labels were applied to this post." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:63 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:168 +msgid "The following services are enabled for your account: {allowedServices}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:43 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:23 +msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 +msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:29 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:468 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:41 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:775 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:507 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:31 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:29 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:89 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:115 +#: src/components/contacts/screens/VerifyNumber.tsx:113 +#: src/components/contacts/screens/VerifyNumber.tsx:165 +msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:137 +msgid "Theme" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:106 +msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 +msgid "There is no invite link for this group chat." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#. Body message of the error screen shown when the GIF provider request fails. Encourages the user to retry. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:56 +msgid "There was a problem loading GIFs. Check your connection and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:149 +#: src/components/intents/GroupChatJoinDialog.tsx:195 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 +msgid "There was a problem with your internet connection, please try again" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 +#: src/screens/ProfileList/components/Header.tsx:91 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 +#: src/screens/SavedFeeds.tsx:99 +#: src/screens/SavedFeeds.tsx:278 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:133 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:185 +#: src/view/com/lists/ProfileLists.tsx:184 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:109 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:153 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 +#: src/view/com/posts/FeedShutdownMsg.tsx:53 +#: src/view/com/posts/FeedShutdownMsg.tsx:74 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: e.toString() +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:475 +#: src/screens/Messages/ConversationSettings/Member.tsx:71 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:114 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:127 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:92 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:257 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:157 +#: src/view/com/profile/ProfileMenu.tsx:174 +#: src/view/com/profile/ProfileMenu.tsx:187 +#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:218 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:241 +#: src/screens/List/ListHiddenScreen.tsx:67 +#: src/screens/List/ListHiddenScreen.tsx:81 +#: src/screens/List/ListHiddenScreen.tsx:103 +#: src/screens/ProfileList/components/Header.tsx:106 +#: src/screens/ProfileList/components/Header.tsx:120 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:121 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:135 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:38 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:53 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#. Body of the error screen shown when the GIF picker crashes unexpectedly. Encourages the user to report the issue. +#: src/components/dialogs/LanguageSelectDialog.tsx:349 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:27 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:133 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:660 +msgid "These are your default settings" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 +msgid "These domains" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 +msgid "These hashtags" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:66 +msgid "These settings only apply to the Following feed." +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 +msgid "These URLs" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:353 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:177 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:116 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:89 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/BotAccountAlert.tsx:27 +msgid "This account has been marked as automated by its owner." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:94 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:33 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:56 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:96 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 +#: src/screens/Messages/components/ChatDisabled.tsx:138 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "This author has chosen to make their posts visible only to people who are signed in." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:244 +msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below." +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:48 +msgid "This chat has ended" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:301 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:376 +#: src/screens/Messages/components/ChatLocked.tsx:69 +msgid "This chat is locked" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:437 +msgid "This chat is locked by a moderation action" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:17 +msgid "This chat was disconnected" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:106 +msgid "This code is invalid. Resend to get a new code." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:145 +msgid "This confirmation code is not valid. Please try again." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:85 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:122 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This conversation is locked." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:156 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:240 +msgid "This draft will be permanently deleted." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:280 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:283 +msgid "This exact phrase" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:56 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:166 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:61 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:30 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:128 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:60 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:41 +#: src/screens/Profile/ProfileFeed/index.tsx:170 +#: src/screens/ProfileList/FeedSection.tsx:78 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:104 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:72 +msgid "This group is locked by a moderation action on the owner" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:611 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:140 +msgid "This image could not be used. Try a different format like .jpg or .png." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:62 +msgid "This information is private and not shared with other users." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:161 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:236 +msgid "This invite link is invalid" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 +msgid "This is just a one-time security check, since we haven't seen this account on this device before." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:171 +#: src/features/liveNow/components/GoLiveDialog.tsx:161 +msgid "This is not a valid link" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:173 +msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:254 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:184 +msgid "This label was applied by you." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/ModerationDetailsDialog.tsx:231 +msgid "This label was applied to the entire user account and will appear on all posts." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:219 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:95 +msgid "This link is taking you to the following website:" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/screens/List/ListHiddenScreen.tsx:155 +msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:150 +msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:100 +msgid "This list is empty." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:335 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 +msgid "This message is hidden because this user is blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 +msgid "This message is hidden because you are blocking this user." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:41 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "This person is blocking you" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt) +#. placeholder {1}: niceDate(i18n, indexedAt) +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:274 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:248 +msgid "This post was deleted by its author" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1127 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:547 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 +msgid "This screen is only available for group conversations." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/features/liveNow/index.tsx:203 +msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:469 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:214 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:94 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:217 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:99 +#: src/lib/moderation/useModerationCauseDescription.ts:76 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 +msgid "This user has disabled chat and cannot be messaged." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:49 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:196 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 +msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:65 +msgid "This video can’t be previewed in your browser. It will still be uploaded." +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 +msgid "This will create a new list with the same name, description, and members as this starter pack." +msgstr "" + +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:454 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:330 +msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Settings/Settings.tsx:678 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:25 +#: src/screens/PostThread/components/HeaderDropdown.tsx:28 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:70 +#: src/screens/Settings/ContentAndMediaSettings.tsx:73 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:35 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:59 +#: src/screens/PostThread/components/HeaderDropdown.tsx:64 +msgid "Threaded" +msgstr "" + +#: src/Navigation.tsx:376 +msgid "Threads Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134 +msgid "Threats or incitement" +msgstr "" + +#. placeholder {0}: Number(time) || 0 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:68 +msgid "Title" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:71 +msgid "Title (100 characters max)" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:100 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:315 +msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." +msgstr "" + +#: src/components/dms/DateDivider.tsx:27 +msgid "Today" +msgstr "" + +#: src/screens/Moderation/index.tsx:392 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:186 +msgid "Toggles the sound" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:123 +msgid "Too many attempts. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:176 +msgid "Too many codes sent. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:156 +msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends" +msgstr "" + +#: src/screens/Hashtag.tsx:86 +#: src/screens/Search/SearchResults.tsx:83 +#: src/screens/Topic.tsx:58 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:75 +#: src/screens/PostThread/components/HeaderDropdown.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:57 +#: src/screens/Settings/ThreadPreferences.tsx:60 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:503 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:191 +#: src/components/dms/MessageContextMenu.tsx:194 +#: src/components/Post/Translated/index.tsx:150 +#: src/components/Post/Translated/index.tsx:157 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 +msgid "Translate" +msgstr "" + +#: src/components/Post/Translated/index.tsx:326 +msgid "Translated" +msgstr "" + +#: src/components/Post/Translated/index.tsx:113 +msgid "Translating" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 +msgid "Translating…" +msgstr "" + +#: src/lib/translation/index.tsx:305 +msgid "Translation to the same language is unavailable on your device." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:87 +#: src/screens/Settings/ThreadPreferences.tsx:92 +msgid "Tree view" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 +msgid "Trending" +msgstr "" + +#. Accessibility label for the icon-only pill that shows currently trending/featured GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:45 +msgid "Trending GIFs" +msgstr "" + +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 +msgid "Trending options" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:87 +msgid "Trending Videos" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 +msgid "Trolling" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 +msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:260 +msgid "Try a different search term or remove some filters." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:262 +msgid "Try a different search term." +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:171 +msgid "Try again in a moment." +msgstr "" + +#: src/components/Post/Translated/index.tsx:229 +#: src/components/Post/Translated/index.tsx:242 +msgid "Try Google Translate" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "" + +#: src/lib/interests.ts:74 +msgid "TV" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:32 +msgid "Twilight" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Type:" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:86 +msgid "Unable to access location. You'll need to visit your system settings to enable location services for Bluesky." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:30 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:96 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:141 +msgid "Unable to contact your service. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:66 +#: src/screens/Login/index.tsx:100 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:77 +#: src/screens/Signup/index.tsx:89 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:700 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 +msgid "Unable to find the selected recipient." +msgstr "" + +#: src/lib/strings/errors.ts:42 +msgid "Unable to resolve handle" +msgstr "" + +#: src/screens/Settings/Settings.tsx:524 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:526 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:43 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:127 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessageItem.tsx:747 +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:427 +#: src/screens/ProfileList/components/Header.tsx:166 +#: src/screens/ProfileList/components/Header.tsx:173 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 +msgid "Unblock {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:463 +#: src/view/com/profile/ProfileMenu.tsx:469 +msgid "Unblock account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +msgid "Unblock Account?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:242 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:245 +msgid "Unblock list" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 +#: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 +msgid "Undo" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:43 +msgctxt "Button label to undo saving/removing a post from saved posts." +msgid "Undo" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:68 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:396 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:329 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:919 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:492 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:263 +msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:247 +msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:209 +msgid "Unknown verifier" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +msgid "Unlabeled adult content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +msgid "Unlabeled, abusive, or non-consensual adult content" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:276 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:91 +msgid "Unlock chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:568 +msgid "Unlock this group chat" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:180 +#: src/screens/ProfileList/components/Header.tsx:187 +msgid "Unmute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:183 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:153 +#: src/components/RichTextTag.tsx:169 +msgid "Unmute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 +#: src/view/com/profile/ProfileMenu.tsx:442 +#: src/view/com/profile/ProfileMenu.tsx:448 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:272 +msgid "Unmute conversation" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:252 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:255 +msgid "Unmute list" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:533 +msgid "Unmute this group chat" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 +msgid "Unmute video" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Unpin" +msgstr "" + +#: src/components/FeedCard.tsx:355 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 +#: src/screens/SavedFeeds.tsx:467 +msgid "Unpin feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Unpin from profile" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:225 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:228 +msgid "Unpin moderation list" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:78 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:105 +msgid "Unpinned list" +msgstr "" + +#: src/screens/Settings/Settings.tsx:491 +#: src/screens/Settings/Settings.tsx:493 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:354 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:202 +#: src/screens/List/ListHiddenScreen.tsx:212 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:321 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:90 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.tsx:127 +msgid "Unsupported clipboard content" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1644 +msgid "Unsupported video type: {mimeType}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 +msgid "Until" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +#: src/screens/Settings/components/OTAInfo.tsx:77 +msgid "Update" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(profile, true) +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:138 +msgid "Update {0} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 +#: src/screens/Settings/AccountSettings.tsx:110 +#: src/screens/Settings/AccountSettings.tsx:118 +msgid "Update email" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:142 +msgid "Update in Lists" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:275 +#: src/screens/Messages/components/InviteLinkDialog.tsx:303 +msgid "Update invite link" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:544 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:565 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 +msgid "Update your email" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:208 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:252 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 +msgid "Update your location" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:312 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:485 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:494 +#: src/view/com/util/UserAvatar.tsx:497 +#: src/view/com/util/UserBanner.tsx:164 +#: src/view/com/util/UserBanner.tsx:167 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:505 +#: src/view/com/util/UserAvatar.tsx:509 +#: src/view/com/util/UserBanner.tsx:175 +#: src/view/com/util/UserBanner.tsx:179 +msgid "Upload from Library" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2684 +msgid "Uploading GIF..." +msgstr "" + +#: src/lib/api/index.ts:327 +#: src/lib/api/index.ts:354 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:426 +#: src/lib/api/index.ts:450 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2686 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:576 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:78 +#: src/components/dialogs/InAppBrowserConsent.tsx:84 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:104 +#: src/screens/Settings/ContentAndMediaSettings.tsx:110 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:88 +#: src/components/dialogs/InAppBrowserConsent.tsx:94 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:57 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:278 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/screens/Profile.tsx:396 +msgid "user" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +#: src/lib/moderation/useModerationCauseDescription.ts:64 +msgid "User Blocked" +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:56 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:74 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:97 +msgid "User Blocks You" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:303 +msgid "User list by {0}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/state/queries/feed.ts:171 +msgid "User List by {0}" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:301 +msgid "User list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:255 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:241 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:257 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:241 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:245 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:305 +msgid "Username or email" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:315 +msgid "Username or email address" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:337 +msgid "users followed by <0>@{0}" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:324 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:451 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:40 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:344 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:208 +#: src/screens/Moderation/VerificationSettings.tsx:34 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:43 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:105 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:85 +#: src/components/verification/VerificationCreatePrompt.tsx:87 +#: src/view/com/profile/ProfileMenu.tsx:426 +#: src/view/com/profile/ProfileMenu.tsx:429 +msgid "Verify account" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:64 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:546 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:62 +msgid "Verify email dialog" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:65 +msgid "Verify now" +msgstr "" + +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 +msgid "Verify now using KWS" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:175 +#: src/components/contacts/screens/VerifyNumber.tsx:217 +msgid "Verify phone number" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:569 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:52 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 +#: src/screens/Settings/AccountSettings.tsx:84 +#: src/screens/Settings/AccountSettings.tsx:104 +msgid "Verify your email" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Verifying" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:165 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:75 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:307 +msgid "Verifying..." +msgstr "" + +#. placeholder {0}: env.APP_VERSION +#: src/screens/Settings/AboutSettings.tsx:144 +#: src/screens/Settings/AboutSettings.tsx:173 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:162 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:390 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:571 +msgid "Video Feed" +msgstr "" + +#. placeholder {0}: author.handle +#: src/components/VideoPostCard.tsx:122 +msgid "Video from {0}: {text}" +msgstr "" + +#. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) +#: src/screens/VideoFeed/index.tsx:1174 +msgid "Video from {0}. Tap to play or pause the video" +msgstr "" + +#: src/lib/interests.ts:62 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2704 +msgid "Video uploaded" +msgstr "" + +#. placeholder {0}: embed.alt +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:239 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 +#: src/view/com/composer/SelectMediaButton.tsx:440 +msgid "Videos must be less than 3 minutes long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1234 +msgctxt "Action to view the post the user just created" +msgid "View" +msgstr "" + +#. placeholder {0}: view.source.title +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View {0}" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/Shell.tsx:256 +msgid "View {0}'s avatar" +msgstr "" + +#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle +#. placeholder {0}: info.creatorHandle +#. placeholder {0}: profile.handle +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +#: src/screens/Search/components/SearchProfileCard.tsx:37 +#: src/screens/VideoFeed/index.tsx:880 +#: src/view/com/notifications/NotificationFeedItem.tsx:619 +msgid "View {0}'s profile" +msgstr "" + +#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle) +#: src/components/ProfileCard.tsx:150 +msgid "View {0}’s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 +msgid "View {displayName}’s profile" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:478 +msgid "View {publicationTitle}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:479 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:170 +msgid "View blogpost for more details" +msgstr "" + +#: src/screens/Log.tsx:72 +msgid "View debug entry" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 +msgid "View details" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:31 +#: src/view/com/posts/ViewFullThread.tsx:65 +msgid "View full thread" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +msgid "View incoming group chat requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:51 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:200 +#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 +msgid "View more" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:228 +msgid "View more trending videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1229 +msgid "View post" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:465 +#: src/components/ProfileHoverCard/index.web.tsx:485 +#: src/components/ProfileHoverCard/index.web.tsx:512 +#: src/view/com/posts/PostFeedErrorMessage.tsx:183 +#: src/view/com/util/PostMeta.tsx:92 +#: src/view/com/util/PostMeta.tsx:120 +msgid "View profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:163 +msgid "View profile banner" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:448 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:479 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View publication" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:108 +msgid "View the avatar" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:555 +msgid "View the invite link for this group chat" +msgstr "" + +#. placeholder {0}: labeler.creator.handle +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:103 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:401 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:324 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:264 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:294 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:309 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:102 +msgid "View your verifications" +msgstr "" + +#: src/components/images/AutoSizedImage.tsx:222 +#: src/components/images/AutoSizedImage.tsx:254 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:121 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126 +msgid "Violence" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127 +msgid "Violent or threatening content" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:122 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:296 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:49 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 +msgid "Watch now" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:253 +msgid "We apply the highest privacy standards, and never share or sell your contact information." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:141 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:147 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:348 +msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." +msgstr "" + +#: src/screens/Hashtag.tsx:260 +msgid "We couldn't find any results for that tag." +msgstr "" + +#: src/screens/Topic.tsx:166 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:134 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 +msgid "We couldn’t load this conversation’s settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:482 +msgid "We couldn’t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:244 +msgid "We delete hashes after matches are made" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:67 +msgid "We don't store your friends' phone numbers or send any messages" +msgstr "" + +#: src/screens/SignupQueued.tsx:163 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:197 +msgid "We have partnered with <0>KWS to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you won’t need to do it again. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/intents/VerifyEmailIntentDialog.tsx:102 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:184 +msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:241 +msgid "We never keep plain phone numbers" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:247 +msgid "We only suggest follows if both people consent" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:171 +msgid "We recommend selecting at least two interests." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:451 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:19 +msgid "We were unable to load the age assurance configuration for your region, probably due to a network error. Some content and features may be unavailable temporarily. Please try again later." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "We were unable to load your birthdate preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:492 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:305 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:217 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/SignupQueued.tsx:167 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:531 +msgid "We will notify you when we find your friends." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 +msgid "We’d love to hear about your experience testing beta features!" +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:62 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:140 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:83 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:311 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:223 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:151 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:127 +#: src/components/ProgressGuide/FollowDialog.tsx:195 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:321 +msgid "We’re having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 +msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:140 +msgid "We’re so excited to have you join us!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:117 +msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:227 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 +msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance." +msgstr "" + +#: src/screens/ProfileList/index.tsx:88 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:387 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 +msgid "We’re sorry, but your search could not be completed." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 +msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:62 +msgid "We're sorry, you cannot access this screen at this time." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1125 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:223 +#: src/view/screens/NotFound.tsx:44 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:220 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:123 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:64 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:77 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:62 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:257 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:165 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:117 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:59 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:44 +msgid "What do you want to call your starter pack?" +msgstr "" + +#. Advanced search: Example of an “exact phrase” search +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:285 +msgid "what’s up" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 +#: src/view/com/feeds/ComposerPrompt.tsx:192 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 +msgid "When you tap on a check, you’ll see which organizations have granted verification." +msgstr "" + +#: src/components/WhoCanReply.tsx:226 +msgid "Who can interact with this post?" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 +msgid "Who can join this group chat and how" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +#: src/components/WhoCanReply.tsx:116 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:80 +#: src/screens/Messages/ChatList.tsx:409 +#: src/screens/Messages/Inbox.tsx:191 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:126 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:169 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:52 +#: src/components/moderation/ReportDialog/copy.ts:66 +msgid "Why should this conversation be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +msgid "Why should this livestream be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:58 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:51 +msgid "Would you like to block this user and/or delete this conversation?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:47 +msgid "Would you like to block this user and/or leave this conversation?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:110 +msgid "Would you like to save this as a draft before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1523 +msgid "Would you like to save this as a draft to edit later?" +msgstr "" + +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 +msgid "Write a post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1704 +msgid "Write post" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 +#: src/view/com/composer/Composer.tsx:1606 +msgid "Write your reply" +msgstr "" + +#: src/lib/interests.ts:75 +msgid "Writers" +msgstr "" + +#. placeholder {0}: verifyError.did +#: src/screens/Settings/components/ChangeHandleDialog.tsx:368 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 +msgid "Wrong kind of conversation" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:147 +#: src/features/liveNow/components/GoLiveDialog.tsx:142 +msgid "www.mylivestream.tv" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to affirmation/agreement GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:95 +msgid "Yes GIFs" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:105 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:107 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:348 +msgid "Yes, delete my account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:712 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:139 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:29 +msgid "Yesterday" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:61 +msgid "You are a trusted verifier" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:174 +msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:720 +msgid "You are blocking {0}" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "You are blocking the chat owner" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:83 +msgid "You are blocking this person" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "You are creating an account on" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:108 +msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:400 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "You are in line." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:113 +#: src/features/liveNow/components/EditLiveDialog.tsx:118 +msgid "You are Live" +msgstr "" + +#: src/features/liveNow/index.tsx:371 +msgid "You are no longer live" +msgstr "" + +#: src/view/com/composer/state/video.ts:444 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:195 +msgid "You are not following anyone yet" +msgstr "" + +#: src/features/liveNow/index.tsx:315 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:66 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:341 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:210 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:211 +msgid "You can also <0>temporarily deactivate your account instead. Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:60 +#: src/view/com/posts/FollowingEndOfFeed.tsx:61 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:139 +msgid "You can also download your chat data as a \"JSONL\" file. This file only includes chat messages that you have sent and does not include chat messages that you have received." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:250 +msgid "You can always opt out and delete your data" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:134 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:165 +#: src/screens/Messages/Settings.tsx:216 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:154 +msgid "You can now invite friends with a link or QR code. Share the link anywhere, or let them scan the code to join you on Bluesky." +msgstr "" + +#: src/screens/Login/index.tsx:207 +#: src/screens/Login/PasswordUpdatedForm.tsx:25 +msgid "You can now sign in with your new password." +msgstr "" + +#. Toast shown when the user tries to add more images but the post gallery is already at the cap +#: src/view/com/composer/Composer.tsx:222 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1528 +msgid "You can only save drafts up to 1000 characters." +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:116 +msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:443 +msgid "You can only select one GIF at a time." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:437 +msgid "You can only select one video at a time." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:93 +msgid "You can read chat history but can’t send new messages." +msgstr "" + +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:429 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." +msgstr "" + +#: src/components/interstitials/Trending.tsx:142 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 +msgid "You can update this later from your settings." +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:81 +#: src/components/dms/MessageContextMenu.tsx:129 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 +msgid "You cannot create a group chat yet." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:54 +#: src/lib/strings/errors.ts:27 +msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:103 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:589 +msgid "You don't have any lists yet." +msgstr "" + +#: src/screens/SavedFeeds.tsx:153 +#: src/screens/SavedFeeds.tsx:343 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/screens/SavedFeeds.tsx:205 +#: src/screens/SavedFeeds.tsx:381 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:312 +msgid "You got here first" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:93 +#: src/lib/moderation/useModerationCauseDescription.ts:58 +#: src/lib/moderation/useModerationCauseDescription.ts:66 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "You have completed the Age Assurance process, but based on the results, we cannot be sure that you are 18 years of age or older. Due to laws in your region, certain features on Bluesky must remain restricted until you're able to verify you're an adult." +msgstr "" + +#: src/view/screens/Notifications.tsx:291 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:89 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:113 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:117 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:131 +msgid "You have hidden this post." +msgstr "" + +#: src/components/BotAccountAlert.tsx:26 +msgid "You have marked this account as automated. You can remove it at any time from your account settings." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:124 +#: src/lib/moderation/useModerationCauseDescription.ts:100 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:94 +msgid "You have muted this user" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:71 +#: src/view/com/lists/MyLists.tsx:81 +msgid "You have no lists." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:102 +msgid "You have no starter packs." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:155 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:168 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:62 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:188 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1518 +msgid "You have unsaved changes to this draft, would you like to save them?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:105 +msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:159 +msgid "You haven't created any lists yet." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:160 +msgid "You haven't made any custom feeds yet." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:407 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "You hid this reply." +msgstr "" + +#. placeholder {0}: getTimeAgo(lastInitiatedAt, new Date(), {format: 'long'}) +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:240 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/NewskieDialog.tsx:107 +msgid "You joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:104 +msgid "You joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:88 +#: src/components/moderation/ModerationDetailsDialog.tsx:210 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:80 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:101 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:318 +msgid "You must be a chat owner to remove a member." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:177 +msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:89 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:472 +msgid "You need to allow access to your media library." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:349 +msgid "You own this chat" +msgstr "" + +#. placeholder {0}: currentAccount?.handle +#: src/screens/Deactivated.tsx:120 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:421 +msgid "You probably want to restart the app now." +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:361 +msgid "You reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:63 +msgid "You reacted {0} to {target}" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:92 +#: src/components/dialogs/BirthDateSettings.tsx:102 +msgid "You recently changed your birthdate" +msgstr "" + +#: src/components/dms/MessageItem.tsx:806 +msgid "You replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:805 +msgid "You replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:803 +msgid "You replied to yourself" +msgstr "" + +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:105 +msgid "You requested to join" +msgstr "" + +#: src/screens/Settings/Settings.tsx:306 +#: src/view/shell/desktop/LeftNav.tsx:225 +msgid "You will be signed out of all your accounts." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:140 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:101 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:129 +msgid "You won’t be able to rejoin unless you’re invited." +msgstr "" + +#. When the last message in a chat was made by you. +#: src/components/dms/getMessageInfo.ts:82 +msgid "You: {message}" +msgstr "" + +#: src/screens/Signup/index.tsx:158 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#. placeholder {0}: listItemsCount - 8 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:314 +msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:172 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:281 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:133 +msgid "You're all set!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:127 +msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "You're in line" +msgstr "" + +#: src/screens/Deactivated.tsx:81 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:73 +msgid "You've already appealed this label and it's being reviewed by our moderation team." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:128 +#: src/lib/moderation/useModerationCauseDescription.ts:109 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:313 +msgid "You've denied access to your contacts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:237 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:112 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:42 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/view/com/composer/Composer.tsx:729 +msgid "You've reached the maximum number of drafts" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:68 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 +msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." +msgstr "" + +#: src/components/FocusScope/index.tsx:88 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:455 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:459 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1221 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:199 +msgid "Your account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:128 +msgid "Your account has been deleted, see ya! ✌️" +msgstr "" + +#: src/screens/Takendown.tsx:142 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:463 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:836 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:837 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:107 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:210 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:150 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:287 +msgid "Your birth date" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:45 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:70 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:380 +msgid "Your contact {firstAuthorLink} is on Bluesky" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:378 +msgid "Your contact {firstAuthorName} is on Bluesky" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:454 +msgid "Your contact {name}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(currentAccount?.handle || '', '@') +#: src/screens/Settings/components/ChangeHandleDialog.tsx:531 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/screens/Moderation/index.tsx:231 +msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:252 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:82 +#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/StepInfo/index.tsx:129 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:216 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:496 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:41 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#. placeholder {0}: createFullHandle(subdomain, host) +#: src/screens/Settings/components/ChangeHandleDialog.tsx:247 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:182 +msgid "Your hosting provider can’t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:188 +msgid "Your hosting provider is detected automatically from the username you enter." +msgstr "" + +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:94 +#: src/screens/Settings/ContentAndMediaSettings.tsx:97 +#: src/screens/Settings/InterestsSettings.tsx:49 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:138 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:356 +msgid "Your location has been updated." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "Your muted words" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:72 +msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:156 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1225 +msgid "Your post was sent" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1222 +msgid "Your posts were sent" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:289 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 +msgid "Your profile picture" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 +msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1224 +msgid "Your reply was sent" +msgstr "" + +#. placeholder {0}: state.selectedLabeler?.creator.displayName +#: src/components/moderation/ReportDialog/index.tsx:519 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:63 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1553 +msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 +msgid "Your username and password will be shared with <0>{host}. If you don’t recognize this provider, double-check your username." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/en-GB/messages.po b/src/locale/locales/en-GB/messages.po index 985b3e76eb..966dbd7403 100644 --- a/src/locale/locales/en-GB/messages.po +++ b/src/locale/locales/en-GB/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: en_GB\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: English, United Kingdom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" category (active)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blocked message hidden)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contains embedded content)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(deleted message)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(invalid chat invite link)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(message sent before you joined)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hour} other {# hours}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# label applied} other {# labels applied}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# like} other {# likes}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# member} other {# members}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# new join request} other {# new join requests}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# person} other {# people}} reacted – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Account)" @@ -251,36 +252,13 @@ msgstr "{0} added to chat" msgid "{0} and {1} added to chat" msgstr "{0} and {1} added to chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} and {1} like this" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} and {others, plural, one {{1} other} other {{2} others}} like this" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} and {othersLabel} like this" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} following" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} is blocking you" @@ -324,14 +302,6 @@ msgstr "{0} left" msgid "{0} left the group" msgstr "{0} left the group" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} likes this" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} out of 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reacted {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} and {others, plural, one {{2} other} other {{3} others}} like this" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} and {othersLabel} like this" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} verified you" msgid "{following} following" msgstr "{following} following" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} can’t be added" @@ -698,7 +660,7 @@ msgstr "{handle} can’t be added" msgid "{handle} can't be messaged" msgstr "{handle} can't be messaged" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} can’t be messaged" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# unread item} other {# unread items}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contact found} other {# contacts found}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} other} other {{1} others}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} joined Bluesky {timeAgoString} ago" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, one {# character remaining} other {# characters remaining}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} replied" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} replied to {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} replied to you" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# request} other {# requests}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ requests" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}h ago" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} is a trusted verifier" @@ -842,13 +795,13 @@ msgstr "{userName}'s verifications" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {following} other {following}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {quote} other {quotes}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} other {reposts}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {save} other {saves}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {like} other {likes}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> added you" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics and everything else happening on Bluesky." @@ -971,7 +924,7 @@ msgstr "30 days" msgid "7 days" msgstr "7 days" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" @@ -988,9 +941,11 @@ msgstr "A network error occurred. Please check your internet connection" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "A new code has been sent" msgid "A new form of verification" msgstr "A new form of verification" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "A reply to a message sent before you joined" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "A screenshot of the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now!!!\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "A selected recipient is not followed by the sender." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Access requested! The group owner will review your request." msgid "Accessibility" msgstr "Accessibility" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Accessibility Settings" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Account Muted by List" msgid "Account options" msgstr "Account options" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Account removed from quick access" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Activity from others" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Activity notifications" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Add alt text (optional)" msgid "Add another account" msgstr "Add another account" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Add another post" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Add another post to thread" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Add another search filter" @@ -1253,7 +1213,7 @@ msgstr "Add automation label to account" msgid "Add emoji reaction" msgstr "Add emoji reaction" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Add filter" @@ -1338,7 +1298,7 @@ msgstr "Add this feed to your feeds" msgid "Add to lists" msgstr "Add to lists" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Add to saved posts" @@ -1400,7 +1360,7 @@ msgstr "Adult" msgid "Adult content" msgstr "Adult content" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Allows access to direct messages" msgid "Already have a code?" msgstr "Already have a code?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Already have an account?" @@ -1614,7 +1574,7 @@ msgstr "An email has been sent to {0}. It includes a confirmation code which you msgid "An error has occurred" msgstr "An error has occurred" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "An error occurred" @@ -1631,7 +1591,7 @@ msgstr "An error occurred while fetching suggested accounts." msgid "An error occurred while fetching the feed." msgstr "An error occurred while fetching the feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "An error occurred while generating your starter pack. Want to try again?" @@ -1640,11 +1600,11 @@ msgstr "An error occurred while generating your starter pack. Want to try again? msgid "An error occurred while hiding suggestion. {0}" msgstr "An error occurred while hiding suggestion. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "An error occurred while loading the video. Please try again later." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "An error occurred while loading the video. Please try again." @@ -1684,7 +1644,7 @@ msgstr "An error occurred. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "An illustration depicting user avatars flowing from a contact book into the Bluesky app" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "An illustration of several Bluesky posts alongside repost, like, and comment icons" @@ -1705,17 +1665,15 @@ msgstr "An invite link lets people join this group chat without being added dire msgid "An issue not included in these options" msgstr "An issue not included in these options" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "An issue occurred creating the group chat, please try again." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "An issue occurred starting the chat, please try again." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Any date" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Anyone" @@ -1802,7 +1760,7 @@ msgstr "Anyone who follows me" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Anyone who has it will no longer be able to join or request to join. You can always create a new one." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "App password names must be at least 4 characters long" msgid "App passwords" msgstr "App passwords" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App Passwords" @@ -1891,8 +1849,8 @@ msgstr "Appeal this decision" msgid "Appeal this label" msgstr "Appeal this label" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Apply Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archived from {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Archived post" @@ -1980,7 +1938,7 @@ msgstr "Are you sure you want to remove this from your feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Are you sure you want to rescind your request to join {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Are you sure you'd like to discard this post?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Automated account" @@ -2033,7 +1991,7 @@ msgstr "Automatic" msgid "Automation label" msgstr "Automation label" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automation Label" @@ -2050,12 +2008,16 @@ msgstr "Autoplay videos and GIFs" msgid "Available" msgstr "Available" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Before creating a post or replying, you must first verify your email." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Before creating a starter pack, you must first verify your email." @@ -2135,10 +2097,10 @@ msgstr "Before you can get notifications for {name}'s posts, you must first veri #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Begin the age assurance process by completing the fields below." msgid "Beta Feature" msgstr "Beta Feature" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Beta features" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Birthdate" msgid "Birthday" msgstr "Birthday" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blocked" msgid "Blocked accounts" msgstr "Blocked accounts" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blocked Accounts" @@ -2282,7 +2250,7 @@ msgstr "Blocked accounts cannot reply in your threads, mention you, or otherwise 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 "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." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blocking does not prevent this labeller from placing labels on your account." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky cannot confirm the authenticity of the claimed date." @@ -2330,7 +2299,7 @@ msgstr "Bluesky is an open network where you can choose your hosting provider. I msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky is an open network where you can choose your hosting provider. If you’re new here, we recommend sticking with the default Bluesky Social option." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky is better with friends!" @@ -2358,7 +2327,7 @@ msgstr "Bluesky Social Terms of Service" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky will choose a set of recommended accounts from people in your network." @@ -2425,24 +2394,25 @@ msgstr "Browse more suggestions on the Explore page" msgid "Browse other feeds" msgstr "Browse other feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Browse posts about {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Browse posts tagged with {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Browse starter pack {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Browse topic {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Browse topic {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Button to go back to the home timeline" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "By {0}" @@ -2473,9 +2443,9 @@ msgstr "by @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "By <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "By creating an account you agree to the <0>Terms of Service and <1>P msgid "By creating an account you agree to the <0>Terms of Service." msgstr "By creating an account you agree to the <0>Terms of Service." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "By you" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camera" @@ -2534,7 +2504,7 @@ msgstr "Camera access needed" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Camera access needed" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Cancel reactivation and sign out" msgid "Cancel reply" msgstr "Cancel reply" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancel search" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Changes to the starter pack will not be reflected in the list after creation. The list will be an independent copy." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat muted" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chat not found." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Chat options" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Chat owners cannot leave a group chat." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Chat recipient is not followed by the sender." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Chat request inbox" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Chat requests" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chat settings" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat unmuted" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2808,7 @@ msgstr "Choose domain verification method" msgid "Choose Feeds" msgstr "Choose Feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Choose for me" @@ -2854,7 +2825,7 @@ msgstr "Choose People" msgid "Choose post languages" msgstr "Choose post languages" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Choose this colour as your avatar" @@ -2879,7 +2850,7 @@ msgstr "Choose your own timeline! Feeds built by the community help you find con msgid "Choose your password" msgstr "Choose your password" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Choose your username" @@ -2966,7 +2937,7 @@ msgstr "Click here to view the invite link for this group chat" msgid "Click to open tag menu for {0}" msgstr "Click to open tag menu for {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Click to retry failed message" @@ -3003,7 +2974,7 @@ msgstr "Click to retry failed message" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Click to retry failed message" msgid "Close" msgstr "Close" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Close active dialog" @@ -3047,7 +3018,7 @@ msgstr "Close banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Close image viewer" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Close menu" @@ -3090,7 +3061,7 @@ msgstr "Close the incoming requests banner" msgid "Close this dialog" msgstr "Close this dialog" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Close welcome modal" @@ -3098,7 +3069,7 @@ msgstr "Close welcome modal" msgid "Closes password update alert" msgstr "Closes password update alert" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Closes post composer and discards post draft" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Colour" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Colour mode" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Comics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Community Guidelines" @@ -3141,7 +3112,7 @@ msgstr "Community Guidelines" msgid "Complete onboarding and start using your account" msgstr "Complete onboarding and start using your account" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Complete the challenge" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Compose new post" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Compose posts up to {0, plural, other {# characters}} in length" @@ -3160,11 +3131,11 @@ msgstr "Compose posts up to {0, plural, other {# characters}} in length" msgid "Compose reply" msgstr "Compose reply" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Compressing GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Compressing video..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Contact our support team" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contact support" @@ -3253,7 +3224,7 @@ msgstr "Content & Media" msgid "Content and media" msgstr "Content and media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Content and Media" @@ -3265,10 +3236,6 @@ msgstr "Content Blocked" msgid "Content filters" msgstr "Content filters" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Content from across the network we think you might like." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Content languages" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Content promoting or depicting self-harm" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Content Warning" msgid "Content warnings" msgstr "Content warnings" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Context menu backdrop, click to close the menu." @@ -3302,7 +3269,7 @@ msgstr "Context menu backdrop, click to close the menu." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Continue thread..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continue to group name" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Conversation not found." msgid "Copied build version to clipboard" msgstr "Copied build version to clipboard" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Copied link to clipboard" @@ -3376,7 +3343,7 @@ msgstr "Copied link to clipboard" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copy App Password" msgid "Copy at:// URI" msgstr "Copy at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copy author DID" @@ -3449,10 +3416,10 @@ msgstr "Copy Link" msgid "Copy link to list" msgstr "Copy link to list" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copy link to post" @@ -3470,8 +3437,8 @@ msgstr "Copy link to starter pack" msgid "Copy message text" msgstr "Copy message text" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copy post at:// URI" @@ -3490,7 +3457,7 @@ msgstr "Copy TXT record value" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Copyright Policy" @@ -3540,11 +3507,11 @@ msgstr "Could not follow all matches. {0}" msgid "Could not leave chat" msgstr "Could not leave chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Could not leave chat." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Could not load feed" @@ -3562,7 +3529,7 @@ msgstr "Could not load profile" msgid "Could not mute chat" msgstr "Could not mute chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Could not remove member." @@ -3606,8 +3573,8 @@ msgstr "cows pigs" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Create" @@ -3624,26 +3591,26 @@ msgstr "Create a list from this starter pack" msgid "Create a QR code for a starter pack" msgstr "Create a QR code for a starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Create a starter pack" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Create a Starter Pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Create a starter pack for me" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Create account" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Create an account" @@ -3666,15 +3633,15 @@ msgstr "Create an account" msgid "Create an account without using this starter pack" msgstr "Create an account without using this starter pack" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Create an avatar instead" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Create another" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Create group chat" @@ -3743,7 +3710,7 @@ msgstr "Culture" msgid "Current beta features" msgstr "Current beta features" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Current chat" @@ -3770,8 +3737,8 @@ msgstr "Dangerous substances or drug abuse" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Dark" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dark" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Dark theme" @@ -3814,7 +3781,7 @@ msgstr "Decline this language suggestion" msgid "Deepfake adult content" msgstr "Deepfake adult content" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Default" @@ -3894,7 +3861,7 @@ msgstr "Delete my account" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Delete post" @@ -3988,7 +3955,7 @@ msgstr "Dialog: adjust who can interact with this post" msgid "Dialog: Set search filters" msgstr "Dialog: Set search filters" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Dim" @@ -4002,7 +3969,7 @@ msgstr "Disable" msgid "Disable 2FA" msgstr "Disable 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Disable subtitles" @@ -4045,9 +4012,9 @@ msgstr "Disabled" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Discard" msgid "Discard changes?" msgstr "Discard changes?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Discard draft?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Discard post?" @@ -4079,6 +4046,10 @@ msgstr "Disconnect Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Discourage apps from showing my account to logged-out users" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Discourage apps from showing my account to logged-out users" msgid "Discover new custom feeds" msgstr "Discover new custom feeds" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Discover new feeds" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Discover New Feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Dismiss" @@ -4103,19 +4070,19 @@ msgstr "Dismiss" msgid "Dismiss banner" msgstr "Dismiss banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Dismiss error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Dismiss getting started guide" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Dismiss interests" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Dismiss live event banner" @@ -4142,7 +4109,7 @@ msgstr "Display larger alt text badges" msgid "Display name" msgstr "Display name" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Ditch the trolls and clickbait. Find real people and conversations that matter to you." @@ -4205,8 +4172,8 @@ msgstr "Don't worry! All existing messages and settings are saved and will be av #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Don't worry! All existing messages and settings are saved and will be av msgid "Done" msgstr "Done" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Double tap or long press the message to add a reaction" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Double tap to close the dialog" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Double tap to like" @@ -4328,6 +4295,7 @@ msgstr "Eating disorders" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Edit image" msgid "Edit interaction settings" msgstr "Edit interaction settings" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Edit interests" @@ -4397,7 +4365,7 @@ msgstr "Edit live status" msgid "Edit moderation list" msgstr "Edit moderation list" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edit My Feeds" @@ -4406,6 +4374,11 @@ msgstr "Edit My Feeds" msgid "Edit name" msgstr "Edit name" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Edit notifications from {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Edit People" @@ -4444,7 +4417,7 @@ msgstr "Edit user list" msgid "Edit who can reply" msgstr "Edit who can reply" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edit your starter pack" @@ -4500,8 +4473,8 @@ msgstr "Embed HTML code" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Embed post" @@ -4509,7 +4482,7 @@ msgstr "Embed post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Embedded video player" @@ -4533,7 +4506,7 @@ msgstr "Enable adult content" msgid "Enable beta features" msgstr "Enable beta features" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Enable subtitles" @@ -4550,12 +4523,13 @@ msgstr "Enable external media" msgid "Enable media players for" msgstr "Enable media players for" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Enable push notifications" @@ -4581,7 +4555,7 @@ msgstr "Enable trending videos in your Discover feed" msgid "Enabled" msgstr "Enabled" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "End of feed" @@ -4608,7 +4582,7 @@ msgstr "Enter a word or tag" msgid "Enter code" msgstr "Enter code" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Enter fullscreen" @@ -4650,11 +4624,11 @@ msgstr "Enter your username and password" msgid "Enters full screen" msgstr "Enters fullscreen" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Entertainment" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4658,7 @@ msgstr "Error occurred while saving file" msgid "Error receiving captcha response." msgstr "Error receiving captcha response." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Error: {error}" @@ -4696,8 +4670,8 @@ msgstr "Everybody can reply" msgid "Everybody can reply to this post." msgstr "Everybody can reply to this post." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Everyone" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Everyone" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Everything else" @@ -4738,7 +4712,7 @@ msgstr "Exclude users you follow" msgid "Excludes users you follow" msgstr "Excludes users you follow" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Exit fullscreen" @@ -4755,11 +4729,11 @@ msgstr "Expand list of users" msgid "Expand or collapse the full post you are replying to" msgstr "Expand or collapse the full post you are replying to" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expand post text" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Expands or collapses post text" @@ -4802,15 +4776,15 @@ msgstr "Explicit or potentially disturbing media." msgid "Explicit sexual images." msgstr "Explicit sexual images." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explore" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Explore the app" @@ -4844,7 +4818,7 @@ msgstr "External Media" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "External Media Preferences" @@ -4886,7 +4860,7 @@ msgstr "Failed to change handle. Please try again." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Failed to copy link" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Failed to leave group chat" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Failed to load conversations" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Failed to load feeds" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Failed to load feeds preferences" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Failed to load notification settings." @@ -5012,14 +4987,14 @@ msgstr "Failed to load preference." msgid "Failed to load profiles" msgstr "Failed to load profiles" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Failed to load suggested feeds" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Failed to load suggested follows" @@ -5027,12 +5002,12 @@ msgstr "Failed to load suggested follows" msgid "Failed to lock group chat" msgstr "Failed to lock group chat" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Failed to mark all chats as read" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Failed to rescind your request. Please try again." msgid "Failed to resolve location. Please try again." msgstr "Failed to resolve location. Please try again." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Failed to save draft" @@ -5191,7 +5166,7 @@ msgstr "Fake account or bot" msgid "False information about elections" msgstr "False information about elections" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "Feed creator" msgid "Feed identifier" msgstr "Feed identifier" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feed menu" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback sent to feed operator" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds updated!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds we think you might like." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Fetch update" @@ -5273,11 +5244,11 @@ msgstr "Fetch update" msgid "File saved successfully!" msgstr "File saved successfully!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Filter by author" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Filter by author (currently: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Filter this search by {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filter who can opt to receive notifications for your activity" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filter who you receive notifications from" @@ -5352,8 +5323,8 @@ msgstr "Find accounts to follow" msgid "Find and invite friends" msgstr "Find and invite friends" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Find Contacts" @@ -5387,7 +5358,7 @@ msgstr "Find your friends" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Find your people" @@ -5429,7 +5400,7 @@ msgstr "Focus the search field" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Follow {0}" msgid "Follow {displayName}" msgstr "Follow {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Follow {handle}" @@ -5453,11 +5424,11 @@ msgstr "Follow {handle}" msgid "Follow 10 accounts" msgstr "Follow 10 accounts" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Follow 10 people to get started" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Follow 7 accounts" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Followers can join" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Followers of @{0} that you know" @@ -5544,7 +5515,7 @@ msgstr "Followers you know" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Following {0}" msgid "Following {displayName}" msgstr "Following {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Following {handle}" @@ -5578,21 +5549,21 @@ msgstr "Following {handle}" msgid "Following feed preferences" msgstr "Following feed preferences" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Following Feed Preferences" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Follows you" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Font" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Font size" @@ -5612,13 +5583,13 @@ msgstr "For security reasons, we’ll need to send a confirmation code to your e msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "For the best experience, we recommend using the theme font." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "For You" @@ -5628,7 +5599,7 @@ msgstr "For You" msgid "Forever" msgstr "Forever" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Forget the noise" @@ -5647,11 +5618,13 @@ msgstr "Forgot password?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Free your feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "From" @@ -5674,7 +5647,7 @@ msgstr "From <0/>" msgid "From these people" msgstr "From these people" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generate a starter pack" @@ -5718,39 +5691,39 @@ msgstr "Get early access to experimental features we’re testing." msgid "Get help" msgstr "Get help" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Get notifications for starter pack joins, verification, and other activity." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Get notifications when people follow you." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Get notifications when people like your posts." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Get notifications when people like your reposts." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Get notifications when people mention you." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Get notifications when people quote your posts." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Get notifications when people reply to your posts." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Get notifications when people repost your posts." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Get notifications when people repost your reposts." @@ -5762,15 +5735,15 @@ msgstr "Get notifications when people send you message requests." msgid "Get notifications when people send you messages." msgstr "Get notifications when people send you messages." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Get notifications when there's activity on posts you're subscribed to." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Get notified about new posts" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Get notified about posts and replies from accounts you choose." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Get notified of new posts from {name}" @@ -5799,11 +5772,11 @@ msgstr "Get started" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF uploaded" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Give your profile a face" @@ -5813,20 +5786,20 @@ msgstr "Glorification of violence" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Go live for" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Go to {0}'s profile" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Group chat name updated" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Group chat settings" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Group chats can only have a maximum of {0, plural, other {# people}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Group is locked" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Group name" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" @@ -6077,7 +6051,7 @@ msgstr "Harmful or high-risk activities" msgid "Harming or endangering minors" msgstr "Harming or endangering minors" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Have a code? <0>Click here." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Have we got your location wrong? <0>Tap here to update your location with GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Having trouble?" @@ -6114,7 +6088,7 @@ msgstr "Held by Bluesky for 7 days to prevent abuse, then deleted" msgid "Help" msgstr "Help" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Help people know you're not a bot by uploading a picture or creating an avatar." @@ -6140,7 +6114,7 @@ msgstr "Hi there!" msgid "Hidden" msgstr "Hidden" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Hidden by your moderation settings." @@ -6148,9 +6122,9 @@ msgstr "Hidden by your moderation settings." msgid "Hidden list" msgstr "Hidden list" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Hidden list" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Hide" @@ -6198,7 +6172,7 @@ msgstr "Hide reply for everyone" msgid "Hide reply for me" msgstr "Hide reply for me" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Hide this card" @@ -6218,12 +6192,12 @@ msgstr "Hide this reply?" msgid "Hide translation" msgstr "Hide translation" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Hide trending topics" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Hide trending topics?" @@ -6240,7 +6214,7 @@ msgstr "Hide user list" msgid "Hide verification badges" msgstr "Hide verification badges" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Hides the content" @@ -6293,8 +6267,8 @@ msgstr "Hmm, we couldn't load that moderation service." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Hold up! We’re gradually giving access to video and you’re still waiting in line. Check back soon!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Hosting provider: {0}" msgid "Hosting provider: Bluesky" msgstr "Hosting provider: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Hot" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "How it works:" @@ -6409,6 +6379,7 @@ msgstr "If you update your email address, email 2FA will be disabled." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "If you want to change your password, we will send you a code to verify that this is your account." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." @@ -6548,7 +6519,7 @@ msgstr "In-app, push, everyone" msgid "In-app, push, people you follow" msgstr "In-app, push, people you follow" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Inbox empty" @@ -6560,6 +6531,7 @@ msgstr "Inbox zero!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "It's just you right now! Add more people to your starter pack by searching above." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Job ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "Join the conversation" msgid "Journalism" msgstr "Journalism" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Keep editing" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS website" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Labelled by {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Labelled by the author." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Labels" @@ -6852,7 +6824,7 @@ msgstr "Labels added" msgid "Labels applied to this post" msgstr "Labels applied to this post" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Labels are annotations on users and content. They can be used to hide, warn and categorise the network." @@ -6864,7 +6836,7 @@ msgstr "Labels on your account" msgid "Language" msgstr "Language" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Language Settings" @@ -6874,7 +6846,7 @@ msgstr "Language Settings" msgid "Languages" msgstr "Languages" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Larger" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Last initiated just now" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Latest" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Learn more" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Learn More" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Learn more about <0>how to use advanced search." @@ -6937,8 +6909,8 @@ msgstr "Learn more about importing contacts" msgid "Learn more about self hosting your PDS." msgstr "Learn more about self-hosting your PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Learn more about the moderation applied to this content" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Learn more about these changes and how to share your thoughts with us by reading our blog post." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Learn more about this warning" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Learn more in your <0>account settings." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Learn more." @@ -6993,8 +6965,8 @@ msgstr "Leave" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Leaving Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Leaving this chat will lock it permanently and you won’t be able to rejoin." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Left group chat." @@ -7042,7 +7014,7 @@ msgstr "Left group chat." msgid "left to go." msgstr "left to go." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Let me choose" @@ -7057,7 +7029,7 @@ msgstr "Let's go!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Light" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Light" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Like" @@ -7076,7 +7048,7 @@ msgstr "Like" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# like} other {# likes}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Like 10 posts" @@ -7085,7 +7057,7 @@ msgstr "Like 10 posts" msgid "Like 10 posts to train the Discover feed" msgstr "Like 10 posts to train the Discover feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Like this feed" @@ -7093,8 +7065,8 @@ msgstr "Like this feed" msgid "Like this labeler" msgstr "Like this labeller" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Liked by" @@ -7111,27 +7083,45 @@ msgstr "Liked By" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Liked by {0, plural, one {# user} other {# users}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Liked by {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Liked by {0} and {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Liked by {likeCount, plural, one {# user} other {# users}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Likes" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Likes of your reposts" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Likes on this post" @@ -7144,7 +7134,7 @@ msgstr "Linear" msgid "Link copied to clipboard" msgstr "Link copied to clipboard" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "List" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "List unmuted" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Live event happening now: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Live event hidden" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Live event unhidden" @@ -7279,12 +7269,12 @@ msgstr "Live feature is in beta" msgid "Live link" msgstr "Live link" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Load more" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Load more suggested feeds" @@ -7292,8 +7282,8 @@ msgstr "Load more suggested feeds" msgid "Load new notifications" msgstr "Load new notifications" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Lock this group chat" msgid "Locked" msgstr "Locked" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7387,7 +7377,7 @@ msgstr "Love GIFs" msgid "Make adjustments to email settings for your account" msgstr "Make adjustments to email settings for your account" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Make one for me" @@ -7418,15 +7408,15 @@ msgstr "Manual" msgid "Mark all as read" msgstr "Mark all as read" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Mark all chats as read" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Mark as read" msgid "Marked all as read" msgstr "Marked all as read" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Marked all chats as read" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Marked all requests as read" @@ -7456,8 +7446,12 @@ msgstr "Marked all requests as read" msgid "Maybe later" msgstr "Maybe later" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7469,7 @@ msgstr "Media stored on another device" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media that may be disturbing or inappropriate for some audiences." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Member removed from group chat." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "mentioned users" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mentions" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Message deleted" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Message failed to send." @@ -7563,15 +7557,15 @@ msgstr "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Message options" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Messages" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Messages from this person are hidden while they are blocking you." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Messages from this person are hidden while you are blocking them." @@ -7592,7 +7586,7 @@ msgstr "Misleading" msgid "Missing media" msgstr "Missing media" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -7636,7 +7630,7 @@ msgstr "Moderation list updated" msgid "Moderation lists" msgstr "Moderation lists" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderation Lists" @@ -7645,7 +7639,7 @@ msgstr "Moderation Lists" msgid "moderation settings" msgstr "moderation settings" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderation states" @@ -7786,7 +7780,7 @@ msgstr "Muted" msgid "Muted accounts" msgstr "Muted accounts" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Muted Accounts" @@ -7867,7 +7861,6 @@ msgstr "Need to report a copyright violation, legal request, or regulatory compl msgid "Nevermind, create a handle for me" msgstr "Nevermind, create a handle for me" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "New" @@ -7893,11 +7886,11 @@ msgstr "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "New chat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "New Feature" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "New followers" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "New group chat" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "New group chat" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "New group chat with:" @@ -7966,13 +7959,13 @@ msgstr "New list" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "New message requests" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "New messages" @@ -7982,12 +7975,12 @@ msgstr "New messages" msgid "New password" msgstr "New password" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "New post" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Newest replies first" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "News" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Next image" msgid "Night" msgstr "Night" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." @@ -8098,7 +8091,7 @@ msgstr "No expiry set" msgid "No feeds found. Try searching for something else." msgstr "No feeds found. Try searching for something else." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "No followers yet" @@ -8118,7 +8111,7 @@ msgstr "No image" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "No likes yet" @@ -8135,7 +8128,7 @@ msgstr "No lists" msgid "No longer following {0}" msgstr "No longer following {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "No media yet" @@ -8143,7 +8136,7 @@ msgstr "No media yet" msgid "No messages yet" msgstr "No messages yet" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." @@ -8184,12 +8177,12 @@ msgstr "No one can send messages" msgid "No posts here" msgstr "No posts here" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "No posts yet" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "No quotes yet" @@ -8202,7 +8195,7 @@ msgstr "No recent GIFs yet. Pick one to see it here." msgid "No replies" msgstr "No replies" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "No replies yet" @@ -8217,13 +8210,13 @@ msgstr "No result" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "No results" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "No results for \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "No results found" msgid "No results found for \"{query}\"" msgstr "No results found for \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "No results found for “<0>{query}” with advanced search filters applied." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "No results found for “<0>{query}”." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "No results found for your query with advanced search filters applied." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "No results." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "No Starter Packs yet" @@ -8265,7 +8258,7 @@ msgstr "No thanks" msgid "No translation received from your device." msgstr "No translation received from your device." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "No video posts yet" @@ -8278,7 +8271,7 @@ msgstr "Nobody" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nobody has liked this yet. Maybe you should be the first!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nobody has quoted this yet. Maybe you should be the first!" @@ -8298,6 +8291,10 @@ msgstr "Non-consensual intimate imagery" msgid "Non-sexual Nudity" msgstr "Non-sexual Nudity" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "None" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Not available on this platform." msgid "Not followed by anyone you’re following" msgstr "Not followed by anyone you’re following" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Not Found" @@ -8333,7 +8330,7 @@ msgstr "Note about sharing" 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 "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." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Note: This post is only visible to logged-in users." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Nothing saved yet" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Notification settings" @@ -8353,11 +8350,12 @@ msgstr "Notification settings" msgid "Notification sounds" msgstr "Notification sounds" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Oh no!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okay" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Onboarding reset" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "One of the selected recipients does not allow group chats." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "One of the selected recipients has blocked you and cannot be messaged." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "One or more GIFs is missing alt text." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "One or more images is missing alt text." @@ -8454,11 +8454,11 @@ msgstr "One or more of your selected files are not supported." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {The maximum number of characters is # characters.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "One or more videos is missing alt text." @@ -8471,7 +8471,7 @@ msgstr "Only {0} can reply." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "Only posts with videos" msgid "Only replies" msgstr "Only replies" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Only WebVTT (.vtt) files are supported" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Oops, this profile doesn't exist. Try scanning another one." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Oops!" @@ -8544,7 +8544,7 @@ msgstr "Oops!" msgid "Open advanced search options" msgstr "Open advanced search options" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Open avatar creator" @@ -8570,21 +8570,22 @@ msgstr "Open conversation options" msgid "Open draft" msgstr "Open draft" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Open drawer menu" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Open emoji picker" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Open feed info screen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Open feed options menu" @@ -8627,7 +8628,7 @@ msgstr "Open moderation debug page" msgid "Open muted words and tags settings" msgstr "Open muted words and tags settings" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Open pack" @@ -8699,7 +8700,7 @@ msgstr "Opens additional details for a debug entry" msgid "Opens alt text dialog" msgstr "Opens alt text dialog" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Opens camera on device" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Opens flow to create a new Bluesky account" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Opens flow to sign in to your existing Bluesky account" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Password updated!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pause" @@ -8925,12 +8926,12 @@ msgstr "Pause" msgid "Pause GIF" msgstr "Pause GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pause video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "People" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "People {ownerName} follows can request to join" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "People followed by @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "People following @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "People I follow" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "People I follow can request to join" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "People you follow" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Pictures meant for adults." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Pin feed" @@ -9034,7 +9035,7 @@ msgstr "Pin feed" msgid "Pin to home" msgstr "Pin to home" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Pin to Home" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Pinned" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Pinned {0} to Home" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Pinned to your feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Play" @@ -9076,8 +9077,8 @@ msgstr "Play {0}" msgid "Play GIF" msgstr "Play GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Play video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Please write your message below:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politics" @@ -9269,7 +9270,7 @@ msgstr "Politics" msgid "Porn" msgstr "Porn" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Post" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Post a photo" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Post a video" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Post All" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Post anyway" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Post blocked" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Post by @{0}" @@ -9340,7 +9341,7 @@ msgstr "Post Hidden by You" msgid "Post interaction settings" msgstr "Post interaction settings" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Post Interaction Settings" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Post pinned" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Post saved" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Post unpinned" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Posts" @@ -9398,6 +9396,10 @@ msgstr "Posts can be muted based on their text, their tags, or both. We recommen msgid "Posts hidden" msgstr "Posts hidden" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Posts, Replies" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potentially misleading link" @@ -9449,20 +9451,21 @@ msgstr "Privacy" msgid "Privacy and security" msgstr "Privacy and security" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy and Security" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Privacy and Security settings" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Privacy Policy" msgid "Privacy violation of a minor" msgstr "Privacy violation of a minor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Processing GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Processing video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Public, shareable lists of users to mute or block in bulk." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publish post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publish posts" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publish replies" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publish reply" @@ -9599,12 +9602,12 @@ msgstr "Quote posts disabled" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Quotes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Quotes of this post" @@ -9647,7 +9650,7 @@ msgstr "Reactivate your account" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Read {0, plural, one {# more reply} other {# more replies}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Read about how to use advanced search filters" @@ -9657,11 +9660,11 @@ msgstr "Read about how to use advanced search filters" msgid "Read blog post" msgstr "Read blog post" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Read less" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Read more" @@ -9687,11 +9690,11 @@ msgstr "Read the Bluesky Privacy Policy" msgid "Read the Bluesky Terms of Service" msgstr "Read the Bluesky Terms of Service" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Real conversations." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Real people." @@ -9721,10 +9724,6 @@ msgstr "Recent searches" msgid "Recently used" msgstr "Recently used" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recommended" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconnect" @@ -9748,7 +9747,7 @@ msgstr "Reject chat request" msgid "Reject join request" msgstr "Reject join request" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Reload conversations" @@ -9766,7 +9765,7 @@ msgstr "Reload conversations" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Remove" @@ -9792,8 +9791,8 @@ msgstr "Remove {displayName}?" msgid "Remove {q}" msgstr "Remove {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Remove account" @@ -9845,15 +9844,15 @@ msgstr "Remove filter" msgid "Remove from chat" msgstr "Remove from chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Remove from my feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Remove from quick access?" @@ -9862,7 +9861,7 @@ msgstr "Remove from quick access?" msgid "Remove from saved feeds" msgstr "Remove from saved feeds" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Remove from saved posts" @@ -9880,8 +9879,8 @@ msgstr "Remove image" msgid "Remove live status" msgstr "Remove live status" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Remove member" @@ -9943,7 +9942,7 @@ msgstr "Removed from list" msgid "Removed from saved feeds" msgstr "Removed from saved feeds" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Removed from saved posts" @@ -9952,7 +9951,7 @@ msgstr "Removed from saved posts" msgid "Removed from starter pack" msgstr "Removed from starter pack" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Replied to you" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Replied-to message from {senderName}, tap to scroll to it" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Replied-to message was sent before you joined" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Replied-to message, tap to scroll to it" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Replies" @@ -10037,7 +10037,7 @@ msgstr "Replies to this post are disabled." msgid "Reply" msgstr "Reply" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Reply" @@ -10098,8 +10098,8 @@ msgstr "Report conversation" msgid "Report dialog" msgstr "Report dialog" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Report feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Reposted by you" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Reposts" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reposts of this post" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Reposts of your reposts" @@ -10253,7 +10253,7 @@ msgstr "Requested" msgid "Requests" msgstr "Requests" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Retries the last action, which errored out" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Returns to home page" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Returns to previous page" @@ -10446,27 +10446,27 @@ msgstr "Save birthdate" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Save changes" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Save changes?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Save draft" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Save draft?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Save QR code" msgid "Save these options for next time" msgstr "Save these options for next time" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Save to my feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Saved Feeds" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Saved Posts" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Saved to your feeds" @@ -10520,8 +10520,8 @@ msgstr "Saved to your feeds" msgid "Say hello!" msgstr "Say hello!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Say hi to someone" @@ -10535,7 +10535,7 @@ msgstr "Scan" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Scan QR code" @@ -10543,15 +10543,15 @@ msgstr "Scan QR code" msgid "Science" msgstr "Science" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Scroll left" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Scroll right" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Scroll to the message this is replying to" @@ -10564,8 +10564,8 @@ msgstr "Scroll to top" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Search" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Search @{0}'s posts" @@ -10612,11 +10612,11 @@ msgstr "Search for {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Search for feeds that you want to suggest to others." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Search for more accounts" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Search for more feeds" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Search GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Search is currently unavailable when logged out" @@ -10709,6 +10709,7 @@ msgstr "See jobs at Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "See more" @@ -10716,8 +10717,12 @@ msgstr "See more" msgid "See more suggested profiles" msgstr "See more suggested profiles" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "See suggested accounts" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Select \"{interestsDisplayName}\" category" @@ -10748,7 +10753,7 @@ msgstr "Select {0}" msgid "Select {langName}" msgstr "Select {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Select a colour" @@ -10764,11 +10769,11 @@ msgstr "Select account" msgid "Select an app language" msgstr "Select an app language" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Select an avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Select an emoji" @@ -10780,12 +10785,13 @@ msgstr "Select an option" msgid "Select app language" msgstr "Select app language" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Select subtitle file (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Select chat \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Select GIF" msgid "Select GIF \"{0}\"" msgstr "Select GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Select group chat members" @@ -10864,7 +10870,7 @@ msgstr "Select primary language" msgid "Select telephone code" msgstr "Select telephone code" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Select the {emojiName} emoji as your avatar" @@ -10945,7 +10951,8 @@ msgstr "Send message" msgid "Send post to {name}" msgstr "Send post to {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Send post to..." @@ -10963,12 +10970,12 @@ msgstr "Send the message from your phone" msgid "Send verification email" msgstr "Send verification email" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Set your hosting provider manually" msgid "Sets email for password reset" msgstr "Sets email for password reset" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Settings" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Settings for activity from others" @@ -11036,49 +11043,49 @@ msgstr "Settings for activity from others" msgid "Settings for allowing others to be notified of your posts" msgstr "Settings for allowing others to be notified of your posts" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Settings for like notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Settings for mention notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Settings for new follower notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Settings for notifications for everything else" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Settings for notifications for likes of your reposts" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Settings for notifications for new message requests" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Settings for notifications for new messages" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Settings for notifications for reposts of your reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Settings for quote notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Settings for reply notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Settings for repost notifications" @@ -11115,8 +11122,8 @@ msgstr "Share age range" msgid "Share anyway" msgstr "Share anyway" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Share author DID" @@ -11127,7 +11134,7 @@ msgstr "Share author DID" msgid "Share feedback" msgstr "Share feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Share link dialog" msgid "Share my profile" msgstr "Share my profile" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Share post at:// URI" @@ -11169,12 +11176,12 @@ msgstr "Share Profile" msgid "Share QR code" msgstr "Share QR code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Share this feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Share this search" @@ -11186,8 +11193,8 @@ msgstr "Share this starter pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Share this starter pack and help people join your community on Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Share your contacts to find friends" msgid "Share your thoughts…" msgstr "Share your thoughts…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Shared Preferences Tester" @@ -11219,7 +11226,7 @@ msgstr "Sharing your age range reveals only the range associated with your Apple msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner KWS to complete your verification and enable access on all platforms." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Show" msgid "Show alt text" msgstr "Show alt text" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Show anyway" @@ -11274,9 +11281,9 @@ msgstr "Show list anyway" msgid "Show lists of users to select from" msgstr "Show lists of users to select from" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Show more" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Show warning and filter from feeds" msgid "Show when you’re live" msgstr "Show when you’re live" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Shows information about when this post was created" @@ -11341,15 +11348,15 @@ msgstr "Shows information about when this post was created" msgid "Shows other accounts you can switch to" msgstr "Shows other accounts you can switch to" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Shows the content" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Shows the content" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Sign out?" msgid "Sign up" msgstr "Sign up" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Sign-in Required" @@ -11469,7 +11476,7 @@ msgstr "Skip" msgid "Skip contact sharing and continue to the app" msgstr "Skip contact sharing and continue to the app" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Skip empty posts?" @@ -11487,7 +11494,7 @@ msgstr "Skip to next step" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Smaller" @@ -11499,7 +11506,7 @@ msgstr "Snoozes the reminder" msgid "So many thoughts, you should post one" msgstr "So many thoughts, you should post one" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Social media you control." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Someone left the group" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Someone reacted {0}" @@ -11554,7 +11561,7 @@ msgstr "Someone reacted {0}" msgid "Someone reacted {0} to {target}" msgstr "Someone reacted {0} to {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Someone replied" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Something went wrong, please try again" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Something went wrong. Please try again in a moment." msgid "Something went wrong. Please try again." msgstr "Something went wrong. Please try again." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Something wrong? Let us know." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam or other inauthentic behaviour or deception" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sports" @@ -11668,7 +11675,7 @@ msgstr "Start a conversation, and it will appear here." msgid "Start a group chat" msgstr "Start a group chat" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Start a new chat" @@ -11682,17 +11689,17 @@ msgstr "Start adding people" msgid "Start adding people!" msgstr "Start adding people!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Start chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Start chat with {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Starter Pack" @@ -11715,12 +11722,16 @@ msgstr "Starter pack by you" msgid "Starter pack is invalid" msgstr "Starter pack is invalid" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Starter packs" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Starter Packs" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Starter packs let you easily share your favourite feeds and people with your friends." @@ -11728,7 +11739,7 @@ msgstr "Starter packs let you easily share your favourite feeds and people with msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Starter packs let you share your favourite feeds and people with your friends." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Starter Packs let you share your favourite feeds and people with your friends." @@ -11742,7 +11753,7 @@ msgstr "Status Page" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Step {0} of {1}" @@ -11754,7 +11765,7 @@ msgstr "Storage cleared, you need to restart the app now." msgid "Stored as part of a secure code for matching with others" msgstr "Stored as part of a secure code for matching with others" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Subscribe to {publicationTitle} on {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscribe to @{0} to use these labels:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Successfully verified" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Suggested" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Suggested accounts" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sunset" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Support for this feature in your country has not been enabled yet! Please check back later." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Suspended accounts cannot participate in a group chat." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Suspended accounts cannot participate in chat." @@ -11921,8 +11934,8 @@ msgstr "Switch to {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "System" @@ -11945,7 +11958,7 @@ msgstr "Take the conversation private." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tap for details" @@ -11976,7 +11989,7 @@ msgstr "Tap to close context menu" msgid "Tap to copy this invite link" msgstr "Tap to copy this invite link" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tap to dismiss" @@ -12003,7 +12016,7 @@ msgstr "Tap to remove your {0} reaction" msgid "Tap to request access to join this group chat" msgstr "Tap to request access to join this group chat" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tap to retry" @@ -12016,7 +12029,7 @@ msgstr "Tap to show {0} reactions" msgid "Tap to show all reactions" msgstr "Tap to show all reactions" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tap to view reactions" @@ -12032,7 +12045,7 @@ msgstr "Task complete – 10 follows!" msgid "Task complete - 10 likes!" msgstr "Task complete – 10 likes!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Teach our algorithm what you like" @@ -12060,7 +12073,7 @@ msgstr "Terms" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "That starter pack could not be found." msgid "That username is already taken" msgstr "That username is already taken" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "That's all, folks!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "That's everything!" @@ -12216,7 +12229,7 @@ msgstr "The server appears to be experiencing issues. Please try again in a few msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "The subject of the context menu" @@ -12238,7 +12251,7 @@ msgstr "The verification code you have provided is invalid. Please make sure tha msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Theme" @@ -12266,7 +12279,7 @@ msgstr "There was a problem loading GIFs. Check your connection and try again." msgid "There was a problem with your internet connection, please try again" msgstr "There was a problem with your internet connection, please try again" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "There was a problem with your internet connection, please try again" msgid "There was an issue contacting the server" msgstr "There was an issue contacting the server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "There was an issue contacting the server, please check your internet connection and try again." @@ -12283,8 +12296,8 @@ msgstr "There was an issue contacting the server, please check your internet con msgid "There was an issue fetching notifications. Tap here to try again." msgstr "There was an issue fetching notifications. Tap here to try again." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "There was an issue fetching posts. Tap here to try again." @@ -12309,7 +12322,7 @@ msgstr "There was an issue fetching your service info" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "There was an issue removing this feed. Please check your internet connection and try again." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "These settings only apply to the Following feed." msgid "These URLs" msgstr "These URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "They own this chat" @@ -12392,7 +12405,7 @@ msgstr "They own this chat" msgid "They won’t be able to rejoin unless you invite them again." msgstr "They won’t be able to rejoin unless you invite them again." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "This {screenDescription} has been flagged:" @@ -12408,7 +12421,7 @@ msgstr "This account has been marked as automated by its owner." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "This account has one or more attempted verifications, but it is not currently verified." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "This account has requested that users sign in to view their profile." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "This feed is empty! You may need to follow more users or tune your language settings." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "This feed is empty." @@ -12554,7 +12567,7 @@ msgstr "This group is locked by a moderation action on the owner" msgid "This handle is reserved. Please try a different one." msgstr "This handle is reserved. Please try a different one." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "This image could not be used. Please try a different format like .jpg or .png." @@ -12596,7 +12609,7 @@ msgstr "This label was applied by you." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "This label was applied to the entire user account and will appear on all posts." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "This labeller hasn't declared what labels it publishes and may not be active." @@ -12621,13 +12634,13 @@ msgstr "This list is empty." msgid "This message is hidden" msgstr "This message is hidden" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "This message is hidden because this user is blocking you." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "This message is hidden because you are blocking this user." @@ -12641,7 +12654,7 @@ msgstr "This person is blocking you" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "This post claims to have been created on <0>{0}, but was first seen msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "This post has an unknown type of threadgate on it. Your app may be out of date." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "This post is only visible to logged-in users." @@ -12661,7 +12674,7 @@ msgstr "This post was deleted by its author" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "This post will be hidden from feeds and threads. This cannot be undone." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "This post's author has disabled quote posts." @@ -12698,11 +12711,12 @@ msgstr "This should only take a few minutes." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "This user does not have a display name, and therefore cannot be verified." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "This user doesn't have any followers." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "This user has blocked you and cannot be messaged." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "This user has blocked you. You cannot view their content." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "This user has disabled chat and cannot be messaged." @@ -12733,11 +12748,11 @@ msgstr "This user is included in the <0>{0} list which you have muted." msgid "This user is new here. Press for more info about when they joined." msgstr "This user is new here. Press for more info about when they joined." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "This user isn't following anyone." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "This will remove @{0} from the quick access list." @@ -12786,7 +12801,7 @@ msgstr "Thread Preferences" msgid "Threaded" msgstr "Threaded" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Threads Preferences" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Too many contacts – you've exceeded the number of contacts you can import to find your friends" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Top" @@ -12858,7 +12873,7 @@ msgstr "Top" msgid "Top replies first" msgstr "Top replies first" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Topic" @@ -12893,7 +12908,9 @@ msgstr "Translation to the same language is unavailable on your device." msgid "Tree view" msgstr "Tree view" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Trending" @@ -12902,7 +12919,7 @@ msgstr "Trending" msgid "Trending GIFs" msgstr "Trending GIFs" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Trending options" @@ -12918,11 +12935,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Trust emerges from relationships, communities and shared context, so we’re also enabling <0>trusted verifiers: organisations that can directly issue verification." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Try a different search term or remove some filters." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Try a different search term." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Unable to fetch join requests." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Unable to find a selected recipient." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Unable to find the selected recipient." @@ -13024,12 +13043,12 @@ msgstr "Unavailable" msgid "Unavailable feed information" msgstr "Unavailable feed information" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Unblock Account?" msgid "Unblock list" msgstr "Unblock list" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Unfollow {0}" msgid "Unfollow account" msgstr "Unfollow account" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Unfollows the user" @@ -13132,7 +13151,7 @@ msgstr "Unlabelled adult content" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Unlabelled, abusive, or non-consensual adult content" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Unlike" @@ -13192,7 +13211,7 @@ msgstr "Unmute this group chat" msgid "Unmute thread" msgstr "Unmute thread" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Unmute video" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Unpin" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Unpin feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Unpin from home" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Unpin moderation list" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Unpinned {0} from Home" @@ -13258,11 +13277,11 @@ msgstr "Unsubscribe from this labeller" msgid "Unsubscribed from list" msgstr "Unsubscribed from list" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Unsupported clipboard content" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Unsupported video type: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Updating reply visibility failed" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Upload a photo instead" @@ -13355,7 +13374,7 @@ msgstr "Upload from Files" msgid "Upload from Library" msgstr "Upload from Library" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Uploading GIF..." @@ -13369,7 +13388,7 @@ msgstr "Uploading images..." msgid "Uploading link thumbnail..." msgstr "Uploading link thumbnail..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Uploading video..." @@ -13408,7 +13427,7 @@ msgstr "Use this to sign in to the other app along with your handle." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "user" @@ -13510,7 +13529,7 @@ msgstr "Verification failed, please try again." msgid "Verification settings" msgstr "Verification settings" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verification Settings" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video failed to process" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Video Feed" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Video from {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video from {0}. Tap to play or pause the video" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Video Games" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video is paused" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video is playing" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video not found." @@ -13653,7 +13672,7 @@ msgstr "Video not found." msgid "Video settings" msgstr "Video settings" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video uploaded" @@ -13662,17 +13681,17 @@ msgstr "Video uploaded" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videos must be less than 3 minutes long." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "View" @@ -13691,9 +13710,9 @@ msgstr "View {0}'s avatar" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "View {0}'s profile" @@ -13724,13 +13743,13 @@ msgstr "View blogpost for more details" msgid "View debug entry" msgstr "View debug entry" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "View details" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "View full thread" @@ -13761,7 +13780,7 @@ msgstr "View more" msgid "View more trending videos" msgstr "View more trending videos" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "View post" @@ -13798,11 +13817,11 @@ msgstr "View the invite link for this group chat" msgid "View the labeling service provided by @{0}" msgstr "View the labelling service provided by @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "View this user's verifications" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "View users who like this feed" @@ -13831,7 +13850,7 @@ msgstr "View your moderation lists" msgid "View your muted accounts" msgstr "View your muted accounts" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "View your verifications" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "We're having network issues, try again" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "We’re having network issues, try again" @@ -14043,7 +14062,7 @@ msgstr "We’re having network issues, try again" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "We’re so excited to have you join us!" @@ -14064,13 +14083,15 @@ msgstr "We're sorry, but we were unable to resolve this list. If this persists, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "We're sorry, but we weren't able to load your muted words at this time. Please try again." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "We’re sorry, but your search could not be completed." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "We’re sorry, but your search could not be completed. Please try again in a few minutes." @@ -14078,7 +14099,7 @@ msgstr "We’re sorry, but your search could not be completed. Please try again msgid "We're sorry, you cannot access this screen at this time." msgstr "We're sorry, you cannot access this screen at this time." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "We're sorry! The post you are replying to has been deleted." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "what’s up" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "What's up?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Who can verify?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Whoops!" @@ -14220,21 +14241,21 @@ msgstr "Would you like to block this user and/or leave this conversation?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Would you like to save this as a draft before viewing your drafts?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Would you like to save this as a draft to edit later?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Write a post" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Write post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Write your reply" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "You are blocking {0}" @@ -14342,7 +14363,7 @@ msgstr "You are no longer live" msgid "You are not allowed to upload videos." msgstr "You are not allowed to upload videos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "You are not following anyone yet" @@ -14362,7 +14383,7 @@ msgstr "You are verified. You will lose your verification status if you change y msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "You are verified. You will lose your verification status if you change your handle. <0>Learn more." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "You can adjust your interests at any time from \"Content and media\" settings." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "You can now sign in with your new password." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "You can only save drafts up to 1,000 characters." @@ -14439,9 +14460,9 @@ msgstr "You can read chat history but can’t send new messages." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "You can update this later from your settings." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "You cannot create a group chat yet." @@ -14555,7 +14577,7 @@ msgstr "You have successfully verified your email address. You can close this di msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "You have temporarily reached the limit for video uploads. Please try again later." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "You have unsaved changes to this draft, would you like to save them?" @@ -14563,7 +14585,7 @@ msgstr "You have unsaved changes to this draft, would you like to save them?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "You have unsaved changes. Would you like to save them before viewing your drafts?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "You haven't created a starter pack yet!" @@ -14614,7 +14636,7 @@ msgstr "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_P msgid "You may only add up to 3 feeds" msgstr "You may only add up to 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "You must be a chat owner to remove a member." @@ -14622,7 +14644,7 @@ msgstr "You must be a chat owner to remove a member." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "You must be following at least seven other people to generate a starter pack." @@ -14639,7 +14661,7 @@ msgstr "You need to allow access to your media library." msgid "You need to verify your email address before you can enable email 2FA." msgstr "You need to verify your email address before you can enable email 2FA." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "You own this chat" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "You probably want to restart the app now." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "You reacted {0}" @@ -14667,15 +14689,15 @@ msgstr "You reacted {0} to {target}" msgid "You recently changed your birthdate" msgstr "You recently changed your birthdate" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "You replied" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "You replied to {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "You replied to yourself" @@ -14715,11 +14737,11 @@ msgstr "You won’t be able to rejoin unless you’re invited." msgid "You: {message}" msgstr "You: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "You'll follow the suggested users and feeds once you finish creating your account!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "You'll follow the suggested users once you finish creating your account!" @@ -14791,7 +14813,7 @@ msgstr "You've reached the end of the active content." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "You've reached the end of your feed! Find some more accounts to follow." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "You've reached the maximum number of drafts" @@ -14799,7 +14821,7 @@ msgstr "You've reached the maximum number of drafts" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "You've reached the maximum number of requests allowed. Please try again later." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." @@ -14815,11 +14837,11 @@ msgstr "You've reached your daily limit for video uploads (too many bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "You've reached your daily limit for video uploads (too many videos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "You've run out of videos to watch. Maybe it's a good time to take a break?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Your account" @@ -14835,11 +14857,11 @@ msgstr "Your account has been suspended" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Your account is not yet old enough to upload videos. Please try again later." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Your account is too new" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Your account must be at least 7 days old to create a new group chat." @@ -14930,8 +14952,8 @@ msgstr "Your hosting provider can’t be detected from an email address, so the msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Your hosting provider is detected automatically from the username you enter." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Your interests have been updated!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Your interests help us find what you like!" @@ -14967,11 +14989,11 @@ msgstr "Your password has been changed successfully! Please use your new passwor msgid "Your password must be at least 8 characters long." msgstr "Your password must be at least 8 characters long." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Your post was sent" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Your posts were sent" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Your preferred language" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Your profile picture" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Your profile picture surrounded by concentric circles of other users' profile pictures" @@ -14992,7 +15014,7 @@ msgstr "Your profile picture surrounded by concentric circles of other users' pr msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Your profile, posts, feeds and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Your reply was sent" @@ -15005,7 +15027,7 @@ msgstr "Your report will be sent to <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Your selected interests help us serve you content you care about." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index 5e8d35e2ef..f02ade7988 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -192,10 +192,7 @@ msgid "{0, plural, one {following} other {following}}" msgstr "" #. placeholder {0}: profile.postsCount || 0 -#. placeholder {0}: trend.postCount -#: src/components/interstitials/FeedTrendingTopics.tsx:220 #: src/screens/Profile/Header/Metrics.tsx:58 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:150 msgid "{0, plural, one {post} other {posts}}" msgstr "" @@ -227,16 +224,6 @@ msgstr "" msgid "{0} (Account)" msgstr "" -#. '{postCount} {posts}', e.g., '1.2K posts' -#. '{postCount} {posts}', e.g., '1.2K posts' -#. placeholder {0}: formatCount(i18n, trend.postCount) -#. placeholder {1}: import {useMemo} from 'react' import {Pressable, View} from 'react-native' import {Image} from 'expo-image' import { type AppBskyUnspeccedDefs, moderateProfile, RichText as RichTextApi, } from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useTrendingSettings} from '#/state/preferences/trending' import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {formatCount} from '#/view/com/util/numeric/format' import {atoms as a, useGutters, useTheme, type ViewStyleProp} from '#/alf' import {AvatarStack} from '#/components/AvatarStack' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import {Link} from '#/components/Link' import {RichText} from '#/components/RichText' import {SubtleHover} from '#/components/SubtleHover' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' import * as ModuleHeader from '../components/ModuleHeader' const TOPIC_COUNT = 5 const IMAGE_SIZE = 56 export function ExploreTrendingTopics() { const {enabled} = useTrendingConfig() const {trendingDisabled} = useTrendingSettings() return enabled && !trendingDisabled ? : null } function Inner() { const ax = useAnalytics() const {data: trending, error, isLoading, isRefetching} = useGetTrendsQuery() const noTopics = !isLoading && !error && !trending?.trends?.length const showLoading = isLoading || isRefetching if (!showLoading && (error || !trending?.trends || noTopics)) return null return ( Trending {showLoading ? Array.from({length: TOPIC_COUNT}).map((__, i) => ( )) : trending?.trends.map((trend, index) => ( { ax.metric('trendingTopic:click', { context: 'explore', recId: trending.recId, }) }} /> ))} ) } export function TrendRow({ trend, rank, children, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number children?: React.ReactNode onPress?: () => void }) { const t = useTheme() const {t: l, i18n} = useLingui() const gutters = useGutters([0, 'base']) const actors = useModerateTrendingActors(trend.actors) const description = useMemo(() => { if (!trend.description) return const rt = new RichTextApi({text: trend.description}) rt.detectFacetsWithoutResolution() return rt }, [trend.description]) let imageUrl = null // TODO Image URL goes here when available. -dsb return ( {({hovered, pressed}) => ( <> {rank}. {trend.displayName} {description ? ( ) : null} {actors.length > 0 ? ( ) : null} {formatCount(i18n, trend.postCount)}{' '} {plural(trend.postCount, {one: 'post', other: 'posts'})} {imageUrl ? ( {trend.topic} ) : null} {children} )} ) } // Unused atm, but leaving here so we don't lose localization. -dsb export function useCategoryDisplayName( category: AppBskyUnspeccedDefs.TrendView['category'], ) { const {t: l} = useLingui() switch (category) { case 'sports': return l`Sports` case 'politics': return l`Politics` case 'video-games': return l`Video Games` case 'pop-culture': return l`Entertainment` case 'news': return l`News` case 'other': default: return null } } export function TrendingTopicRowSkeleton() { const t = useTheme() const gutters = useGutters([0, 'base']) return ( {/* TODO Image placeholder goes here when images are available. -dsb */} ) } function useModerateTrendingActors( actors: AppBskyUnspeccedDefs.TrendView['actors'], ) { const moderationOpts = useModerationOpts() return useMemo(() => { if (!moderationOpts) return [] return actors .filter(actor => { const decision = moderateProfile(actor, moderationOpts) return !decision.ui('avatar').filter && !decision.ui('avatar').blur }) .slice(0, 3) }, [actors, moderationOpts]) } -#. placeholder {1}: import {useMemo} from 'react' import {Pressable, View} from 'react-native' import {LinearGradient} from 'expo-linear-gradient' import {type AppBskyUnspeccedDefs, moderateProfile} from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useTrendingSettings} from '#/state/preferences/trending' import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {formatCount} from '#/view/com/util/numeric/format' import { atoms as a, useGutters, useLayoutBreakpoints, useTheme, type ViewStyleProp, } from '#/alf' import {alpha} from '#/alf/utils' import {AvatarStack} from '#/components/AvatarStack' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import {Link} from '#/components/Link' import {SubtleHover} from '#/components/SubtleHover' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' const TOPIC_COUNT = 3 export function FeedTrendingTopicsInterstitial() { const {enabled} = useTrendingConfig() const {trendingDisabled} = useTrendingSettings() const {rightNavVisible} = useLayoutBreakpoints() return enabled && !trendingDisabled && !rightNavVisible ? : null } function Inner() { const t = useTheme() const {t: l} = useLingui() const gutters = useGutters([0, 'base']) const ax = useAnalytics() const { data: trending, error, isLoading, isRefetching, } = useGetTrendsQuery({limit: TOPIC_COUNT}) const noTopics = !isLoading && !error && !trending?.trends?.length const shadowColor = alpha(t.palette.primary_100, 0.5) const gradient = { values: [ [0, t.atoms.bg.backgroundColor], [0.1, t.palette.primary_25], [0.9, t.palette.primary_25], [1, t.atoms.bg.backgroundColor], ], hover_value: t.palette.white, } if (error || noTopics) { return null } return ( c[1]) as [string, string, ...string[]]} locations={ gradient.values.map(c => c[0]) as [number, number, ...number[]] } style={[a.absolute, a.inset_0]} /> Trending See more {isLoading || isRefetching ? Array.from({length: TOPIC_COUNT}).map((_, i) => ( )) : trending?.trends?.map((trend, index) => ( { ax.metric('trendingTopic:click', {context: 'interstitial'}) }} /> ))} ) } function TrendRow({ trend, rank, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number children?: React.ReactNode onPress?: () => void }) { const t = useTheme() const {t: l, i18n} = useLingui() const actors = useModerateTrendingActors(trend.actors) return ( {({hovered, pressed}) => ( <> {rank}. {trend.displayName} {actors.length > 0 ? ( ) : null} {formatCount(i18n, trend.postCount)}{' '} {plural(trend.postCount, {one: 'post', other: 'posts'})} )} ) } function TrendingTopicRowSkeleton({rank}: {rank: number}) { const t = useTheme() return ( ) } function useModerateTrendingActors( actors: AppBskyUnspeccedDefs.TrendView['actors'], ) { const moderationOpts = useModerationOpts() return useMemo(() => { if (!moderationOpts) return [] return actors .filter(actor => { const decision = moderateProfile(actor, moderationOpts) return !decision.ui('avatar').filter && !decision.ui('avatar').blur }) .slice(0, 3) }, [actors, moderationOpts]) } -#: src/components/interstitials/FeedTrendingTopics.tsx:218 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 -msgid "{0} {1}" -msgstr "{0} {1}" - #. Pattern: {wordValue} in tags #. placeholder {0}: word.value #: src/components/dialogs/MutedWords.tsx:495 @@ -652,6 +639,13 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {post} other {posts}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 #: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" @@ -749,7 +743,7 @@ msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/components/interstitials/FeedTrendingTopics.tsx:203 +#: src/components/interstitials/FeedTrendingTopics.tsx:189 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -1088,7 +1082,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1184,11 +1178,11 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2268 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" @@ -1939,7 +1933,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Are you sure you want to rescind your request to join {0}?" -#: src/view/com/composer/Composer.tsx:1738 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2009,6 +2003,10 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Avatar creator" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 @@ -2404,7 +2402,7 @@ msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/components/interstitials/FeedTrendingTopics.tsx:170 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" @@ -2532,8 +2530,8 @@ msgstr "Camera access needed" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1816 -#: src/view/com/composer/Composer.tsx:1826 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2822,7 +2820,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2847,7 +2845,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2996,7 +2994,7 @@ msgid "Close" msgstr "" #: src/components/Dialog/index.web.tsx:129 -#: src/components/Dialog/index.web.tsx:339 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3066,7 +3064,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1824 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3109,7 +3107,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3120,7 +3118,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1700 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3128,11 +3126,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2672 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2674 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3190,8 +3188,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3266,7 +3264,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3295,7 +3293,7 @@ msgid "Continue to group name" msgstr "Continue to group name" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3606,7 +3604,7 @@ msgstr "" #: src/components/WelcomeModal.tsx:155 #: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 +#: src/screens/Signup/index.tsx:139 #: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 @@ -3630,7 +3628,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" @@ -3858,7 +3856,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1712 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -4009,9 +4007,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1492 -#: src/view/com/composer/Composer.tsx:1536 -#: src/view/com/composer/Composer.tsx:1745 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4022,14 +4020,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1490 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1507 -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4058,7 +4056,7 @@ msgstr "" msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4067,7 +4065,7 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2593 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" @@ -4169,8 +4167,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4184,7 +4182,7 @@ msgstr "" msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:415 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" @@ -4621,11 +4619,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2692 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -5068,7 +5066,7 @@ msgstr "Failed to rescind your request. Please try again." msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:726 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5769,11 +5767,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2697 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -6069,7 +6067,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Have we got your location wrong? <0>Tap here to update your location with GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6085,7 +6083,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6745,7 +6743,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2612 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" @@ -6785,8 +6783,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1540 -#: src/view/com/composer/Composer.tsx:1550 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -8015,7 +8013,7 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "" @@ -8435,11 +8433,11 @@ msgstr "One of the selected recipients does not allow group chats." msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "One of the selected recipients has blocked you and cannot be messaged." -#: src/view/com/composer/Composer.tsx:934 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:931 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8451,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:737 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:941 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8541,7 +8539,7 @@ msgstr "" msgid "Open advanced search options" msgstr "Open advanced search options" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8572,7 +8570,7 @@ msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2245 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" @@ -9259,7 +9257,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:194 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "" @@ -9267,7 +9265,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1890 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9287,12 +9285,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1888 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Post anyway" @@ -9475,11 +9473,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2686 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2688 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9524,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1874 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1869 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1858 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1863 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9762,7 +9760,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9788,8 +9786,8 @@ msgstr "Remove {displayName}?" msgid "Remove {q}" msgstr "Remove {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9849,7 +9847,7 @@ msgstr "Remove from chat" msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -10034,7 +10032,7 @@ msgstr "" msgid "Reply" msgstr "Reply" -#: src/view/com/composer/Composer.tsx:1886 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10443,22 +10441,22 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1530 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1530 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1504 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" @@ -10706,7 +10704,7 @@ msgstr "" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 -#: src/components/interstitials/FeedTrendingTopics.tsx:112 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10714,7 +10712,7 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/components/interstitials/FeedTrendingTopics.tsx:103 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 msgid "See more trending topics" msgstr "See more trending topics" @@ -10750,7 +10748,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10766,11 +10764,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10867,7 +10865,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -11473,7 +11471,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Skip empty posts?" @@ -11654,7 +11652,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:192 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "" @@ -11750,7 +11748,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -12564,7 +12562,7 @@ msgstr "This group is locked by a moderation action on the owner" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "This image could not be used. Try a different format like .jpg or .png." @@ -12671,7 +12669,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1122 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12771,7 +12769,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12905,8 +12903,8 @@ msgstr "Translation to the same language is unavailable on your device." msgid "Tree view" msgstr "" -#: src/components/interstitials/FeedTrendingTopics.tsx:100 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:51 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 #: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -13278,7 +13276,7 @@ msgstr "" msgid "Unsupported clipboard content" msgstr "Unsupported clipboard content" -#: src/view/com/composer/Composer.tsx:1639 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13344,7 +13342,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13371,7 +13369,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2679 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13385,7 +13383,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2681 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13649,7 +13647,7 @@ msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "" @@ -13669,7 +13667,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2699 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13688,7 +13686,7 @@ msgstr "" msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1229 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13777,7 +13775,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1224 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -14059,7 +14057,7 @@ msgstr "We’re having network issues, try again" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "We’re so excited to have you join us!" @@ -14096,7 +14094,7 @@ msgstr "We’re sorry, but your search could not be completed. Please try again msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1120 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14152,7 +14150,7 @@ msgid "what’s up" msgstr "what’s up" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1603 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14238,7 +14236,7 @@ msgstr "Would you like to block this user and/or leave this conversation?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1518 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -14247,12 +14245,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14428,7 +14426,7 @@ msgstr "" msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" -#: src/view/com/composer/Composer.tsx:1523 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14574,7 +14572,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1513 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14734,11 +14732,11 @@ msgstr "You won’t be able to rejoin unless you’re invited." msgid "You: {message}" msgstr "You: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14810,7 +14808,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:724 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14838,7 +14836,7 @@ msgstr "" msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14986,11 +14984,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1220 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1217 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -15011,7 +15009,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15024,7 +15022,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." diff --git a/src/locale/locales/eo/messages.po b/src/locale/locales/eo/messages.po index 8b0e43da95..b5b97dc9a2 100644 --- a/src/locale/locales/eo/messages.po +++ b/src/locale/locales/eo/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: eo\n" +"Language: eo_UY\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Esperanto\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorio \"{interestsDisplayName}\" (aktiva)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blokita mesaĝo kaŝita)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(enhavas enkorpigitan enhavon)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(forigita mesaĝo)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(mesaĝo sendita antaŭ ol vi aniĝis)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# horo} other {# horoj}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# ŝato} other {# ŝatoj}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# ano} other {# anoj}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nova aliĝpeto} other {# novaj aliĝpetoj}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# homo} other {# homoj}} reagis – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Konto)" @@ -251,36 +252,13 @@ msgstr "{0} aligita al babilejo" msgid "{0} and {1} added to chat" msgstr "{0} kaj {1} aligitaj al babilejo" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} sekvataj" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} blokas vin" @@ -324,14 +302,6 @@ msgstr "{0} foriris" msgid "{0} left the group" msgstr "{0} foriris el la grupo" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} el 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagis per {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} kaj {memberCount, plural, one {# alia} other {# aliaj}} aligitaj al babilejo" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} konfirmis vin" msgid "{following} following" msgstr "{following} sekvataj" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} nealigeblas" @@ -698,7 +660,7 @@ msgstr "{handle} nealigeblas" msgid "{handle} can't be messaged" msgstr "{handle} nemesaĝeblas" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} nemesaĝeblas" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# nelegita elemento} other {# nelegitaj msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# kontakto trovita} other {# kontaktoj trovitaj}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} aliĝis al Bluesky antaŭ {timeAgoString}" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} aliĝis al Bluesky uzante startpakon antaŭ {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {# signo restanta} other {# signoj restantaj}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} respondis" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} respondis al {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} respondis al vi" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# peto} other {# petoj}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ petoj" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "antaŭ {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} estas fidata konfirmanto" @@ -842,13 +795,13 @@ msgstr "Konfirmoj de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {sekvata} other {sekvataj}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citaĵo} other {citaĵoj}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {reafiŝo} other {reafiŝoj}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, one {konservo} other {konservoj}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, one {ŝato} other {ŝatoj}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> aligis vin" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Ensalutu<1> aŭ <2>kreu konton<3> <4>por serĉi pri novaĵoj, sportoj, politiko kaj ĉio alia okazanta ĉe Bluesky." @@ -971,7 +924,7 @@ msgstr "30 tagoj" msgid "7 days" msgstr "7 tagoj" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Aro de popularaj fluoj, kiujn vi povas trovi ĉe Bluesky, inkluzive de News, Booksky, Game Dev, Blacksky kaj Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Reta eraro okazis. Bonvolu kontroli vian interretan konekton" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Nova kodo estis sendita" msgid "A new form of verification" msgstr "Nova konfirmada metodo" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Respondo al mesaĝo sendita antaŭ ol vi aniĝis" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Elektita ricevonto ne estas sekvata de la sendanto." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Aliĝpeto farita! La grupa posedanto kontrolos vian peton." msgid "Accessibility" msgstr "Alirebleco" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Alireblecaj agordoj" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Konto silentigita de listo" msgid "Account options" msgstr "Kontaj opcioj" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Konto forigita el la rapidatingo" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Kontoj kun gravurita blua kontrolmarko<0><1/>povas kontroli aliulojn. Tiuj fidataj konfirmantoj estas elektataj de Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Agado de aliuloj" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Aldoni alternativan tekston (nedeviga)" msgid "Add another account" msgstr "Aldoni plian konton" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Aldoni plian afiŝon" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Aldoni plian afiŝon al fadeno" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "Aldoni aŭtomatigan etikedon al konto" msgid "Add emoji reaction" msgstr "Aldoni emoĝi-reagon" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Aldoni filtrilon" @@ -1338,7 +1298,7 @@ msgstr "Aldoni ĉi tiun fluon al viaj fluoj" msgid "Add to lists" msgstr "Aldoni al listoj" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Aldoni al konservitaj afiŝoj" @@ -1400,7 +1360,7 @@ msgstr "Poradolta" msgid "Adult content" msgstr "Poradolta enhavo" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permesas aliron al rektaj mesaĝoj" msgid "Already have a code?" msgstr "Ĉu vi jam havas kodon?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Ĉu vi jam havas konton?" @@ -1614,7 +1574,7 @@ msgstr "Retmesaĝo estis sendita al {0}. Ĝi enhavas konfirmkodon, kiun vi povas msgid "An error has occurred" msgstr "Eraro okazis" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Eraro okazis" @@ -1631,7 +1591,7 @@ msgstr "Eraro okazis dum ŝargado de proponitaj kontoj." msgid "An error occurred while fetching the feed." msgstr "Eraro okazis dum ŝargado de la fluo." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Eraro okazis dum generado de via startpako. Ĉu vi volas reprovi?" @@ -1640,11 +1600,11 @@ msgstr "Eraro okazis dum generado de via startpako. Ĉu vi volas reprovi?" msgid "An error occurred while hiding suggestion. {0}" msgstr "Eraro okazis dum kaŝado de propono. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Eraro okazis dum ŝargado de la videaĵo. Bonvolu reprovi poste." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Eraro okazis dum ŝargado de la videaĵo. Bonvolu reprovi." @@ -1684,7 +1644,7 @@ msgstr "Eraro okazis. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Ilustraĵo, kiu prezentas profilbildojn fluantajn el kontaktlibro en la apon Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Ilustraĵo montranta plurajn Bluesky-afiŝojn apud piktogramoj de reafiŝado, ŝatado kaj komentado" @@ -1705,17 +1665,15 @@ msgstr "Invitilo ebligas al homoj la aliĝon al ĉi tiu grupa babilejo sen rekta msgid "An issue not included in these options" msgstr "Problemo neinkludita inter ĉi tiuj opcioj" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Problemo okazis kreante la grupan babilejon, bonvolu reprovi." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Problemo okazis komencante la babilejon, bonvolu reprovi." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Problemo okazis dum provo malfermi la babilejon" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Ĉiuj" @@ -1802,7 +1760,7 @@ msgstr "Ĉiu kiu sekvas min" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Ĉiu kiu havas ĝin ne plu eblos aliĝi aŭ peti aliĝi. Vi ĉiam povas krei novan." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Nomoj de apaj pasvortoj devas havi longon de almenaŭ 4 signoj" msgid "App passwords" msgstr "Apaj pasvortoj" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Apaj pasvortoj" @@ -1891,8 +1849,8 @@ msgstr "Apelacii pri ĉi tiu decido" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Apliki tirpeton" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arkivigita de {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arkivigita afiŝo" @@ -1980,7 +1938,7 @@ msgstr "Ĉu vi certas, ke vi volas forigi ĉi tion el viaj fluoj?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Ĉu vi certas, ke vi volas nuligi vian aliĝpeton al {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Ĉu vi certas, ke vi volas forĵeti ĉi tiun afiŝon?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Nordobrilo" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Aŭtomata konto" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "Aŭtomatiga etikedo" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Aŭtomatiga etikedo" @@ -2050,12 +2008,16 @@ msgstr "Aŭtomate ludi videaĵojn kaj GIF-ojn" msgid "Available" msgstr "Disponebla" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Antaŭ ol krei afiŝon aŭ respondi, vi devas unue konfirmi vian retpoŝtadreson." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Antaŭ ol krei startpakon, vi devas unue konfirmi vian retpoŝtadreson." @@ -2135,10 +2097,10 @@ msgstr "Antaŭ ol vi povos ricevi sciigojn pri afiŝoj de {name}, unue vi devas #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Komencu procezon de garantio pri aĝo kompletigante la kampojn sube." msgid "Beta Feature" msgstr "Beta-funkcio" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Naskiĝdato" msgid "Birthday" msgstr "Naskiĝtago" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blokita" msgid "Blocked accounts" msgstr "Blokitaj kontoj" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokitaj kontoj" @@ -2282,7 +2250,7 @@ msgstr "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek aliman 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 "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek alimaniere interagi kun vi. Vi ne vidos ilian enhavon kaj ili ne povos vidi la vian." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokado ne malebligas al ĉi tiu etikedilo meti etikedojn sur vian konton." @@ -2305,10 +2273,11 @@ msgstr "eĥoŝanĝo ĉiuĵaŭde" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ne povas konfirmi la aŭtentecon de la donita dato." @@ -2330,7 +2299,7 @@ msgstr "Bluesky estas malfermita reto, kie elekteblas provizanto de gastigo. Se msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky estas malfermita reto, kie elekteblas provizanto de gastigo. Se vi estas novulo, ni rekomendas, ke vi restu ĉe la defaŭlta opcio Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky pli bonas kun amikoj!" @@ -2348,7 +2317,7 @@ msgstr "Bluesky estas pli feliĉiga kun amikoj! Ĉu vi volas inviti iujn el viaj #: src/features/inviteFriends/InviteScannerScreen.tsx:105 msgid "Bluesky needs camera access to scan QR codes from other profiles." -msgstr "" +msgstr "Bluesky bezonas aliron al la kamerao por skani la QR-kodojn de aliaj profiloj." #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" @@ -2358,7 +2327,7 @@ msgstr "Uzokondiĉoj de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky konservas viajn kontaktojn kiel ĉifritaj datumoj. Forigado de viaj kontaktoj tuje forigos tiujn datumojn." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky elektos aron de rekomenditaj kontoj de homoj en via reto." @@ -2425,24 +2394,25 @@ msgstr "Foliumi pli da proponoj sur la paĝo Esplori" msgid "Browse other feeds" msgstr "Foliumi aliajn fluojn" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Foliumi afiŝojn pri {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Foliumi afiŝojn etikeditajn per {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Foliumi startpakon {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Foliumi temon {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Foliumi temon {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Butono por reveni al la hejma novaĵfluo" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "De {0}" @@ -2473,9 +2443,9 @@ msgstr "de @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "De <0>{0}" @@ -2504,17 +2474,17 @@ msgstr "Kreante konton vi konsentas pri la <0>Uzokondiĉoj kaj <1>Regularo p msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Kreante konton vi konsentas pri la <0>Uzokondiĉoj." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "De vi" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" -msgstr "Fotilo" +msgstr "Kamerao" #: src/features/inviteFriends/InviteScannerScreen.tsx:96 msgid "Camera access needed" -msgstr "" +msgstr "Aliro al kamerao estas bezonata" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Nuligi reaktivigon kaj elsaluti" msgid "Cancel reply" msgstr "Nuligi respondon" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Nuligi serĉon" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Ŝanĝoj al la startpako ne estos reflektota en la listo post kreo. La listo estos sendependa kopio." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Babilejo silentigita" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Babilejo netrovita." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Babilejaj opcioj" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Babileja ricevonto ne estas sekvata de la sendanto." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Ricevujo de babilpetoj" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Babilpetoj" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Agordoj de babilejo" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Babilejo malsilentigita" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Babilejoj" @@ -2837,7 +2808,7 @@ msgstr "Elektu metodon por konfirmi vian domajnon" msgid "Choose Feeds" msgstr "Elektu fluojn" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Elektu por mi" @@ -2854,7 +2825,7 @@ msgstr "Elektu homojn" msgid "Choose post languages" msgstr "Elektu lingvojn de la afiŝo" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Elekti ĉi tiun koloron kiel profilbildo" @@ -2879,7 +2850,7 @@ msgstr "Elektu vian propran novaĵfluon! Fluoj konstruitaj de la komunumo helpas msgid "Choose your password" msgstr "Elektu vian pasvorton" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Elektu vian uzantnomon" @@ -2966,7 +2937,7 @@ msgstr "Klaku ĉi tie por vidi la invitligilon por ĉi tiu grupa babilejo" msgid "Click to open tag menu for {0}" msgstr "Alklaku por malfermi kradvortan menuon por {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Alklaku por reprovi sendi mesaĝon" @@ -3003,7 +2974,7 @@ msgstr "Alklaku por reprovi sendi mesaĝon" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Alklaku por reprovi sendi mesaĝon" msgid "Close" msgstr "Fermi" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Fermi la aktivan dialogujon" @@ -3047,7 +3018,7 @@ msgstr "Fermi rubandon" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Fermi bildmontrilon" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Fermi menuon" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Fermi ĉi tiun dialogujon" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Fermi bonvenon-fenestron" @@ -3098,7 +3069,7 @@ msgstr "Fermi bonvenon-fenestron" msgid "Closes password update alert" msgstr "Fermas la averton pri pasvorta ĝisdatigo" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Fermas afiŝan redaktilon kaj forĵetas afiŝan malneton" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Koloro" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Kolora reĝimo" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Komiksoj" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Komunumaj gvidnormoj" @@ -3141,7 +3112,7 @@ msgstr "Komunumaj gvidnormoj" msgid "Complete onboarding and start using your account" msgstr "Finu la lernilon kaj komencu uzi vian konton" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Plenumi la defion" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Krei novan afiŝon" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Krei afiŝojn maksimume {0, plural, one {# signon}other {# signojn}} longajn" @@ -3160,11 +3131,11 @@ msgstr "Krei afiŝojn maksimume {0, plural, one {# signon}other {# signojn}} lon msgid "Compose reply" msgstr "Krei respondon" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Densigado de GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Densigado de videaĵo..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Kontaktu nian subtenan teamon" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Kontakti subtenejon" @@ -3253,7 +3224,7 @@ msgstr "Enhavo kaj aŭdvidaĵoj" msgid "Content and media" msgstr "Enhavo kaj aŭdvidaĵoj" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Enhavo kaj aŭdvidaĵoj" @@ -3265,10 +3236,6 @@ msgstr "Enhavo blokita" msgid "Content filters" msgstr "Filtriloj por la enhavo" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Enhavo el la tuta reto, kiu eble plaĉos al vi." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Lingvoj de enhavo" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Enhavo, kiu instigas aŭ prezentas memvundadon" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Averto de enhavo" msgid "Content warnings" msgstr "Avertoj de enhavo" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fono de kuntekstmenuo, alklaku por fermi la menuon." @@ -3302,7 +3269,7 @@ msgstr "Fono de kuntekstmenuo, alklaku por fermi la menuon." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Daŭrigi fadenon..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Daŭrigi al grupa nomo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Konversacio netrovita." msgid "Copied build version to clipboard" msgstr "Versio kopiita al tondujo" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Ligilo kopiita al tondujo" @@ -3376,7 +3343,7 @@ msgstr "Ligilo kopiita al tondujo" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Kopii apan pasvorton" msgid "Copy at:// URI" msgstr "Kopii URI-on at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Kopii la DID-on de la aŭtoro" @@ -3449,10 +3416,10 @@ msgstr "Kopii ligilon" msgid "Copy link to list" msgstr "Kopii ligilon al listo" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopii ligilon al afiŝo" @@ -3470,8 +3437,8 @@ msgstr "Kopii ligilon al startpako" msgid "Copy message text" msgstr "Kopii mesaĝan tekston" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Kopii URI-on at:// de afiŝo" @@ -3490,7 +3457,7 @@ msgstr "Kopii la valoron de la TXT-rikordo" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Regularo pri kopirajto" @@ -3540,11 +3507,11 @@ msgstr "Ne eblis eksekvi ĉiujn trovitajn kontaktojn. {0}" msgid "Could not leave chat" msgstr "Ne eblis foriri el babilejo" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Ne eblis foriri el la babilejo." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Ne eblis ŝargi fluon" @@ -3562,7 +3529,7 @@ msgstr "Ne eblis ŝargi profilon" msgid "Could not mute chat" msgstr "Ne eblis silentigi babilejon" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Ne eblis forigi anon." @@ -3606,8 +3573,8 @@ msgstr "bovinoj porkoj" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Krei" @@ -3624,26 +3591,26 @@ msgstr "Krei liston el ĉi tiu startpako" msgid "Create a QR code for a starter pack" msgstr "Krei QR-kodon por startpako" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Krei startpakon" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Krei startpakon" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Krei startpakon por mi" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Krei konton" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Krei konton" @@ -3666,15 +3633,15 @@ msgstr "Krei konton" msgid "Create an account without using this starter pack" msgstr "Krei konton neuzante ĉi tiun startpakon" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Krei profilbildon anstataŭe" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Krei plian" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Krei grupan babilejon" @@ -3743,7 +3710,7 @@ msgstr "Kulturo" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Nuna babilejo" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Malhela" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Malhela" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Malhela etoso" @@ -3814,7 +3781,7 @@ msgstr "Malakcepti ĉi tiun proponon de lingvo" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Defaŭlta" @@ -3894,7 +3861,7 @@ msgstr "Forigi mian konton" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Forigi afiŝon" @@ -3988,7 +3955,7 @@ msgstr "Dialogujo: kiu povas interagi kun ĉi tiu afiŝo" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Malheleta" @@ -4002,7 +3969,7 @@ msgstr "Malŝalti" msgid "Disable 2FA" msgstr "Malŝalti 2FA-on" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Malŝalti subtekstojn" @@ -4045,9 +4012,9 @@ msgstr "Malŝaltita" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Forĵeti" msgid "Discard changes?" msgstr "Ĉu forĵeti ŝanĝojn?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Ĉu forĵeti malneton?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Ĉu forĵeti afiŝon?" @@ -4079,6 +4046,10 @@ msgstr "Malkonekti Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Malinstigi apojn por ke ili ne montru mian konton al elsalutintaj uzantoj" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Malinstigi apojn por ke ili ne montru mian konton al elsalutintaj uzanto msgid "Discover new custom feeds" msgstr "Malkovri novajn proprajn fluojn" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Malkovri novajn fluojn" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Malkovri novajn fluojn" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignori" @@ -4103,19 +4070,19 @@ msgstr "Ignori" msgid "Dismiss banner" msgstr "Fermi rubandon" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Ignori eraron" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Ignori enkondukon" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Forĵeti interesojn" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Montri pli grandajn ŝildojn de alternativa teksto" msgid "Display name" msgstr "Montrata nomo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Forlasu la trolojn kaj klakallogilojn. Trovu realajn homojn kaj konversaciojn, kiuj gravas por vi." @@ -4205,8 +4172,8 @@ msgstr "Ne maltrankvilu! Ĉiuj ekzistantaj mesaĝoj kaj agordoj estas konservita #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Ne maltrankvilu! Ĉiuj ekzistantaj mesaĝoj kaj agordoj estas konservita msgid "Done" msgstr "Farite" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Duoble tuŝetu aŭ longe premu la mesaĝon por aldoni reagon" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Duoble tuŝeti por fermi la dialogujon" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Duoble tuŝeti por ŝati" @@ -4328,6 +4295,7 @@ msgstr "Manĝadaj perturboj" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Redakti bildon" msgid "Edit interaction settings" msgstr "Redakti interagajn agordojn" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Redakti interesojn" @@ -4397,7 +4365,7 @@ msgstr "Redakti tujelsendan staton" msgid "Edit moderation list" msgstr "Redakti la kontrol-liston" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Redakti miajn fluojn" @@ -4406,6 +4374,11 @@ msgstr "Redakti miajn fluojn" msgid "Edit name" msgstr "Redakti nomon" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Redakti homojn" @@ -4444,7 +4417,7 @@ msgstr "Redakti la liston de uzantoj" msgid "Edit who can reply" msgstr "Elekti kiu povas respondi" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Redakti vian startpakon" @@ -4500,8 +4473,8 @@ msgstr "Enkorpigi HTML-kodon" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Enkorpigi afiŝon" @@ -4509,7 +4482,7 @@ msgstr "Enkorpigi afiŝon" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Enkorpigi ĉi tiun afiŝon en vian retejon. Simple kopiu la jenan kodaĵon kaj algluu ĝin en la HTML-kodo de via retejo." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Enkorpigita videoludilo" @@ -4533,7 +4506,7 @@ msgstr "Videbligi poradoltan enhavon" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Ŝalti subtekstojn" @@ -4550,12 +4523,13 @@ msgstr "Ŝalti eksterajn aŭdvidaĵojn" msgid "Enable media players for" msgstr "Ŝalti la aŭdvidajn ludliojn por" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Por ŝalti sciigojn pri konto, vizitu ties profilon kaj premu la <0>sonorilan piktogramon <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Ŝalti ŝprucosciigojn" @@ -4581,7 +4555,7 @@ msgstr "Videbligi popularajn videaĵojn en via fluo Discover" msgid "Enabled" msgstr "Ŝaltita" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fino de la fluo" @@ -4608,7 +4582,7 @@ msgstr "Entajpu vorton aŭ kradvorton" msgid "Enter code" msgstr "Entajpu kodon" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Ŝalti plenekranon" @@ -4650,11 +4624,11 @@ msgstr "Entajpu vian uzantnomon kaj pasvorton" msgid "Enters full screen" msgstr "Ŝaltas plenekranon" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Amuzo" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Eraro" @@ -4684,7 +4658,7 @@ msgstr "Eraro okazis dum konservado de dosiero" msgid "Error receiving captcha response." msgstr "Eraris ricevante la captcha-respondon." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Eraro: {error}" @@ -4696,8 +4670,8 @@ msgstr "Ĉiuj povas respondi" msgid "Everybody can reply to this post." msgstr "Ĉiuj povas respondi al ĉi tiu afiŝo." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Ĉiuj" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Ĉiuj" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Ĉio alia" @@ -4738,7 +4712,7 @@ msgstr "Ekskluzivi uzantojn, kiujn vi sekvas" msgid "Excludes users you follow" msgstr "Ekskluzivas uzantojn, kiujn vi sekvas" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Malŝalti plenekranon" @@ -4755,11 +4729,11 @@ msgstr "Etendi liston de uzantoj" msgid "Expand or collapse the full post you are replying to" msgstr "Etendi aŭ maletendi la tutan afiŝon, al kiu vi respondas" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Etendi afiŝan tekston" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Etendas aŭ maletendas la tekston de la afiŝo" @@ -4802,15 +4776,15 @@ msgstr "Poradolta aŭ maltrankviliga aŭdvidaĵo." msgid "Explicit sexual images." msgstr "Detalaj seksumaj bildoj." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Esplori" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Esplori la apon" @@ -4844,7 +4818,7 @@ msgstr "Eksteraj aŭdvidaĵoj" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Eksteraj aŭdvidaĵoj eblas permesi al retejoj kolekti informojn pri vi kaj via aparato. Neniu informo estos sendota aŭ postulota antaŭ vi premos la butonon \"ludi\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferoj pri eksteraj aŭdvidaĵoj" @@ -4886,7 +4860,7 @@ msgstr "Malsukcesis ŝanĝi identigilon. Bonvolu reprovi." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Malsukcesis kopii ligilon" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Malsukcesis foriri el grupa babilejo" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Malsukcesis ŝargi konversaciojn" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Fiaskis ŝargi fluojn" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Malsukcesis ŝargi preferojn de fluoj" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Malsukcesis ŝargi sciigajn agordojn." @@ -5012,14 +4987,14 @@ msgstr "Malsukcesis ŝargi preferon." msgid "Failed to load profiles" msgstr "Malsukcesis ŝargi profilojn" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Malsukcesis ŝargi propontiajn fluojn" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Malsukcesis ŝargi proponitajn kontojn" @@ -5027,12 +5002,12 @@ msgstr "Malsukcesis ŝargi proponitajn kontojn" msgid "Failed to lock group chat" msgstr "Malsukcesis ŝlosi grupan babilejon" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Malsukcesis marki ĉiujn petojn kiel legitajn" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Malsukcesis nuligi vian peton. Bonvolu reprovi." msgid "Failed to resolve location. Please try again." msgstr "Malsukcesis trovi la lokon. Bonvolu reprovi." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Malsukcesis konservi malneton" @@ -5191,7 +5166,7 @@ msgstr "Falsa konto aŭ roboto" msgid "False information about elections" msgstr "Malveraj informoj pri balotoj" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Fluo" @@ -5212,7 +5187,7 @@ msgstr "Kreinto de fluo" msgid "Feed identifier" msgstr "Identigilo de fluo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menuo de la fluo" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Prikomentado sendita al operatoro de la fluo" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Fluoj ĝisdatigitaj!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Fluoj, kiuj eble plaĉos al vi." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Elŝuti ĝisdatigon" @@ -5273,11 +5244,11 @@ msgstr "Elŝuti ĝisdatigon" msgid "File saved successfully!" msgstr "Dosiero konservita sukcese!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtri kiu havos eblon ŝalti ricevadon de sciigoj pri via agado" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtri de kiuj vi ricevos sciigojn" @@ -5352,8 +5323,8 @@ msgstr "Trovi kontojn por sekvi" msgid "Find and invite friends" msgstr "Trovi kaj inviti amikojn" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Trovi kontaktojn" @@ -5387,7 +5358,7 @@ msgstr "Trovu viajn amikojn" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Trovu viajn amikojn ĉe Bluesky per konfirmo de via telefonnumero kaj kongruigo de viaj kontaktoj kun ili. Ni protektas viajn informojn kaj vi kontrolas, kio okazos poste. <0>Eksciu pli" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Trovu viajn konatojn" @@ -5429,7 +5400,7 @@ msgstr "Enfokusigi la serĉujon" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Sekvi {0}" msgid "Follow {displayName}" msgstr "Sekvi {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Sekvi {handle}" @@ -5453,11 +5424,11 @@ msgstr "Sekvi {handle}" msgid "Follow 10 accounts" msgstr "Eksekvu 10 kontojn" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Eksekvu 10 homojn por komenci" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Eksekvu 7 kontojn" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Sekvantoj povas aliĝi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Sekvantoj de @{0}, kiujn vi konas" @@ -5544,7 +5515,7 @@ msgstr "Sekvantoj, kiujn vi konas" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Sekvas {0}" msgid "Following {displayName}" msgstr "Sekvas {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Sekvas {handle}" @@ -5578,21 +5549,21 @@ msgstr "Sekvas {handle}" msgid "Following feed preferences" msgstr "Preferoj de la fluo pri sekvatoj" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferoj de la fluo pri sekvatoj" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sekvas vin" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Tiparo" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tipara grando" @@ -5612,13 +5583,13 @@ msgstr "Pro sekurecaj kialoj, ni devos sendi konfirmkodon al via retpoŝtadreso msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por sekurecaj kialoj, vi ne povos vidi ĉi tion denove. Se vi perdas ĉi tiun apan pasvorton, vi devos generi novan." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Por la plej bona ĝuo, ni rekomendas uzi la tiparon de la etoso." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Por vi" @@ -5628,7 +5599,7 @@ msgstr "Por vi" msgid "Forever" msgstr "Eterne" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Forgesu pri bruo" @@ -5647,11 +5618,13 @@ msgstr "Ĉu vi forgesis pasvorton?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Liberu vian fluon" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5647,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generi startpakon" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Akiri helpon" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Ricevi sciigojn, kiam homoj eksekvos vin." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Ricevi sciigojn, kiam homoj ŝatos viajn afiŝojn." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Ricevi sciigojn, kiam homoj mencios vin." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Ricevi sciigojn, kiam homoj citos viajn afiŝojn." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Ricevi sciigojn, kiam homoj respondos al viaj afiŝoj." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Ricevi sciigojn, kiam homoj reafiŝos viajn afiŝojn." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Esti sciigota pri novaj afiŝoj" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Esti sciigota pri novaj afiŝoj de {name}" @@ -5799,11 +5772,11 @@ msgstr "Enkonduko" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF alŝutita" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Donu vizaĝon al via profilo" @@ -5813,20 +5786,20 @@ msgstr "Glorigo de violento" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Tujelsendi dum" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nomo de grupa babilejo aktualigita" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Agordoj de grupa babilejo" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Grupaj babilejoj povas havi maksimume {0, plural, other {# anojn}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Grupo estas ŝlosita" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Grupa nomo" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "La grupa nomo estas tro longa. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {La maksimuma nombro da signoj estas #.}}" @@ -6077,7 +6051,7 @@ msgstr "Agoj kun granda riziko de danĝero" msgid "Harming or endangering minors" msgstr "Damaĝo aŭ endanĝerigado de neplenaĝuloj" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Kradvorto" @@ -6098,7 +6072,7 @@ msgstr "Ĉu vi havas kodon? <0>Klaku ĉi tie." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Ĉu ni misdivenis vian lokon? <0>Tuŝetu ĉi tie por aktualigi vian lokon per GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Ĉu vi havas problemon?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Helpo" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Afiŝu foton aŭ kreu profilbildon por ke homoj sciu, ke vi ne estas roboto." @@ -6140,7 +6114,7 @@ msgstr "Saluton!" msgid "Hidden" msgstr "Kaŝita" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Kaŝita laŭ viaj agordoj pri kontrolado." @@ -6148,9 +6122,9 @@ msgstr "Kaŝita laŭ viaj agordoj pri kontrolado." msgid "Hidden list" msgstr "Kaŝita listo" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Kaŝita listo" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Kaŝi" @@ -6198,7 +6172,7 @@ msgstr "Kaŝi respondon por ĉiuj" msgid "Hide reply for me" msgstr "Kaŝi respondon por mi" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Kaŝi ĉi tiun karton" @@ -6218,12 +6192,12 @@ msgstr "Ĉu kaŝi ĉi tiun respondon?" msgid "Hide translation" msgstr "Kaŝi tradukon" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Kaŝi furorajn temojn" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Ĉu kaŝi furorajn temojn?" @@ -6240,7 +6214,7 @@ msgstr "Kaŝi la liston de uzantoj" msgid "Hide verification badges" msgstr "Kaŝi konfirmajn ŝildojn" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Kaŝas la enhavon" @@ -6293,8 +6267,8 @@ msgstr "Hmmmm, ni ne povis ŝargi tiun kontrol-servon." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Momenton! Ni iom post iom donas aliron al la videaĵo, kaj vi ankoraŭ atendas en vico. Rekontrolu baldaŭ!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Populara" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Tiel ĝi funkcias:" @@ -6409,6 +6379,7 @@ msgstr "Se vi ĝisdatigos vian retpoŝtadreson, retpoŝta 2FA estos malŝaltota. msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se vi volas ŝanĝi vian pasvorton, ni sendos al vi kodon por konfirmi, ke ĉi tiu estas via konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Se vi volas limigi kiu povos ricevi sciigojn pri agado de via konto, vi povas ŝanĝi tion en <0>Agordoj → Privateco kaj sekureco." @@ -6548,7 +6519,7 @@ msgstr "En-apaj, ŝprucaj, ĉiuj" msgid "In-app, push, people you follow" msgstr "En-apaj, ŝprucaj, homoj kiujn vi sekvas" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Ricevujo malplenas" @@ -6560,6 +6531,7 @@ msgstr "Ricevujo malplenas!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Vi estas sola ĉi-momente! Aldoni pli da homoj al via startpako serĉante supre." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID de laboro: {0}" @@ -6816,8 +6788,8 @@ msgstr "Aliĝi al konversacio" msgid "Journalism" msgstr "Ĵurnalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Daŭre redakti" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Retejo de KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etikedita de {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etikedita de la aŭtoro." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etikedoj" @@ -6852,7 +6824,7 @@ msgstr "Etikedoj aldonitaj" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etikedoj estas notoj pri uzantoj kaj enhavo. Ili povas esti uzataj por kaŝi, averti, kaj ordigi la reton laŭ kategorioj." @@ -6864,7 +6836,7 @@ msgstr "Etikedoj sur via konto" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Lingvaj agordoj" @@ -6874,7 +6846,7 @@ msgstr "Lingvaj agordoj" msgid "Languages" msgstr "Lingvoj" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Pli granda" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Laste iniciatita ĝuste nun" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Plej freŝaj" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Ekscii pli" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Eksciu pli" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "Eksciu pli pri importado de kontaktoj" msgid "Learn more about self hosting your PDS." msgstr "Eksciu pli pri gastigado de via PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Eksciu pli pri la kontrolado farita al ĉi tiu enhavo" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Eksciu pli pri tiuj ŝanĝoj kaj kiel konigi viajn opiniojn al ni legante nian blogafiŝon." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Eksciu pli pri ĉi tiu averto" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Eksciu pli en viaj <0>kontaj agordoj." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Eksciu pli." @@ -6993,8 +6965,8 @@ msgstr "Foriri" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Elirante el Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Foriris el grupa babilejo." @@ -7042,7 +7014,7 @@ msgstr "Foriris el grupa babilejo." msgid "left to go." msgstr "restas." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lasu min elekti" @@ -7057,7 +7029,7 @@ msgstr "Ek!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Hela" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Hela" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Ŝati" @@ -7076,7 +7048,7 @@ msgstr "Ŝati" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Ŝatu 10 afiŝojn" @@ -7085,7 +7057,7 @@ msgstr "Ŝatu 10 afiŝojn" msgid "Like 10 posts to train the Discover feed" msgstr "Ŝatu 10 afiŝojn por trejni la fluon Discover" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Ŝati ĉi tiun fluon" @@ -7093,8 +7065,8 @@ msgstr "Ŝati ĉi tiun fluon" msgid "Like this labeler" msgstr "Ŝati ĉi tiun etikedilon" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Ŝatata de" @@ -7111,27 +7083,45 @@ msgstr "Ŝatata de" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Ŝatata de {0, plural, one {# uzanto} other {# uzantoj}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Ŝatata de {likeCount, plural, one {# uzanto} other {# uzantoj}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Ŝatoj" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Ŝatoj de viaj reafiŝoj" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Ŝatoj de ĉi tiu afiŝo" @@ -7144,7 +7134,7 @@ msgstr "Linie" msgid "Link copied to clipboard" msgstr "Ligilo kopiita al tondujo" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Listo" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listo malsilentigita" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "TUJELSENDAS" msgid "Live event happening now: {0}" msgstr "Tujelsenda evento okazas nun: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Tujelsenda evento kaŝita" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Tujelsenda evento malkaŝita" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "Tujelsenda ligilo" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Ŝargi pli" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Ŝargi pliajn proponitajn fluojn" @@ -7292,8 +7282,8 @@ msgstr "Ŝargi pliajn proponitajn fluojn" msgid "Load new notifications" msgstr "Ŝargi novajn sciigojn" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Ŝlosi ĉi tiun grupan babilejon" msgid "Locked" msgstr "Ŝlosita" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Protokolo" @@ -7387,7 +7377,7 @@ msgstr "GIF-oj pri amo" msgid "Make adjustments to email settings for your account" msgstr "Faru ĝustigojn al retpoŝtaj agordoj por via konto" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Faru ĝin por mi" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "Marki ĉiujn kiel legitaj" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marki ĉiujn babilejojn kiel legitajn" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marki kiel legita" msgid "Marked all as read" msgstr "Markis ĉiujn kiel legitaj" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Markis ĉiujn babilejojn kiel legitajn" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "Eble poste" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Aŭdvidaĵoj" @@ -7475,7 +7469,7 @@ msgstr "Aŭdvidaĵo konservita en alia aparato" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Aŭdvidaĵoj, kiuj povas esti maltrankviligaj aŭ nekonvenaj por kelkaj spektantoj." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Ano forigita el la grupa babilejo." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "menciitaj uzantoj" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mencioj" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mesaĝo forigita" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Malsukcesis sendi mesaĝon." @@ -7563,15 +7557,15 @@ msgstr "Mesaĝo tro longas ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Opcioj de mesaĝo" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mesaĝoj" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Mesaĝoj de ĉi tiu persono estas kaŝitaj dum tiu blokas vin." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Mesaĝoj de ĉi tiu persono estas kaŝitaj dum vi blokas tiun." @@ -7592,7 +7586,7 @@ msgstr "Miskonkludiga" msgid "Missing media" msgstr "Mankanta aŭdvidaĵo" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Kontrolado" @@ -7636,7 +7630,7 @@ msgstr "Kontrol-listo ĝisdatigita" msgid "Moderation lists" msgstr "Kontrol-listoj" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Kontrol-listoj" @@ -7645,7 +7639,7 @@ msgstr "Kontrol-listoj" msgid "moderation settings" msgstr "agordoj pri kontrolado" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Statoj de kontrolado" @@ -7786,7 +7780,7 @@ msgstr "Silentigita" msgid "Muted accounts" msgstr "Silentigitaj kontoj" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Silentigitaj kontoj" @@ -7867,7 +7861,6 @@ msgstr "Ĉu vi bezonas raporti kopirajtan malobservon, jurpeton aŭ problemon pr msgid "Nevermind, create a handle for me" msgstr "Ne gravas, krei identigilon por mi" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nova" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {Nova afiŝo} other {Novaj afiŝoj}} de {firstA #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nova babilejo" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Nova funkcio" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Novaj sekvantoj" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nova grupa babilejo" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nova grupa babilejo" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nova grupa babilejo kun:" @@ -7966,13 +7959,13 @@ msgstr "Nova listo" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Nova pasvorto" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nova afiŝo" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "La plej novaj respondoj unue" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Novaĵoj" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Sekva bildo" msgid "Night" msgstr "Nokto" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Sen reklamoj, sen enpenetra spurado, sen okupo-kaptiloj. Bluesky respektas vian tempon kaj atenton." @@ -8098,7 +8091,7 @@ msgstr "Neniu eksvalidiĝo agordita" msgid "No feeds found. Try searching for something else." msgstr "Neniu fluo trovita. Provu serĉi ion alian." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Ankoraŭ neniu sekvanto" @@ -8118,7 +8111,7 @@ msgstr "Sen bildo" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ankoraŭ neniu ŝato" @@ -8135,7 +8128,7 @@ msgstr "Neniu listo" msgid "No longer following {0}" msgstr "Vi ne plu sekvas {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Ankoraŭ neniu aŭdvidaĵo" @@ -8143,7 +8136,7 @@ msgstr "Ankoraŭ neniu aŭdvidaĵo" msgid "No messages yet" msgstr "Ankoraŭ neniu mesaĝo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Ne plu da eterna rulumado tra aĉaĵo-plenaj algoritmoj. Trovu fluojn kiuj funkcias por vi, ne kontraŭ vi." @@ -8184,12 +8177,12 @@ msgstr "Neniu povas sendi mesaĝojn" msgid "No posts here" msgstr "Neniuj afiŝoj ĉi tie" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Ankoraŭ neniu afiŝo" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ankoraŭ neniu citaĵo" @@ -8202,7 +8195,7 @@ msgstr "Ankoraŭ neniu lasta GIF-o. Elektu iun por vidi ĝin ĉi tie." msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Ankoraŭ neniu respondo" @@ -8217,13 +8210,13 @@ msgstr "Sen rezulto" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sen rezultoj" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Sen rezultoj por \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Neniu rezulto trovita" msgid "No results found for \"{query}\"" msgstr "Neniu rezulto trovita por \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Neniu rezulto trovita por \"<0>{query}\"." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Sen rezultoj." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Anoraŭ neniu startpako" @@ -8265,7 +8258,7 @@ msgstr "Ne, dankon" msgid "No translation received from your device." msgstr "Neniu traduko ricevita de via aparato." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Ankoraŭ neniu videaĵa afiŝo" @@ -8278,7 +8271,7 @@ msgstr "Neniu" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ankoraŭ neniu ŝatas ĉi tion. Eble vi estu la unua!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ankoraŭ neniu citis ĉi tion. Eble vi estu la unua!" @@ -8298,6 +8291,10 @@ msgstr "Privataj bildoj, kies publikigo ne estis interkonsentita" msgid "Non-sexual Nudity" msgstr "Ne-seksuma nudeco" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Nedisponebla ĉe ĉi tiu platformo." msgid "Not followed by anyone you’re following" msgstr "Sekvata de neniu el viaj sekvatoj" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Netrovita" @@ -8333,7 +8330,7 @@ msgstr "Noto pri kundivido" 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 "Atentu: Bluesky estas malfermita kaj publika reto. Ĉi tiu agordo nur limigas la videblecon de via enhavo en la apo kaj retejo de Bluesky, eble aliaj apoj ne respektos ĉi tiun agordon. Aliaj apoj kaj retejoj povas daŭre montri vian enhavon al elsalutintaj uzantoj." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Noto: Ĉi tiu afiŝo videblas nur al ensalutintaj uzantoj." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Ankoraŭ nenio konservita" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Sciigaj agordoj" @@ -8353,11 +8350,12 @@ msgstr "Sciigaj agordoj" msgid "Notification sounds" msgstr "Sciigaj sonoj" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Ho ve!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "Bone" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Bone" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Restarigi la lernilon" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Unu el la elektitaj ricevontoj ne permesas grupajn babilejojn." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Unu el la elektitaj ricevontoj blokis vin kaj nemesaĝeblas." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Al unu aŭ pli da GIF-oj mankas alt-teksto." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Al unu aŭ pli da bildoj mankas alternativa teksto." @@ -8454,11 +8454,11 @@ msgstr "Unu aŭ pli el viaj elektitaj dosieroj ne estas subtenata." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Unu aŭ pli el viaj elektitaj dosieroj estas tro grandaj. Maksimuma grando estas {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Unu aŭ pli afiŝoj estas tro longaj por konservi kiel malneto. La maksimuma nombro da signoj estas {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {# signo.} other {# signoj.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Al unu aŭ pli da videaĵoj mankas alternativa teksto." @@ -8471,7 +8471,7 @@ msgstr "Nur {0} povas respondi." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Nur {0} el {1} {2, plural, one {bildo} other {bildoj}} estis aldonitaj; la limo estas {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Nur WebVTT-dosieroj (.vtt) estas subtenataj" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ve, ĉi tiu profilo ne ekzistas. Provu skani alian." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,13 +8544,13 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Malfermi la profilbildan kreilon" #: src/view/com/feeds/ComposerPrompt.tsx:201 msgid "Open camera" -msgstr "Malfermi fotilon" +msgstr "Malfermi kameraon" #: src/components/dms/ChatInvite/Root.tsx:104 #: src/components/intents/GroupChatJoinDialog.tsx:453 @@ -8570,21 +8570,22 @@ msgstr "Malfermi la opciojn pri konversacio" msgid "Open draft" msgstr "Malfermi malneton" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Malfermi flankmenuon" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Malfermi emoĝi-elektilon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Malfermi la informekranon de la fluo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Malfermi la opciomenuon de la fluo" @@ -8627,7 +8628,7 @@ msgstr "Malfermi la paĝon de kontrolada sencimigo" msgid "Open muted words and tags settings" msgstr "Malfermi agordojn de silentigitaj vortoj kaj kradvortoj" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Malfermi pakon" @@ -8699,9 +8700,9 @@ msgstr "Malfermas pliajn detalojn por sencimigo" msgid "Opens alt text dialog" msgstr "Malfermas dialogujon de alternativa teksto" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" -msgstr "Malfermas fotilon de aparato" +msgstr "Malfermas kameraon de aparato" #: src/view/com/composer/videos/SubtitleDialog.tsx:44 msgid "Opens captions and alt text dialog" @@ -8717,7 +8718,7 @@ msgstr "Malfermas redaktilon" #: src/view/com/feeds/ComposerPrompt.tsx:202 msgid "Opens device camera" -msgstr "Malfermi fotilon de aparato" +msgstr "Malfermi kameraon de aparato" #. Accessibility hint for button in composer to add images, a video, or a GIF to a post. #: src/view/com/composer/SelectMediaButton.tsx:517 @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Malfermas procezon de kreado de nova Bluesky-konto" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Malfermas procezon de ensalutado al via ekzistanta Bluesky-konto" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Pasvorto ĝisdatigita!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Paŭzigi" @@ -8925,12 +8926,12 @@ msgstr "Paŭzigi" msgid "Pause GIF" msgstr "Paŭzigi GIF-on" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Paŭzigi videaĵon" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Homoj" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Homoj, kiujn {ownerName} sekvas, povas peti aliĝi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Homoj sekvataj de @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Homoj sekvantaj @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Homoj kiujn mi sekvas" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Homoj, kiujn mi sekvas, povas peti aliĝi" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Homoj kiujn vi sekvas" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Bildoj destinitaj por adoltoj." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Alpingli fluon" @@ -9034,7 +9035,7 @@ msgstr "Alpingli fluon" msgid "Pin to home" msgstr "Alpingli al hejmo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Alpingli al hejmo" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Alpinglita" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} alpinglita al hejmo" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Alpinglita al viaj fluoj" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Ludi" @@ -9076,8 +9077,8 @@ msgstr "Ludi {0}" msgid "Play GIF" msgstr "Ludi GIF-on" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Ludi videaĵon" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Bonvolu tajpi vian mesaĝon sube:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politiko" @@ -9269,7 +9270,7 @@ msgstr "Politiko" msgid "Porn" msgstr "Pornografio" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Afiŝi" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Afiŝo" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Afiŝi foton" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Afiŝi videaĵon" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Afiŝi ĉiujn" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Afiŝi ĉiuokaze" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Afiŝo blokita" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Afiŝo de @{0}" @@ -9340,7 +9341,7 @@ msgstr "Afiŝo kaŝita de vi" msgid "Post interaction settings" msgstr "Interagaj agordoj de afiŝo" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Interagaj agordoj de afiŝo" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Afiŝo alpinglita" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Afiŝo konservita" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Afiŝo depinglita" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Afiŝoj" @@ -9398,6 +9396,10 @@ msgstr "Afiŝoj povas esti silentigitaj laŭ sia teksto, siaj etikedoj, aŭ amba msgid "Posts hidden" msgstr "Afiŝoj kaŝitaj" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Eventuale misgvida ligilo" @@ -9449,20 +9451,21 @@ msgstr "Privateco" msgid "Privacy and security" msgstr "Privateco kaj sekureco" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privateco kaj sekureco" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Agordoj de privateco kaj sekureco" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Regularo pri privateco" msgid "Privacy violation of a minor" msgstr "Malobservo de neplenaĝula privateco" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Traktado de GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Traktado de videaĵo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Publikaj kaj kundivideblaj listoj por bloki aŭ silentigi uzantojn amase." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publikigi afiŝon" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publikigi afiŝojn" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publikigi respondojn" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publikigi respondon" @@ -9599,12 +9602,12 @@ msgstr "Citafiŝoj malebligitaj" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citaĵoj" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citaĵoj de ĉi tiu afiŝo" @@ -9647,7 +9650,7 @@ msgstr "Reaktivigi vian konton" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Legi {0, plural, one {# respondon} other {# respondojn}} pli" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Legu blogafiŝon" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Legi malpli" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Legi pli" @@ -9687,11 +9690,11 @@ msgstr "Legi la Regularon pri privateco de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Legi la uzokondiĉojn de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Realaj konservacioj." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Realaj homoj." @@ -9721,10 +9724,6 @@ msgstr "Lastaj serĉoj" msgid "Recently used" msgstr "Laste uzitaj" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Rekomenditaj" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Rekonekti" @@ -9748,7 +9747,7 @@ msgstr "Malakcepti babilpeton" msgid "Reject join request" msgstr "Malakcepti aliĝpeton" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Reŝargi konversaciojn" @@ -9766,7 +9765,7 @@ msgstr "Reŝargi konversaciojn" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Forigi" @@ -9792,8 +9791,8 @@ msgstr "Ĉu forigi {displayName}?" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Forigi konton" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "Forigi el babilejo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Forigi el miaj fluoj" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Ĉu forigi el la rapitatingo?" @@ -9862,7 +9861,7 @@ msgstr "Ĉu forigi el la rapitatingo?" msgid "Remove from saved feeds" msgstr "Forigi el konservitaj fluoj" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Forigi el konservitaj afiŝoj" @@ -9880,8 +9879,8 @@ msgstr "Forigi bildon" msgid "Remove live status" msgstr "Forigi tujelsendan staton" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Forigite el la listo" msgid "Removed from saved feeds" msgstr "Forigite el konservitaj fluoj" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Forigita el konservitaj afiŝoj" @@ -9952,7 +9951,7 @@ msgstr "Forigita el konservitaj afiŝoj" msgid "Removed from starter pack" msgstr "Forigita el la startpako" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Respondis al vi" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respondoj" @@ -10037,7 +10037,7 @@ msgstr "Respondoj por ĉi tiu afiŝo estis malebligitaj." msgid "Reply" msgstr "Respondi" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Respondi" @@ -10098,8 +10098,8 @@ msgstr "Raporti konversacion" msgid "Report dialog" msgstr "Raporta dialogujo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Raporti fluon" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Reafiŝita de vi" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Reafiŝoj" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reafiŝoj de ĉi tiu afiŝo" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Reafiŝoj de viaj reafiŝoj" @@ -10253,7 +10253,7 @@ msgstr "Aliĝpeto sendita" msgid "Requests" msgstr "Petoj" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Reprovas la lastan agon, kiu eraris" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Revenas al hejmpaĝo" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Revenas al antaŭa paĝo" @@ -10446,27 +10446,27 @@ msgstr "Konservi naskiĝdaton" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Konservi ŝanĝojn" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Ĉu konservi ŝanĝojn?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Konservi malneton" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Ĉu konservi malneton?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Konservi QR-kodon" msgid "Save these options for next time" msgstr "Konservi tiujn opciojn por venonta fojo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Konservi al miaj fluoj" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Konservitaj fluoj" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Konservitaj afiŝoj" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Konservita al viaj fluoj" @@ -10520,8 +10520,8 @@ msgstr "Konservita al viaj fluoj" msgid "Say hello!" msgstr "Diru saluton!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Diru saluton al iu" @@ -10535,7 +10535,7 @@ msgstr "Skani" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Skani QR-kodon" @@ -10543,15 +10543,15 @@ msgstr "Skani QR-kodon" msgid "Science" msgstr "Scienco" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Rulumi maldekstren" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Rulumi dekstren" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Rulumi al la supro" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Serĉi" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Serĉi afiŝojn de @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Serĉu fluojn, kiujn vi volas proponi al aliuloj." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Serĉi pliajn kontojn" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Serĉi pliajn fluojn" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Serĉi GIF-ojn" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Serĉado nun estas nedisponebla kiam elsalutinta" @@ -10709,6 +10709,7 @@ msgstr "Vidu laborpostenojn ĉe Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Vidi pli" @@ -10716,8 +10717,12 @@ msgstr "Vidi pli" msgid "See more suggested profiles" msgstr "Vidi pli da proponataj profiloj" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Vidi proponitajn kontojn" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Serĉ-ŝovilo. Uzu la sagoklavojn por serĉi antaŭen kaj malantaŭen kaj spacoklavon por ludi/paŭzi" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Elekti kategorion \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Elektu {0}" msgid "Select {langName}" msgstr "Elekti {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Elekti koloron" @@ -10764,11 +10769,11 @@ msgstr "Elektu konton" msgid "Select an app language" msgstr "Elektu lingvon de la apo" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Elekti profilbildon" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Elekti emoĝion" @@ -10780,12 +10785,13 @@ msgstr "Elektu opcion" msgid "Select app language" msgstr "Elektu apan lingvon" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Elektu subtekstan dosieron (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Elekti babilejon \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Elektu GIF-on" msgid "Select GIF \"{0}\"" msgstr "Elektu GIF-on \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Elektu anojn por grupa babilejo" @@ -10864,7 +10870,7 @@ msgstr "Elektu ĉefan lingvon" msgid "Select telephone code" msgstr "Elektu telefonkodon" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Elekti emoĝion {emojiName} kiel profilbildon" @@ -10945,7 +10951,8 @@ msgstr "Sendi mesaĝon" msgid "Send post to {name}" msgstr "Sendi afiŝon al {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Sendi afiŝon al..." @@ -10963,12 +10970,12 @@ msgstr "Sendu la mesaĝon per via telefono" msgid "Send verification email" msgstr "Sendi konfirman retmesaĝon" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Sendi per rekta mesaĝo" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Agordas retpoŝtadreson por restarigi pasvorton" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Agordoj" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Agordoj por agado de aliuloj" @@ -11036,49 +11043,49 @@ msgstr "Agordoj por agado de aliuloj" msgid "Settings for allowing others to be notified of your posts" msgstr "Agordoj por permesi al aliuloj ricevi sciigojn pri viaj afiŝoj" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Agordoj por sciigoj pri ŝatoj" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Agordoj por sciigoj pri mencioj" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Agordoj por sciigoj pri novaj sekvantoj" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Agordoj por sciigoj pri ĉio alia" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Agordoj por sciigoj pri ŝatoj de viaj reafiŝoj" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Agordoj por sciigoj pri reafiŝoj de viaj reafiŝoj" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Agordoj por sciigoj pri citaĵoj" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Agordoj por sciigoj pri respondoj" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Agordoj por sciigoj pri reafiŝoj" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Diskonigi malgraŭ tio" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Konigi DID-on de aŭtoro" @@ -11127,7 +11134,7 @@ msgstr "Konigi DID-on de aŭtoro" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialogujo pri ligila konigado" msgid "Share my profile" msgstr "Diskonigi mian profilon" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Konigi URI-on at:// de afiŝo" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Konigi QR-kodon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Konigi ĉi tiun fluon" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Konigi ĉi tiun startpakon" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Konigu ĉi tiun startpakon kaj helpu homojn aliĝi vian komunumon ĉe Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Konigi viajn kontaktojn por trovi amikojn" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testanto de komunaj preferoj" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Montri" msgid "Show alt text" msgstr "Montri alternativan tekston" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Montri ĉiuokaze" @@ -11274,9 +11281,9 @@ msgstr "Montri liston ĉiuokaze" msgid "Show lists of users to select from" msgstr "Montri listojn de elekteblaj uzantoj" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Montri pli" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Montri averton kaj elfiltri el fluoj" msgid "Show when you’re live" msgstr "Montri kiam vi tujelsendas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Montri informojn pri kiam ĉi tiu afiŝo estis kreita" @@ -11341,15 +11348,15 @@ msgstr "Montri informojn pri kiam ĉi tiu afiŝo estis kreita" msgid "Shows other accounts you can switch to" msgstr "Montras aliajn kontojn al kiuj vi povas ŝanĝi" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Montras la enhavon" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Montras la enhavon" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Ĉu elsaluti?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Ensaluto devigita" @@ -11469,7 +11476,7 @@ msgstr "Preterpasi" msgid "Skip contact sharing and continue to the app" msgstr "Preterpasi kontaktan konigon kaj daŭrigi al la apo" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Ĉu preterlasi malplenajn afiŝojn?" @@ -11487,7 +11494,7 @@ msgstr "Preterpasi al sekva paŝo" msgid "slide" msgstr "lumbilda" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Malpli granda" @@ -11499,7 +11506,7 @@ msgstr "Dormetas la sciigon" msgid "So many thoughts, you should post one" msgstr "Tiom da pensoj, ke vi devas afiŝi iu el ili" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Socia komunikilo regata de vi." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Iu foriris el la grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Iu reagis per {0}" @@ -11554,7 +11561,7 @@ msgstr "Iu reagis per {0}" msgid "Someone reacted {0} to {target}" msgstr "Iu reagis per {0} al {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Io misokazis, bonvolu reprovi" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Io misfunkciis. Bonvolu reprovi post momento." msgid "Something went wrong. Please try again." msgstr "Io misfunkciis. Bonvolu reprovi." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Ĉu io misfunkciis? Sciigu nin." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Trudmesaĝoj aŭ alia neaŭtentika konduto aŭ trompo" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sporto" @@ -11668,7 +11675,7 @@ msgstr "Komencu konversacion, kaj ĝi aperos ĉi tie." msgid "Start a group chat" msgstr "Komenci grupan babilejon" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Komenci novan babilejon" @@ -11682,17 +11689,17 @@ msgstr "Komenci aldoni homojn" msgid "Start adding people!" msgstr "Komencu aldoni homojn!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Komenci babilejon" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Komenci babili kun {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpako" @@ -11715,12 +11722,16 @@ msgstr "Startpako de vi" msgid "Starter pack is invalid" msgstr "Startpako nevalidas" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpakoj" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Starterpako ebligas al vi konigi viajn plej ŝatatajn fluojn kaj homojn kun viaj amikoj." @@ -11728,7 +11739,7 @@ msgstr "Starterpako ebligas al vi konigi viajn plej ŝatatajn fluojn kaj homojn msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Startpako ebligas al vi konigi viajn plej ŝatatajn fluojn kaj homojn kun viaj amikoj." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Startpakoj ebligas al vi konigi viajn plej ŝatatajn fluojn kaj kontojn kun viaj amikoj." @@ -11742,7 +11753,7 @@ msgstr "Paĝo pri stato" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Paŝo {0} el {1}" @@ -11754,7 +11765,7 @@ msgstr "Konservejo vakigita, nun relanĉu la apon." msgid "Stored as part of a secure code for matching with others" msgstr "Konservita kiel parto de sekura kodo por kongrui kun aliaj" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Historio de agoj" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Aboni {publicationTitle} ĉe {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Aboni al @{0} por uzi tiujn etikedojn:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Sukcese konfirmita" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Proponita" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Proponitaj kontoj" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sunsubiro" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Subteno por ĉi tiu funkcio en via lando ankoraŭ ne estis ebligita. Bonvolu rekontroli poste." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Suspenditaj kontoj ne povas partopreni en grupa babilejo." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Suspenditaj kontoj ne povas partopreni en babilejo." @@ -11921,8 +11934,8 @@ msgstr "Ŝanĝi al {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Igi la konversacion privata." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tuŝetu sube por permesi al Bluesky aliri vian GPS-pozicion. Ni tiam uzos tiujn datumojn por pli precize determini la enhavon kaj funkciojn disponeblajn en via regiono." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tuŝeti por detaloj" @@ -11976,7 +11989,7 @@ msgstr "Tuŝetu por fermi kuntekstmenuon" msgid "Tap to copy this invite link" msgstr "Tuŝetu por kopii ĉi tiun invitligilon" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tuŝetu por ignori" @@ -12003,7 +12016,7 @@ msgstr "Tuŝetu por forigi vian reagon {0}" msgid "Tap to request access to join this group chat" msgstr "Tuŝetu por sendi aliĝpeton al ĉi tiu grupa babilejo" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tuŝetu por reprovi" @@ -12016,7 +12029,7 @@ msgstr "Tuŝetu por montri {0} reagojn" msgid "Tap to show all reactions" msgstr "Tuŝetu por montri ĉiujn reagojn" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tuŝetu por vidi reagojn" @@ -12032,7 +12045,7 @@ msgstr "Tasko farita - 10 kontoj sekvataj!" msgid "Task complete - 10 likes!" msgstr "Tasko farita - 10 ŝatoj!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Sciigu la algoritmon pri tio, kion vi ŝatas" @@ -12060,7 +12073,7 @@ msgstr "Kondiĉoj" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Tiu startpako ne troveblas." msgid "That username is already taken" msgstr "Tiu uzantnomo jam estas uzata" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Jen ĉio, uloj!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Tio estas ĉio!" @@ -12216,7 +12229,7 @@ msgstr "La servilo ŝajnas havi problemon. Bonvolu reprovi post kelkaj momentoj. msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "La startpako, kiun vi provas vidi, estas nevalida. Vi povas forigi ĝin." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "La temo de la kuntekstmenuo" @@ -12238,7 +12251,7 @@ msgstr "La konfirmkodo kiun vi entajpis estas nevalida. Bonvolu certiĝi, ke vi msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "La kontrola provizanto ne povis sendi kodon al via telefonnumero. Bonvolu kontroli vian telefonnumeron kaj reprovi." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Etosa" @@ -12266,7 +12279,7 @@ msgstr "Estis problemo ŝargante GIF-ojn. Kontrolu vian konekton kaj reprovu." msgid "There was a problem with your internet connection, please try again" msgstr "Estis problemo kun via interreta konekto, bonvolu reprovi denove" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Estis problemo kun via interreta konekto, bonvolu reprovi denove" msgid "There was an issue contacting the server" msgstr "Estis problemo konektante servilon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Estis problemo konektante servilon, bonvolu kontroli vian interretan konekton kaj reprovu." @@ -12283,8 +12296,8 @@ msgstr "Estis problemo konektante servilon, bonvolu kontroli vian interretan kon msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Estis problemo ŝargante sciigojn. Tuŝetu ĉi tie por reprovi." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Estis problemo ŝargante afiŝojn. Tuŝeti ĉi tie por reprovi." @@ -12309,7 +12322,7 @@ msgstr "Problemo okazis dum ŝarĝi infomojn de via servo" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Estis problemo forigante ĉi tiun fluon. Bonvolu kontroli vian interretan konekton kaj reprovu." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Ĉi tiuj agordoj nur aplikas al la Following-fluo." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Tiu homo posedas ĉi tiun babilejon" @@ -12392,7 +12405,7 @@ msgstr "Tiu homo posedas ĉi tiun babilejon" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Ĉi tiu {screenDescription} estas markita per flago:" @@ -12408,7 +12421,7 @@ msgstr "La posedanto de la konto markis ĝin kiel \"aŭtomatigita\"." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Ĉi tiu konto havas unu aŭ pli provitajn konfirmojn, sed ĝi ne estas nune konfirmita." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Ĉi tiu konto petis, ke uzantoj ensalutu por vidi ties profilo." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ĉi tiu fluo malplenas! Eble vi devas sekvi pli da uzantoj aŭ ŝanĝi viajn lingvajn agordojn." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Ĉi tiu fluo malplenas." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Tiu identigilo estas rezervita. Bonvolu provi alian." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Ĉi tiu etikedo estis aplikita de vi." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Ĉi tiu etikedilo ne deklaris, kiajn etikedojn ĝi publikigas kaj ĝi povas esti neaktiva." @@ -12621,13 +12634,13 @@ msgstr "Ĉi tiu listo malplenas." msgid "This message is hidden" msgstr "Ĉi tiu mesaĝo estas kaŝita" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Ĉi tiu mesaĝo estas kaŝita ĉar ĉi tiu uzanto blokas vin." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Ĉi tiu mesaĝo estas kaŝita ĉar vi blokas ĉi tiun uzanton." @@ -12641,7 +12654,7 @@ msgstr "Ĉi tiu persono blokas vin" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ĉi tiu afiŝo asertas, ke ĝi estis kreita je <0>{0}, sed ĝi estis unue vidita ĉe Bluesky je <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Ĉi tiu afiŝo asertas, ke ĝi estis kreita je <0>{0}, sed ĝi estis msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ĉi tiu afiŝo havas nekonatan tipon de fadenado. Via apo eble estas malaktuala." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Ĉi tiu afiŝo videblas nur al ensalutintaj uzantoj." @@ -12661,7 +12674,7 @@ msgstr "Ĉi tiu afiŝo estis forigita de ĝia aŭtoro" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ĉi tiu afiŝo estos kaŝota el fluoj kaj fadenoj. Tio ne povas esti malfarita." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "La aŭtoro de ĉi tiu afiŝo malŝaltis citafiŝojn." @@ -12698,11 +12711,12 @@ msgstr "Tio daŭru nur kelkajn minutojn." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Ĉi tiu uzanto ne havas montratan nomon, kaj tial ne povas esti konfirmita." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Ĉi tiu uzanto havas neniun sekvanton." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Ĉi tiu uzanto blokis vin kaj nemesaĝeblas." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Ĉi tiu uzanto blokis vin. Vi ne povas vidi ties enhavon." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Ĉi tiu uzanto malebligis babilejojn kaj nemesaĝeblas." @@ -12733,11 +12748,11 @@ msgstr "Ĉi tiu uzanto estas inkluzivita en la listo <0>{0}, kiun vi silenti msgid "This user is new here. Press for more info about when they joined." msgstr "Ĉi tiu uzanto novas ĉi tie. Premu por pliaj informoj pri kiam tiu aliĝis." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Ĉi tiu uzanto sekvas neniun." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Ĉi tiu videaĵo neludeblas per via aparato. Nepraj videokodekoj (H.264/AAC) eble mankas en via retumilo aŭ operaciumo." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Ĉi tio forigos @{0} el la listo de rapidatingo." @@ -12786,7 +12801,7 @@ msgstr "Fadenaj preferoj" msgid "Threaded" msgstr "Fadene" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Agordoj pri fadenoj" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Tro da kontaktoj - vi transpasis la nombron da kontaktoj, kiujn vi eblas importi al viaj amikoj" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Plej popularaj" @@ -12858,7 +12873,7 @@ msgstr "Plej popularaj" msgid "Top replies first" msgstr "La plej popularaj respondoj unue" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Temo" @@ -12893,7 +12908,9 @@ msgstr "Tradukado al la sama lingvo estas nedisponebla sur via aparato." msgid "Tree view" msgstr "Arbovido" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Furoraĵoj" @@ -12902,7 +12919,7 @@ msgstr "Furoraĵoj" msgid "Trending GIFs" msgstr "Furoraj GIF-oj" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opcioj pri furoraĵoj" @@ -12918,11 +12935,11 @@ msgstr "Trolado" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Fido aperas per interrilatoj, komunumoj kaj komunaj kuntekstoj, do ni ankaŭ estigis <0>fidataj konfirmantoj: organizoj kiuj povas rekte fari konfirmadon." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Ne eblas akiri aliĝpetojn." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Ne eblas trovi elektitan ricevonton." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Ne eblas trovi la elektitan ricevonton." @@ -13024,12 +13043,12 @@ msgstr "Nedisponebla" msgid "Unavailable feed information" msgstr "Nedisponeblaj informoj pri fluo" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Ĉu malbloki konton?" msgid "Unblock list" msgstr "Malbloki liston" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Ne sekvi {0}" msgid "Unfollow account" msgstr "Ne sekvi konton" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Ĉesas sekvi la uzanton" @@ -13132,7 +13151,7 @@ msgstr "Neetikedita poradolta enhavo" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Neetikedita, perforta aŭ ne-interkonsentita poradolta enhavo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Ne plu ŝati" @@ -13192,7 +13211,7 @@ msgstr "Malsilentigi ĉi tiun grupan babilejon" msgid "Unmute thread" msgstr "Malsilentigi fadenon" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Malsilentigi videaĵon" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Depingli" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Depingli fluon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Depingli de la hejmpaĝo" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Depingli kontrol-liston" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} depinglita de Hejmo" @@ -13258,11 +13277,11 @@ msgstr "Malaboni de ĉi tiu etikedilo" msgid "Unsubscribed from list" msgstr "Malabonita de listo" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Nesubtenata tonduja enhavo" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Nesubtenata videaĵa tipo: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Ĝisdatigado de responda videbleco malsukcesis" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Alŝuti foton anstataŭe" @@ -13341,7 +13360,7 @@ msgstr "Alŝuti tekstodosieron al:" #: src/view/com/util/UserBanner.tsx:164 #: src/view/com/util/UserBanner.tsx:167 msgid "Upload from Camera" -msgstr "Alŝuti el la fotilo" +msgstr "Alŝuti el la kamerao" #: src/view/com/util/UserAvatar.tsx:511 #: src/view/com/util/UserBanner.tsx:181 @@ -13355,7 +13374,7 @@ msgstr "Alŝuti el la dosieroj" msgid "Upload from Library" msgstr "Alŝuti el la biblioteko" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Alŝutado de GIF..." @@ -13369,7 +13388,7 @@ msgstr "Alŝutado de bildoj..." msgid "Uploading link thumbnail..." msgstr "Alŝutado de ligila miniaturo..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Alŝutado de videaĵo..." @@ -13408,7 +13427,7 @@ msgstr "Uzi ĉi tion por registriĝi en la alia aplikaĵo per via identigilo." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Uzu retpoŝtadreson de via konto aŭ alian realan retpoŝtadreson kiun vi posedas, por ke KWS aŭ Bluesky kontakteblos vin se necese." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "uzanto" @@ -13510,7 +13529,7 @@ msgstr "Konfirmado malsukcesis, bonvolu reprovi." msgid "Verification settings" msgstr "Konfirmadaj agordoj" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Konfirmadaj agordoj" @@ -13618,7 +13637,7 @@ msgstr "Videaĵo" msgid "Video failed to process" msgstr "Pritraktado de videaĵo fiaskis" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Videaĵo-fluo" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Videaĵo de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Videaĵo de {0}. Tuŝetu por ludi aŭ paŭzigi la videaĵon" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videoludoj" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Videaĵo estas paŭzigita" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Videaĵo estas ludata" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Videaĵo netrovita." @@ -13653,7 +13672,7 @@ msgstr "Videaĵo netrovita." msgid "Video settings" msgstr "Agordoj pri videaĵoj" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Videaĵo alŝutita" @@ -13662,17 +13681,17 @@ msgstr "Videaĵo alŝutita" msgid "Video: {0}" msgstr "Videaĵo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videaĵoj" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videaĵoj devas esti malpli ol 3 minute longaj." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vidi" @@ -13691,9 +13710,9 @@ msgstr "Vidi la profilbildon de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Vidi la profilon de {0}" @@ -13724,13 +13743,13 @@ msgstr "Vidi blogafiŝon por pli da detaloj" msgid "View debug entry" msgstr "Vidi protokolan eron" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Vidi detalojn" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vidi tutan fadenon" @@ -13761,7 +13780,7 @@ msgstr "Vidi pli" msgid "View more trending videos" msgstr "Vidi pli da furoraj videaĵoj" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Vidi afiŝon" @@ -13798,11 +13817,11 @@ msgstr "Vidi la invitligilon por ĉi tiu grupa babilejo" msgid "View the labeling service provided by @{0}" msgstr "Vidi la etikedadan servon provizitan de @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Vidi konfirmojn de ĉi tiu uzanto" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Vidi uzantojn, kiuj ŝatis ĉi tiun fluon" @@ -13831,7 +13850,7 @@ msgstr "Montru viajn kontrol-listojn" msgid "View your muted accounts" msgstr "Vidi viajn silentigitajn kontojn" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Vidi viajn konfirmojn" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Ni havas retajn problemojn, provu denove" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Ni havas retajn problemojn, provu denove" @@ -14043,7 +14062,7 @@ msgstr "Ni havas retajn problemojn, provu denove" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Ni prezentas novan tavolon de konfirmado ĉe Bluesky — facile videbla kontrolmarko." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Ni estas tre ekscitita, ke vi aliĝis al ni!" @@ -14064,13 +14083,15 @@ msgstr "Ni bedaŭras, sed ni ne povis adrestrovi ĉi tiun liston. Se tio daŭras msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Ni bedaŭras, sed ni ne povis ŝargi viajn silentigitajn vortojn nuntempe. Bonvolu provi denove." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Bedaŭrinde, via serĉo ne povis esti plenumita. Bonvolu reprovi post kelkaj minutoj." @@ -14078,7 +14099,7 @@ msgstr "Bedaŭrinde, via serĉo ne povis esti plenumita. Bonvolu reprovi post ke msgid "We're sorry, you cannot access this screen at this time." msgstr "Bedaŭrinde, vi ne povas aliri ĉi tiun ekranon nuntempe." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ni bedaŭras! La afiŝo al kiu vi respondas estis forigita." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Kio okazas?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Kiu povas konfirmi?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ups!" @@ -14220,21 +14241,21 @@ msgstr "Ĉu vi volas bloki ĉi tiun uzanton kaj/aŭ foriri el ĉi tiu konversaci msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Ĉu vi volas konservi ĉi tion kiel malneto antaŭ ol vidi viajn malnetojn?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Ĉu vi volas konservi ĉi tion kiel malneto por redakti ĝin poste?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Tajpu afiŝon" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Tajpu afiŝon" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Tajpu vian respondon" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Vi blokas {0}" @@ -14342,7 +14363,7 @@ msgstr "Vi ne plu tujelsendas" msgid "You are not allowed to upload videos." msgstr "Vi ne rajtas alŝuti videaĵojn." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Vi ankoraŭ sekvas neniun" @@ -14362,7 +14383,7 @@ msgstr "Vi estas konfirmita. Vi perdos vian konfirman staton, se vi ŝanĝos via msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Vi estas konfirmita. Vi perdos vian konfirman staton, se vi ŝanĝos vian identigilon. <0>Eksciu pli." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Vi povas adapti viajn interesojn iam ajn de agordoj pri \"Enhavo kaj aŭdvidaĵoj\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Vi nun povas ensaluti per via nova pasvorto." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Vi povas aldoni ĝis po {MAX_GALLERY_IMAGES, plural, one {# bildon} other {# bildojn}} en afiŝo" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Vi povas konservi malnetojn maksimume nur 1000 signojn longajn." @@ -14439,9 +14460,9 @@ msgstr "Vi povas legi babilejan historion sed ne povas sendi novajn mesaĝojn." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Vi povas elekti {MAX_GALLERY_IMAGES, plural, one {# bildon} other {# bildojn}} entute." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Vi povas ĝisdatigi ĉi tion poste en viaj agordoj." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Vi ne povas aldoni pli ol {EMOJI_REACTION_LIMIT, plural, one {# emoĝi-reagon} other {# emoĝi-reagojn}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Vi ankoraŭ ne povas krei grupan babilejon." @@ -14555,7 +14577,7 @@ msgstr "Vi sukcese konfirmis vian retpoŝtadreson. Vi povas fermi ĉi tiun dialo msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Vi dumtempe atingis la limon por videaĵaj alŝutoj. Bonvolu reprovi poste." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Vi havas nekonservitajn ŝanĝojn al ĉi tiu malneto, ĉu vi volas konservi ilin?" @@ -14563,7 +14585,7 @@ msgstr "Vi havas nekonservitajn ŝanĝojn al ĉi tiu malneto, ĉu vi volas konse msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Vi havas nekonservitajn ŝanĝojn. Ĉu vi volas konservi ilin antaŭ ol vidi viajn malnetojn?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Vi ankoraŭ kreis neniun startpakon!" @@ -14614,7 +14636,7 @@ msgstr "Vi eblas aldoni maksimume {STARTER_PACK_MAX_SIZE, plural, one {{STARTER_ msgid "You may only add up to 3 feeds" msgstr "Vi povas aldoni maksimume 3 fluojn" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Vi devas esti babilejan posedanton por forpeli anon." @@ -14622,7 +14644,7 @@ msgstr "Vi devas esti babilejan posedanton por forpeli anon." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Vi devas aĝi almenaŭ 13 jarojn por uzi Bluesky. Legu niajn <0>uzokondiĉojn por pliaj informoj." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vi devas sekvi almenaŭ sep aliajn homojn por generi startpakon." @@ -14639,7 +14661,7 @@ msgstr "Vi devas permesi aliron al via aŭdvida biblioteko." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Vi konfirmu vian retpoŝtadreson, antaŭ ol vi povos ŝalti retpoŝtan 2FA-on." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Vi posedas ĉi tiun babilejon" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Vi volu nun relanĉi la apon." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Vi reagis per {0}" @@ -14667,15 +14689,15 @@ msgstr "Vi reagis per {0} al {target}" msgid "You recently changed your birthdate" msgstr "Vi lastatempe ŝanĝis vian naskiĝdaton" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Vi respondis" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Vi respondis al {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Vi respondis al vi mem" @@ -14715,11 +14737,11 @@ msgstr "Vi ne povos aliĝi ree, krom se vi estos invitota." msgid "You: {message}" msgstr "Vi: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Vi sekvos la sugestitajn uzantojn kaj fluojn post kiam vi finos krei vian konton!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Vi sekvos la proponitajn uzantojn post kiam vi finos krei vian konton!" @@ -14791,7 +14813,7 @@ msgstr "Vi atingis la finon de la aktiva enhavo." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Vi atingis la finon de via fluo! Trovu pliajn kontojn por sekvi." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Vi atingis la maksimuman nombron da malnetoj" @@ -14799,7 +14821,7 @@ msgstr "Vi atingis la maksimuman nombron da malnetoj" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Vi atingis la maksimuman nombron da permesitaj petoj. Bonvolu reprovi poste." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da bajtoj)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da videaĵoj)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Vi elĉerpis videaĵojn por spekti. Ĉu eble estas bona tempo fari paŭzon?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Via konto" @@ -14835,11 +14857,11 @@ msgstr "Via konto estis suspendita" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Via konto ne estas sufiĉe malnova por alŝuti videaĵojn. Bonvolu reprovi poste." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Via konto estas tro nova" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Via konto devas esti almenaŭ 7 tagojn malnova por krei novan grupan babilejon." @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Viaj interesoj estis ĝisdatigitaj!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Viaj interesoj helpas nin ekscii, kion vi ŝatas!" @@ -14967,11 +14989,11 @@ msgstr "Via pasvorto estis sukcese ŝanĝita! Bonvolu ekuzi vian novan pasvorton msgid "Your password must be at least 8 characters long." msgstr "Via pasvorto bezonas almenaŭ 8 signojn." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Via afiŝo estis sendita" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Viaj afiŝoj estis senditaj" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Via preferata lingvo" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Via profilbildo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Via profilbildo ĉirkaŭita per samcentraj cirkloj de profilbildoj de aliaj uzantoj" @@ -14992,7 +15014,7 @@ msgstr "Via profilbildo ĉirkaŭita per samcentraj cirkloj de profilbildoj de al msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Via profilo, afiŝoj, fluoj kaj listoj ne plu videblos por aliaj uzantoj de Bluesky. Vi povas reaktivigi vian konton iam ajn per ensaluto." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Via respondo estis sendita" @@ -15005,7 +15027,7 @@ msgstr "Via raporto estos sendota al <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Viaj elektitaj interesoj helpas nin havigi al vi enhavon, kiu gravas al vi." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Via fadeno havas malplenajn afiŝojn, kiuj estos preterlasitaj. La restantaj afiŝoj estos publikigitaj kiel fadeno." diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index dc8a15938b..146345c75c 100644 --- a/src/locale/locales/es/messages.po +++ b/src/locale/locales/es/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: es\n" +"Language: es_ES\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoría \"{interestsDisplayName}\" (activa)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contiene contenido incrustado)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# me gusta} other {# me gusta}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# miembro} other {# miembros}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nueva solicitud para unirse} other {# nuevas solicitu #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# persona reaccionó} other {# personas reaccionaron}} – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Cuenta)" @@ -251,36 +252,13 @@ msgstr "{0} añadido al chat" msgid "{0} and {1} added to chat" msgstr "{0} y {1} añadidos al chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} siguiendo" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} te tiene bloqueado" @@ -324,14 +302,6 @@ msgstr "{0} salió" msgid "{0} left the group" msgstr "{0} salió del grupo" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reaccionó con {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} y {memberCount, plural, one {# persona más} other {# personas más}} añadidos al chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} te verificó" msgid "{following} following" msgstr "{following} siguiendo" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "No se puede añadir a {handle}" @@ -698,7 +660,7 @@ msgstr "No se puede añadir a {handle}" msgid "{handle} can't be messaged" msgstr "No se puede enviar un mensaje a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "No se pueden enviar mensajes a {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# notificacion no leída} other {# noti msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contacto encontrado} other {# contactos encontrados}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} se unió a Bluesky hace {timeAgoString}" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} se unió a Bluesky usando un paquete de inicio hace {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# solicitud} other {# solicitudes}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ solicitudes" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "Hace {type} h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} es un verificador de confianza" @@ -842,13 +795,13 @@ msgstr "Verificaciones de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {siguiendo} other {siguiendo}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {citas}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicación} other {republicaciones}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {guardado} other {guardados}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> te añadió" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Inicia sesión<1> o <2>crea una cuenta<3> <4>para acceder a noticias, deportes, debates políticos y todo lo que sucede en Bluesky." @@ -971,7 +924,7 @@ msgstr "30 días" msgid "7 days" msgstr "7 días" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Una colección de feeds populares que puedes encontrar en Bluesky, incluyendo News, Booksky, Game Dev, Blacksky y Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Se produjo un error de red. Por favor, verifica tu conexión a internet" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Se ha enviado un nuevo código" msgid "A new form of verification" msgstr "Una nueva forma de verificar" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Una captura de pantalla del editor de publicaciones con un nuevo botón junto al botón de publicar que dice \"Borradores\", con un efecto de fuegos artificiales de arcoíris. Debajo, el texto en el editor dice \"Hey, did you hear the news? Bluesky has drafts now!!!\" [¡Oye, ¿escuchaste la noticia? ¡Bluesky ya tiene borradores!]." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Un destinatario seleccionado no es seguido por el remitente." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "¡Acceso solicitado! El propietario del grupo revisará tu solicitud." msgid "Accessibility" msgstr "Accesibilidad" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Ajustes de accesibilidad" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Cuenta silenciada por una lista" msgid "Account options" msgstr "Opciones de la cuenta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Cuenta eliminada del acceso rápido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Las cuentas con una marca de verificación ondeada <0><1/> pueden verificar a otras. Bluesky se encarga de seleccionar a estas cuentas de confianza." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Actividad de otras personas" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Añadir un texto alternativo (opcional)" msgid "Add another account" msgstr "Añadir otra cuenta" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Añadir otra publicación" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Añadir otra publicación al hilo" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "Añadir etiqueta de automatización a la cuenta" msgid "Add emoji reaction" msgstr "Añadir reacción con emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Añade este feed a tus feeds" msgid "Add to lists" msgstr "Añadir a las listas" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Añadir a publicaciones guardadas" @@ -1400,7 +1360,7 @@ msgstr "Solo para adultos" msgid "Adult content" msgstr "Contenido para adultos" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permite acceso a los mensajes directos" msgid "Already have a code?" msgstr "¿Ya tienes un código?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "¿Ya tienes una cuenta?" @@ -1614,7 +1574,7 @@ msgstr "Te hemos enviado un correo electrónico a {0} con un código de confirma msgid "An error has occurred" msgstr "Se ha producido un error" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Se produjo un error" @@ -1631,7 +1591,7 @@ msgstr "Se produjo un error al obtener cuentas sugeridas." msgid "An error occurred while fetching the feed." msgstr "Error al recuperar el feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Se produjo un error al generar tu paquete de inicio. ¿Quieres intentarlo de nuevo?" @@ -1640,11 +1600,11 @@ msgstr "Se produjo un error al generar tu paquete de inicio. ¿Quieres intentarl msgid "An error occurred while hiding suggestion. {0}" msgstr "Se produjo un error al ocultar la sugerencia. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Se produjo un error al cargar el video. Vuelve a intentarlo." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Se produjo un error mientras cargaba el video. Vuelve a intentarlo." @@ -1684,7 +1644,7 @@ msgstr "Se produjo un error. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Una ilustración que muestra avatares de usuarios saliendo de una libreta de contactos hacia la aplicación de Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Una ilustración de varias publicaciones de Bluesky junto con los iconos de republicar, me gusta y comentar" @@ -1705,17 +1665,15 @@ msgstr "Un enlace de invitación permite a las personas unirse a este chat de gr msgid "An issue not included in these options" msgstr "Un problema no presente en estas opciones" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Se produjo un problema al crear el chat de grupo. Inténtalo de nuevo." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Se produjo un problema al iniciar el chat. Inténtalo de nuevo." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Se produjo un problema mientras intentaba abrir el chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Cualquiera" @@ -1802,7 +1760,7 @@ msgstr "Cualquier persona que me siga" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Quien lo tenga ya no podrá unirse ni solicitar unirse. Siempre puedes crear uno nuevo." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "El nombre de la contraseña de app debe tener al menos cuatro caracteres msgid "App passwords" msgstr "Contraseñas de app" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contraseñas de app" @@ -1891,8 +1849,8 @@ msgstr "Apelar esta decisión" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Aplicar Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archivado desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publicación archivada" @@ -1980,7 +1938,7 @@ msgstr "¿Quieres eliminar esto de tus feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "¿Estás seguro de que quieres retirar tu solicitud para unirte a {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "¿Quieres descartar esta publicación?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Cuenta automatizada" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "Etiqueta de automatización" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etiqueta de automatización" @@ -2050,12 +2008,16 @@ msgstr "Reproducir videos y GIFs automáticamente" msgid "Available" msgstr "Disponible" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Para publicar o responder, debes verificar tu correo electrónico." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Antes de crear un paquete de inicio, debes verificar tu correo electrónico." @@ -2135,10 +2097,10 @@ msgstr "Antes de que puedas recibir notificaciones de los posts de {name}, debes #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Comience el proceso de verificación de edad completando los campos deba msgid "Beta Feature" msgstr "Función beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Fecha de nacimiento" msgid "Birthday" msgstr "Cumpleaños" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Cuentas bloqueadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuentas bloqueadas" @@ -2282,7 +2250,7 @@ msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte 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 "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera. No verás su contenido y no podrán ver el tuyo." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Si bloqueas a un etiquetador aún podrán seguir aplicando etiquetas a tu cuenta." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no puede confirmar la autenticidad de la fecha declarada." @@ -2330,7 +2299,7 @@ msgstr "Bluesky es una red abierta donde puedes elegir tu proveedor de alojamien msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky es una red abierta en la que puedes elegir el proveedor que quieras. Si estás empezando, te recomendamos la opción por defecto, Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "¡Bluesky es mejor con amigos!" @@ -2358,7 +2327,7 @@ msgstr "Términos de servicio de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky almacena tus contactos como datos codificados. Eliminar tus contactos borrará estos datos inmediatamente." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky elegirá un conjunto de cuentas recomendadas de personas en su red." @@ -2425,24 +2394,25 @@ msgstr "Busca más sugerencias en la página Explorar" msgid "Browse other feeds" msgstr "Explorar otros feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Explorar publicaciones sobre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Explorar publicaciones etiquetadas con {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Explorar el paquete de inicio {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Explorar el tema {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Explorar el tema {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Botón para volver a la línea de tiempo principal" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Por {0}" @@ -2473,9 +2443,9 @@ msgstr "por @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Por <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Al crear una cuenta, aceptas los <0>Términos de servicio y la <1>Po msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Al crear una cuenta, aceptas los <0>Términos de servicio." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Tuyos" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Cámara" @@ -2534,7 +2504,7 @@ msgstr "Se necesita acceso a la cámara" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Se necesita acceso a la cámara" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Cancelar la reactivación y cerrar la sesión" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelar búsqueda" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Los cambios en el paquete de inicio no se reflejarán en la lista después de su creación. La lista será una copia independiente." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat silenciado" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chat no encontrado." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Los propietarios de un chat no pueden salir de un chat de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "El destinatario del chat no es seguido por el remitente." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Bandeja de solicitudes de chat" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Solicitudes de chat" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Ajustes de chat" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat no silenciado" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2808,7 @@ msgstr "Elige el método de verificación del dominio" msgid "Choose Feeds" msgstr "Elija Feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Elige para mi" @@ -2854,7 +2825,7 @@ msgstr "Elige a la gente" msgid "Choose post languages" msgstr "Elegir idiomas de la publicación" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Elige este color como tu avatar" @@ -2879,7 +2850,7 @@ msgstr "Elige tu propia cronología: encuentra el contenido que más te gusta gr msgid "Choose your password" msgstr "Elige tu contraseña" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Tu nombre de usuario" @@ -2966,7 +2937,7 @@ msgstr "Haz clic aquí para ver el enlace de invitación de este chat de grupo" msgid "Click to open tag menu for {0}" msgstr "Haz clic para abrir el menú de etiquetas de {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clic para reintentar mensaje fallido" @@ -3003,7 +2974,7 @@ msgstr "Clic para reintentar mensaje fallido" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Clic para reintentar mensaje fallido" msgid "Close" msgstr "Cerrar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Cerrar diálogo activo" @@ -3047,7 +3018,7 @@ msgstr "Cerrar banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Cerrar el visor de imagen" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Cerrar el menú" @@ -3090,7 +3061,7 @@ msgstr "Cerrar el banner de solicitudes entrantes" msgid "Close this dialog" msgstr "Cierra este diálogo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Cerrar diálogo de bienvenida" @@ -3098,7 +3069,7 @@ msgstr "Cerrar diálogo de bienvenida" msgid "Closes password update alert" msgstr "Cierra la alerta de actualización de contraseña" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Cierra la ventana de redacción y descarta el borrador" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Color" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modo de color" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Cómics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrices de la comunidad" @@ -3141,7 +3112,7 @@ msgstr "Directrices de la comunidad" msgid "Complete onboarding and start using your account" msgstr "Completa la incorporación y comienza a usar tu cuenta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa el desafío" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Escribir nueva publicación" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}" @@ -3160,11 +3131,11 @@ msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}" msgid "Compose reply" msgstr "Escribir la respuesta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Comprimiendo GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimiendo video..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Contactar con nuestro equipo de soporte" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contactar con el soporte" @@ -3253,7 +3224,7 @@ msgstr "Contenido y medios" msgid "Content and media" msgstr "Contenido y medios" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contenido y medios" @@ -3265,10 +3236,6 @@ msgstr "Contenido bloqueado" msgid "Content filters" msgstr "Filtros de contenido" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Contenido de toda la red que podría gustarte." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Idiomas del contenido" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Contenido que promueve o muestra autolesiones" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Advertencia de Contenido" msgid "Content warnings" msgstr "Advertencias de contenido" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fondo del menú contextual, haga clic para cerrar el menú." @@ -3302,7 +3269,7 @@ msgstr "Fondo del menú contextual, haga clic para cerrar el menú." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Continuar hilo..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continuar al nombre del grupo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Conversación no encontrada." msgid "Copied build version to clipboard" msgstr "Versión de compilación copiada al portapapeles" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copiar Contraseña de App" msgid "Copy at:// URI" msgstr "Copiar URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiar el DID del autor" @@ -3449,10 +3416,10 @@ msgstr "Copiar Link" msgid "Copy link to list" msgstr "Copia el enlace a la lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar el enlace a la publicación" @@ -3470,8 +3437,8 @@ msgstr "Copiar el enlace al paquete de inicio" msgid "Copy message text" msgstr "Copiar el texto del mensaje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiar URI at:// de la publicación" @@ -3490,7 +3457,7 @@ msgstr "Copiar valor del registro TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de derechos de autor" @@ -3540,11 +3507,11 @@ msgstr "No se pudieron seguir todas las coincidencias. {0}" msgid "Could not leave chat" msgstr "No se pudo salir de este chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "No se pudo salir del chat." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "No se pudo cargar este feed" @@ -3562,7 +3529,7 @@ msgstr "No se pudo cargar el perfil" msgid "Could not mute chat" msgstr "No se pudo silenciar el chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "No se pudo eliminar al miembro." @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crear" @@ -3624,26 +3591,26 @@ msgstr "Crear una lista a partir de este paquete de inicio" msgid "Create a QR code for a starter pack" msgstr "Crear un código QR para paquete de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crea un paquete de inicio" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Crear un paquete de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea un paquete de inicio para mí" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Crear una cuenta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crea una cuenta" @@ -3666,15 +3633,15 @@ msgstr "Crea una cuenta" msgid "Create an account without using this starter pack" msgstr "Crear una cuenta sin usar este paquete de inicio" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crea otro" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Crear chat de grupo" @@ -3743,7 +3710,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Chat actual" @@ -3770,8 +3737,8 @@ msgstr "Sustancias peligrosas o abuso de drogas" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Oscuro" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Oscuro" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema oscuro" @@ -3814,7 +3781,7 @@ msgstr "Rechazar esta sugerencia de idioma" msgid "Deepfake adult content" msgstr "Contenido para adultos deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Por Defecto" @@ -3894,7 +3861,7 @@ msgstr "Eliminar mi cuenta" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Borrar la publicación" @@ -3988,7 +3955,7 @@ msgstr "Ajustar quién puede interactuar con esta publicación" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Tenue" @@ -4002,7 +3969,7 @@ msgstr "Deshabilitar" msgid "Disable 2FA" msgstr "Desactivar la autenticación de doble factor" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Desactivar subtítulos" @@ -4045,9 +4012,9 @@ msgstr "Deshabilitado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "¿Descartar cambios?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "¿Descartar borrador?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "¿Descartar publicación?" @@ -4079,6 +4046,10 @@ msgstr "Desconectar Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconectados" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconecta msgid "Discover new custom feeds" msgstr "Descubre nuevos feeds personalizados" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Descubrir nuevos feeds" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descubrir nuevos feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Descartar" @@ -4103,19 +4070,19 @@ msgstr "Descartar" msgid "Dismiss banner" msgstr "Descartar banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Descartar error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Descartar la guía de introducción" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Descartar intereses" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Descartar banner de evento en directo" @@ -4142,7 +4109,7 @@ msgstr "Mostrar insignias de texto alternativo más grandes" msgid "Display name" msgstr "Nombre para mostrar" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Olvídate de los trolls y el clickbait. Encuentra personas y conversaciones reales que te importan." @@ -4205,8 +4172,8 @@ msgstr "¡No te preocupes! Todos los mensajes y configuraciones existentes está #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "¡No te preocupes! Todos los mensajes y configuraciones existentes está msgid "Done" msgstr "Listo" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Toca dos veces o presiona durante un instante el mensaje para añadir una reacción" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Doble toque para cerrar el diálogo" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Pulsa dos veces para indicar que te gusta" @@ -4328,6 +4295,7 @@ msgstr "Trastornos alimentarios" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Editar la imagen" msgid "Edit interaction settings" msgstr "Editar ajustes de interacción" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Modificar los intereses" @@ -4397,7 +4365,7 @@ msgstr "Editar el estado del directo" msgid "Edit moderation list" msgstr "Editar lista de moderación" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar mis feeds" @@ -4406,6 +4374,11 @@ msgstr "Editar mis feeds" msgid "Edit name" msgstr "Editar nombre" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar las personas" @@ -4444,7 +4417,7 @@ msgstr "Editar lista de usuarios" msgid "Edit who can reply" msgstr "Editar quién puede responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edita tu paquete de inicio" @@ -4500,8 +4473,8 @@ msgstr "Insertar código HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incrustar la publicación" @@ -4509,7 +4482,7 @@ msgstr "Incrustar la publicación" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta esta publicación en tu sitio web. Simplemente copia el siguiente fragmento y pégalo en el código HTML de tu sitio web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reproductor de video incrustado" @@ -4533,7 +4506,7 @@ msgstr "Mostrar contenido para adultos" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Activar subtítulos" @@ -4550,12 +4523,13 @@ msgstr "Activar medios externos" msgid "Enable media players for" msgstr "Reproducir multimedia de" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activa las notificaciones de una cuenta visitando su perfil y pulsando el <0>icono de campana <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Activar notificaciones push" @@ -4581,7 +4555,7 @@ msgstr "Activar los videos populares en el feed Discover" msgid "Enabled" msgstr "Activado" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin del feed" @@ -4608,7 +4582,7 @@ msgstr "Ingresa una palabra o etiqueta" msgid "Enter code" msgstr "Ingresa el código" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Entrar en la pantalla completa" @@ -4650,11 +4624,11 @@ msgstr "Ingresa tu nombre de usuario y contraseña" msgid "Enters full screen" msgstr "Entra en pantalla completa" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Ocio" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4658,7 @@ msgstr "Se produjo un error al guardar el archivo" msgid "Error receiving captcha response." msgstr "Error al recibir la respuesta del captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Error: {error}" @@ -4696,8 +4670,8 @@ msgstr "Todos pueden responder" msgid "Everybody can reply to this post." msgstr "Todos pueden responder a esta publicación." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Todos" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Todo lo demás" @@ -4738,7 +4712,7 @@ msgstr "Excluir a los usuarios que sigues" msgid "Excludes users you follow" msgstr "Excluye a los usuarios que sigues" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Salir de pantalla completa" @@ -4755,11 +4729,11 @@ msgstr "Expandir lista de usuarios" msgid "Expand or collapse the full post you are replying to" msgstr "Expandir o colapsar la publicación completa a la que estás respondiendo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expandir el texto de la publicación" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Amplía o reduce el texto de la publicación" @@ -4802,15 +4776,15 @@ msgstr "Medios explícitos o potencialmente perturbadores." msgid "Explicit sexual images." msgstr "Imágenes sexuales explícitas." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Explora la aplicación" @@ -4844,7 +4818,7 @@ msgstr "Medios externos" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Es posible que medios externos permitan que otros sitios recopilen datos sobre ti y tu dispositivo. No se envía o solicita información hasta que presionas el botón de reproducir." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferencias sobre Medios Externos" @@ -4886,7 +4860,7 @@ msgstr "Error al cambiar nombre de usuario. Por favor vuelve a intentarlo." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Error al copiar el enlace" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Error al salir del chat de grupo" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Error al cargar las conversaciones" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Error al cargar los feeds" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Error al cargar las preferencias de feeds" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Error al cargar la configuración de notificaciones." @@ -5012,14 +4987,14 @@ msgstr "Error al cargar las preferencias." msgid "Failed to load profiles" msgstr "Error al cargar los perfiles" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Error al cargar los feeds sugeridos" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Error al cargar las sugerencias de seguimiento" @@ -5027,12 +5002,12 @@ msgstr "Error al cargar las sugerencias de seguimiento" msgid "Failed to lock group chat" msgstr "Error al bloquear el chat de grupo" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Error al retirar tu solicitud. Inténtalo de nuevo." msgid "Failed to resolve location. Please try again." msgstr "Error al determinar la ubicación. Inténtalo de nuevo." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Error al guardar el borrador" @@ -5191,7 +5166,7 @@ msgstr "Cuenta falsa o bot" msgid "False information about elections" msgstr "Información falsa sobre elecciones" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "Creador del feed" msgid "Feed identifier" msgstr "Identificador del feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menú de feed" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Comentarios enviados al operador del feed" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "¡Feeds actualizados!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Creemos que estos feeds te gustarán." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Buscar actualizaciones" @@ -5273,11 +5244,11 @@ msgstr "Buscar actualizaciones" msgid "File saved successfully!" msgstr "¡Archivo guardado exitosamente!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrar quién puede recibir notificaciones de tu actividad" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtra de quién recibes notificaciones" @@ -5352,8 +5323,8 @@ msgstr "Buscar cuentas para seguir" msgid "Find and invite friends" msgstr "Encontrar e invitar amigos" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Buscar contactos" @@ -5387,7 +5358,7 @@ msgstr "Encuentra a tus amigos" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Encuentra a tus amigos en Bluesky verificando tu número de teléfono y haciendo coincidir con tus contactos. Protegemos tu información y tú controlas lo que sucede a continuación. <0>Más información" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Encuentra a tu gente" @@ -5429,7 +5400,7 @@ msgstr "Enfocar el campo de búsqueda" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Seguir {0}" msgid "Follow {displayName}" msgstr "Seguir a {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Seguir {handle}" @@ -5453,11 +5424,11 @@ msgstr "Seguir {handle}" msgid "Follow 10 accounts" msgstr "Sigue 10 cuentas" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Sigue a 10 personas para comenzar" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Sigue 7 cuentas" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Los seguidores pueden unirse" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que conoces" @@ -5544,7 +5515,7 @@ msgstr "Seguidores que conoces" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Siguiendo {0}" msgid "Following {displayName}" msgstr "Siguiendo a {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Siguiendo {handle}" @@ -5578,21 +5549,21 @@ msgstr "Siguiendo {handle}" msgid "Following feed preferences" msgstr "Preferencias del feed de cuentas que sigues" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencias del feed de cuentas que sigues" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Te sigue" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fuente" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tamaño de fuente" @@ -5612,13 +5583,13 @@ msgstr "Por razones de seguridad, necesitamos enviar un código de confirmación msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por razones de seguridad, no podrás volver a verla. Si pierdes esta contraseña de app, tendrás que generar una nueva." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Para una mejor experiencia, recomendamos que uses la fuente del tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Para ti" @@ -5628,7 +5599,7 @@ msgstr "Para ti" msgid "Forever" msgstr "Para siempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Olvídate del ruido" @@ -5647,11 +5618,13 @@ msgstr "¿Olvidaste tu contraseña?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "¡Cuatro burbujas de mensajes representando un chat de grupo. Primer mensaje: \"Did you hear the news? Bluesky has group chats now!\" [¿Escuchaste la noticia? ¡Bluesky ahora tiene chats de grupo!]. Segundo mensaje: \"omg, no way\" [omg, no me digas]. Tercer mensaje: \"Wow, 50 people in one chat!\" [¡Wow, 50 personas en un chat!]. Cuarto mensaje: \"You can send invite links too!\" [¡También puedes enviar enlaces de invitación!]!" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Libera tu feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5647,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Genera un paquete de inicio" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Obtiene ayuda" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Recibe notificaciones cuando se unan a tu paquete de inicio, sobre verificación y otras actividades." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Recibe una notificación cuando alguien te siga." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Recibe una notificación cuando a alguien le guste tu publicación." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Recibe notificaciones cuando alguien le dé me gusta a tus republicaciones." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Recibe una notificación cuando alguien te mencione." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Recibe una notificación cuando alguien cite tus publicaciones." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Recibe una notificación cuando alguien responda a tus mensajes." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Recibe una notificación cuando alguien responda a tus publicaciones." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Recibe notificaciones cuando alguien republique tus republicaciones." @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Recibe notificaciones cuando haya actividad en publicaciones a las que estás suscrito." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Recibe una notificación de nuevas publicaciones" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Recibe una notificación cuando {name} publique" @@ -5799,11 +5772,11 @@ msgstr "Comenzar" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF subido" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Ponle cara a tu perfil" @@ -5813,20 +5786,20 @@ msgstr "Glorificación de la violencia" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Empezar el directo para" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nombre del chat de grupo actualizado" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Ajustes del chat de grupo" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Los chats de grupo solo pueden tener un máximo de {0, plural, one {# persona} other {# personas}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "El grupo está bloqueado" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nombre del grupo" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "El nombre del grupo es demasiado largo. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {Longitud máxima: # carácter.} other {Longitud máxima: # caracteres.}}" @@ -6077,7 +6051,7 @@ msgstr "Actividades dañinas o de alto riesgo" msgid "Harming or endangering minors" msgstr "Daño o puesta en peligro de menores" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Etiqueta" @@ -6098,7 +6072,7 @@ msgstr "¿Tienes un código? <0>Haz clic aquí." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "¿Tenemos mal tu ubicación? <0>Toca aquí para actualizar tu ubicación con GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "¿Tienes problemas?" @@ -6114,7 +6088,7 @@ msgstr "Retenido por Bluesky durante 7 días para prevenir abusos y luego elimin msgid "Help" msgstr "Ayuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Sube una foto o crea un avatar para que la gente sepa que no eres un bot." @@ -6140,7 +6114,7 @@ msgstr "¡Hola!" msgid "Hidden" msgstr "Oculto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Oculto por tus ajustes de moderación." @@ -6148,9 +6122,9 @@ msgstr "Oculto por tus ajustes de moderación." msgid "Hidden list" msgstr "Lista oculta" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Lista oculta" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Ocultar" @@ -6198,7 +6172,7 @@ msgstr "Ocultar respuesta para todos" msgid "Hide reply for me" msgstr "Ocultar la respuesta para mí" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ocultar esta tarjeta" @@ -6218,12 +6192,12 @@ msgstr "¿Ocultar esta respuesta?" msgid "Hide translation" msgstr "Ocultar traducción" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Ocultar las tendencias" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "¿Quieres ocultar las tendencias?" @@ -6240,7 +6214,7 @@ msgstr "Ocultar lista de usuarios" msgid "Hide verification badges" msgstr "Ocultar las marcas de verificación" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Oculta el contenido" @@ -6293,8 +6267,8 @@ msgstr "Hmmmm, no conseguimos cargar ese servicio de moderación." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "¡Espera! Estamos dando acceso a videos gradualmente, y aún estás en la lista de espera. ¡Vuelve a consultar pronto!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Destacando" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Cómo funciona:" @@ -6409,6 +6379,7 @@ msgstr "Si actualizas tu dirección de correo electrónico, la verificación de msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si deseas cambiar tu contraseña, te enviaremos un código para verificar que esta es tu cuenta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Si quieres restringir quién puede recibir notificaciones de la actividad de tu cuenta, puedes cambiarlo en <0>Configuración → Privacidad y Seguridad." @@ -6548,7 +6519,7 @@ msgstr "En la aplicación, push, todos" msgid "In-app, push, people you follow" msgstr "En la aplicación, push, personas a las que sigues" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Bandeja de entrada vacía" @@ -6560,6 +6531,7 @@ msgstr "La bandeja de entrada está vacía" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "¡Solo estás tú por ahora! Agrega más personas a tu paquete de inicio buscando arriba." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Tarea ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "Únete a la conversación" msgid "Journalism" msgstr "Periodismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Seguir editando" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Sitio web de KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etiquetado por {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etiquetado por el autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquetas" @@ -6852,7 +6824,7 @@ msgstr "Etiquetas añadidas" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Las etiquetas son anotaciones sobre usuarios y contenido. Pueden usarse para ocultar, advertir y categorizar la red." @@ -6864,7 +6836,7 @@ msgstr "Etiquetas en tu cuenta" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Ajustes de Idiomas" @@ -6874,7 +6846,7 @@ msgstr "Ajustes de Idiomas" msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Más grande" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Última iniciación justo ahora" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Último" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Más información" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Aprender más" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "Más información sobre la importación de contactos" msgid "Learn more about self hosting your PDS." msgstr "Más información sobre cómo autoalojar tu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Más información sobre la moderación aplicada a este contenido" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Más información de estos cambios y como puedes compartir tus pensamientos con nosotros leyendo nuestra publicación de blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Más información sobre esta advertencia" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Más información en tus <0>ajustes de cuenta." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Aprender más." @@ -6993,8 +6965,8 @@ msgstr "Dejar" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Salir de Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Salir de este chat lo bloqueará permanentemente y no podrás volver a unirte." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Saliste del chat de grupo." @@ -7042,7 +7014,7 @@ msgstr "Saliste del chat de grupo." msgid "left to go." msgstr "quedan." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Déjame escoger" @@ -7057,7 +7029,7 @@ msgstr "¡Vamos!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Claro" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Me gusta" @@ -7076,7 +7048,7 @@ msgstr "Me gusta" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# me gusta} other {# me gusta}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Dale \"me gusta\" a 10 publicaciones" @@ -7085,7 +7057,7 @@ msgstr "Dale \"me gusta\" a 10 publicaciones" msgid "Like 10 posts to train the Discover feed" msgstr "Dale \"me gusta\" a 10 publicaciones para entrenar el feed de Descubrimiento." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Dar \"me gusta\" a este feed" @@ -7093,8 +7065,8 @@ msgstr "Dar \"me gusta\" a este feed" msgid "Like this labeler" msgstr "Dar \"me gusta\" a este etiquetador" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Le gusta a" @@ -7111,27 +7083,45 @@ msgstr "Le gusta a" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Le gusta a {0, plural, one {# usuario} other {# usuarios}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Le gusta a {likeCount, plural, one {# usuario} other {# usuarios}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Me gusta" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Me gusta de tus republicaciones" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "\"Me gusta\" en esta publicación" @@ -7144,7 +7134,7 @@ msgstr "Lineal" msgid "Link copied to clipboard" msgstr "Enlace copiado al portapapeles" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "La lista ya no está silenciada" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "EN VIVO" msgid "Live event happening now: {0}" msgstr "Evento en directo ahora mismo: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Evento en directo oculto" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Evento en directo visible" @@ -7279,12 +7269,12 @@ msgstr "La función en vivo está en beta" msgid "Live link" msgstr "Enlace en vivo" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Cargar más" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Cargar más feeds sugeridos" @@ -7292,8 +7282,8 @@ msgstr "Cargar más feeds sugeridos" msgid "Load new notifications" msgstr "Cargar notificaciones nuevas" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Bloquear este chat de grupo" msgid "Locked" msgstr "Bloqueado" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Registro" @@ -7387,7 +7377,7 @@ msgstr "GIF de amor" msgid "Make adjustments to email settings for your account" msgstr "Ajusta la configuración de correo electrónico de tu cuenta" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Haz uno para mi" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "Marcar todo como leído" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marcar como leído" msgid "Marked all as read" msgstr "Se ha marcado todo como leído" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "En otro momento" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7469,7 @@ msgstr "Contenido multimedia almacenado en otro dispositivo" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medios que pueden ser perturbadores o inapropiados para algunos públicos." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Miembro eliminado del chat de grupo." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "usuarios mencionados" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menciones" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mensaje eliminado" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Error al enviar el mensaje." @@ -7563,15 +7557,15 @@ msgstr "El mensaje es demasiado largo ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH}) msgid "Message options" msgstr "Opciones del mensaje" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensajes" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Los mensajes de esta persona están ocultos mientras te tenga bloqueado." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Los mensajes de esta persona están ocultos mientras la tengas bloqueada." @@ -7592,7 +7586,7 @@ msgstr "Engañoso" msgid "Missing media" msgstr "Contenido multimedia faltante" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderación" @@ -7636,7 +7630,7 @@ msgstr "Lista de moderación actualizada" msgid "Moderation lists" msgstr "Listas de moderación" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de moderación" @@ -7645,7 +7639,7 @@ msgstr "Listas de moderación" msgid "moderation settings" msgstr "ajustes de moderación" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Estados de moderación" @@ -7786,7 +7780,7 @@ msgstr "Silenciado" msgid "Muted accounts" msgstr "Cuentas silenciadas" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuentas silenciadas" @@ -7867,7 +7861,6 @@ msgstr "¿Necesitas denunciar una violación de derechos de autor, una solicitud msgid "Nevermind, create a handle for me" msgstr "Da igual, crea un nombre de usuario por mí" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nuevo" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {nueva publicación} other {nuevas publicacione #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nuevo chat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Nueva característica" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nuevos seguidores" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nuevo chat de grupo" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nuevo chat de grupo" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nuevo chat de grupo con:" @@ -7966,13 +7959,13 @@ msgstr "Nueva lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Nueva contraseña" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nueva publicación" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Respuestas nuevas primero" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Noticias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Imagen nueva" msgid "Night" msgstr "Noche" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Sin anuncios, sin rastreo invasivo, sin trampas de interacción. Bluesky respeta tu tiempo y atención." @@ -8098,7 +8091,7 @@ msgstr "Sin caducidad establecida" msgid "No feeds found. Try searching for something else." msgstr "No se encontraron feeds. Intenta buscar algo más." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Aún no hay seguidores" @@ -8118,7 +8111,7 @@ msgstr "Sin imagen" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Todavía no tiene \"me gusta\"" @@ -8135,7 +8128,7 @@ msgstr "Sin listas" msgid "No longer following {0}" msgstr "Ya no sigues a {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Aún no hay contenido multimedia" @@ -8143,7 +8136,7 @@ msgstr "Aún no hay contenido multimedia" msgid "No messages yet" msgstr "No hay mensajes aún" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Basta de algoritmos llenos de basura para el doomscrolling. Encuentra feeds que funcionen para ti, no contra ti." @@ -8184,12 +8177,12 @@ msgstr "Nadie puede enviar mensajes" msgid "No posts here" msgstr "No hay publicaciones aquí" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Aún no hay publicaciones" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "No hay citas aún" @@ -8202,7 +8195,7 @@ msgstr "Aún no hay GIF recientes. Elige uno para verlo aquí." msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Aún no hay respuestas" @@ -8217,13 +8210,13 @@ msgstr "Sin resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sin resultados" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "No hay resultados para \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "No se encontraron resultados" msgid "No results found for \"{query}\"" msgstr "No se han encontrado resultados para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "No se encontraron resultados para \"<0>{query}\"." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "No hay resultados." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Aún no hay paquetes de inicio" @@ -8265,7 +8258,7 @@ msgstr "No gracias" msgid "No translation received from your device." msgstr "No se recibió ninguna traducción de tu dispositivo." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Aún no hay publicaciones con video" @@ -8278,7 +8271,7 @@ msgstr "Nadie" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nadie ha dado \"me gusta\" a esto todavía. ¡Quizás deberías ser el primero!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nadie ha citado esto todavía. ¡Quizás deberías ser el primero!" @@ -8298,6 +8291,10 @@ msgstr "Imágenes íntimas no consentidas" msgid "Non-sexual Nudity" msgstr "Desnudez no sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "No disponible en esta plataforma." msgid "Not followed by anyone you’re following" msgstr "No lo sigue nadie a quien estés siguiendo" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "No encontrado" @@ -8333,7 +8330,7 @@ msgstr "Nota sobre compartir" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky es una red abierta y pública. Esta configuración solo limita la visibilidad de tu contenido en la aplicación y el sitio web de Bluesky. Es posible que otras aplicaciones y sitios web no la respeten y muestren tu contenido a los usuarios que hayan cerrado sesión." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: Esta publicación solo es visible para los usuarios que han iniciado sesión." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Aún no se ha guardado nada" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ajustes de notificaciones" @@ -8353,11 +8350,12 @@ msgstr "Ajustes de notificaciones" msgid "Notification sounds" msgstr "Sonidos de notificación" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "¡Qué problema!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "Aceptar" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Está bien" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Reiniciar introducción" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Uno de los destinatarios seleccionados no permite chats de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Uno de los destinatarios seleccionados te ha bloqueado y no se le puede enviar mensajes." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Falta el texto alternativo en uno o más GIF." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Falta el texto alternativo en una o varias imágenes." @@ -8454,11 +8454,11 @@ msgstr "Uno o más de los archivos seleccionados no son compatibles." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Uno o más de los archivos seleccionados son demasiado grandes. El tamaño máximo es de {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Una o más publicaciones son demasiado largas para guardarse como borrador. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {El número máximo de caracteres es #.} other {El número máximo de caracteres es #.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Falta el texto alternativo en uno o más videos." @@ -8471,7 +8471,7 @@ msgstr "Solo {0} puede responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Solo se añadieron {0} de {1} {2, plural, one {imagen} other {imágenes}}; el límite es {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Solo se admiten archivos WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ups, este perfil no existe. Prueba escaneando otro." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "¡Uy!" @@ -8544,7 +8544,7 @@ msgstr "¡Uy!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Abrir el creador de avatares" @@ -8570,21 +8570,22 @@ msgstr "Abrir las opciones de conversación" msgid "Open draft" msgstr "Abrir borrador" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Abrir el menú lateral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Abrir el selector de emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Abrir la pantalla de información del feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Abrir el menú de opciones del feed" @@ -8627,7 +8628,7 @@ msgstr "Abrir página de depuración de moderación" msgid "Open muted words and tags settings" msgstr "Abrir ajustes de palabras y etiquetas silenciadas" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Abrir" @@ -8699,7 +8700,7 @@ msgstr "Abre detalles adicionales para una entrada de depuración." msgid "Opens alt text dialog" msgstr "Abre el diálogo de texto alternativo" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Abrir cámara del dispositivo" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Abre el flujo para crear una nueva cuenta de Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Abre el flujo para iniciar sesión en tu cuenta existente de Bluesky" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "¡Contraseña actualizada!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausar" @@ -8925,12 +8926,12 @@ msgstr "Pausar" msgid "Pause GIF" msgstr "Pausar GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personas" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Las personas que sigue {ownerName} pueden solicitar unirse" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personas siguiendo a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Personas a las que sigo" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Las personas que sigo pueden solicitar unirse" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Personas a las que sigues" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Imágenes destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Anclar el feed" @@ -9034,7 +9035,7 @@ msgstr "Anclar el feed" msgid "Pin to home" msgstr "Anclar en inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Anclar en inicio" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Anclado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} anclados en inicio" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Tus feeds anclados" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reproducir" @@ -9076,8 +9077,8 @@ msgstr "Reproducir {0}" msgid "Play GIF" msgstr "Reproducir GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproducir video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Escribe tu mensaje abajo:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Política" @@ -9269,7 +9270,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Publicar" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Publica una foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Publica un video" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar Todo" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Publicar de todas formas" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Publicación bloqueada" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Publicación por {0}" @@ -9340,7 +9341,7 @@ msgstr "Publicación ocultada por ti" msgid "Post interaction settings" msgstr "Ajustes de interacción de la publicación" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Ajustes de interacción de la publicación" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Publicación fijado" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Publicación guardada" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Publicación desfijado" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicaciones" @@ -9398,6 +9396,10 @@ msgstr "Los posts pueden ser silenciados según su texto, sus etiquetas o ambos. msgid "Posts hidden" msgstr "Publicaciones ocultas" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Enlace potencialmente engañoso" @@ -9449,20 +9451,21 @@ msgstr "Privacidad" msgid "Privacy and security" msgstr "Privacidad y seguridad" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidad y Seguridad" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Ajustes de privacidad y seguridad" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Política de privacidad" msgid "Privacy violation of a minor" msgstr "Violación de la privacidad de un menor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Procesando GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Procesando video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listas públicas y compartibles para bloquear o silenciar a usuarios en grupo." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicar la publicación" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicar las publicaciones" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicar las respuestas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicar la respuesta" @@ -9599,12 +9602,12 @@ msgstr "Citas deshabilitadas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citas de esta publicación" @@ -9647,7 +9650,7 @@ msgstr "Reactivar tu cuenta" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Leer {0, plural, one {# respuesta más} other {# respuestas más}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Leer la publicación del blog (en inglés)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Ver menos" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Ver más" @@ -9687,11 +9690,11 @@ msgstr "Leer las Políticas de Privacidad de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leer los Términos y Condiciones de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Conversaciones reales." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Personas reales." @@ -9721,10 +9724,6 @@ msgstr "Búsquedas recientes" msgid "Recently used" msgstr "Usados recientemente" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomendaciones" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconectar" @@ -9748,7 +9747,7 @@ msgstr "Rechazar la solicitud de chat" msgid "Reject join request" msgstr "Rechazar solicitud para unirse" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recargar conversaciones" @@ -9766,7 +9765,7 @@ msgstr "Recargar conversaciones" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Eliminar" @@ -9792,8 +9791,8 @@ msgstr "¿Eliminar a {displayName}?" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Eliminar la cuenta" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "Eliminar del chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Eliminar de mis feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "¿Eliminar del acceso rápido?" @@ -9862,7 +9861,7 @@ msgstr "¿Eliminar del acceso rápido?" msgid "Remove from saved feeds" msgstr "Eliminar de los feeds guardados" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Eliminar de publicaciones guardadas" @@ -9880,8 +9879,8 @@ msgstr "Eliminar la imagen" msgid "Remove live status" msgstr "Eliminar el estado \"En directo\"" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Eliminado de la lista" msgid "Removed from saved feeds" msgstr "Eliminado de mis feeds guardados" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Eliminada de publicaciones guardadas" @@ -9952,7 +9951,7 @@ msgstr "Eliminada de publicaciones guardadas" msgid "Removed from starter pack" msgstr "Eliminado del paquete de inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Te respondió" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respuestas" @@ -10037,7 +10037,7 @@ msgstr "Las respuestas en esta publicación estan deshabilitadas." msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Denunciar conversación" msgid "Report dialog" msgstr "Ventana de denuncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Denunciar feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republicado por ti" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Republicaciones" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicaciones de esta publicación" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Republicaciones de tus republicaciones" @@ -10253,7 +10253,7 @@ msgstr "Solicitado" msgid "Requests" msgstr "Solicitudes" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Reintenta la última acción, que presentó un error" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Volver a la página de inicio" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Volver a la página anterior" @@ -10446,27 +10446,27 @@ msgstr "Guardar fecha de nacimiento" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Guardar cambios" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "¿Guardar cambios?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Guardar borrador" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "¿Guardar borrador?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Guardar código QR" msgid "Save these options for next time" msgstr "Guardar estas opciones para la próxima vez" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Guardar en mis feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feeds guardados" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Publicaciones guardadas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardado en tus feeds" @@ -10520,8 +10520,8 @@ msgstr "Guardado en tus feeds" msgid "Say hello!" msgstr "¡Di hola!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Saluda a alguien" @@ -10535,7 +10535,7 @@ msgstr "Escanear" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Escanear código QR" @@ -10543,15 +10543,15 @@ msgstr "Escanear código QR" msgid "Science" msgstr "Ciencia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Desplazar a la izquierda" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Desplazar a la derecha" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Desplazar hacia arriba" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Buscar en las publicaciones de @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Buscar feeds que quieras sugerir a otros." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Buscar más cuentas" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Buscar más feeds" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Buscar GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "La búsqueda no está disponible actualmente cuando has cerrado sesión" @@ -10709,6 +10709,7 @@ msgstr "Ver empleos en Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Ver más" @@ -10716,8 +10717,12 @@ msgstr "Ver más" msgid "See more suggested profiles" msgstr "Ver más perfiles sugeridos" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Ver cuentas sugeridas" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Control deslizante. Usa las flechas del teclado para avanzar o retroceder y la barra espaciadora para reproducir/pausa" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Seleccionar la categoría \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Elegir {0}" msgid "Select {langName}" msgstr "Elegir {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecciona un color" @@ -10764,11 +10769,11 @@ msgstr "Seleccionar cuenta" msgid "Select an app language" msgstr "Elegir un idioma para la aplicación" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecciona un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecciona un emoji" @@ -10780,12 +10785,13 @@ msgstr "Elegir una opción" msgid "Select app language" msgstr "Elegir el idioma de la aplicación" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Seleccionar archivo de subtítulos (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Seleccionar chat \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Seleccionar GIF" msgid "Select GIF \"{0}\"" msgstr "Seleccionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Seleccionar miembros del chat de grupo" @@ -10864,7 +10870,7 @@ msgstr "Elegir el idioma principal" msgid "Select telephone code" msgstr "Seleccionar código telefónico" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Seleccionar el emoji {emojiName} como tu avatar" @@ -10945,7 +10951,8 @@ msgstr "Enviar mensaje" msgid "Send post to {name}" msgstr "Enviar la publicación a {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Enviar publicación a..." @@ -10963,12 +10970,12 @@ msgstr "Envía el mensaje desde tu teléfono" msgid "Send verification email" msgstr "Enviar correo de verificación" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Enviar por mensaje directo" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Establece el correo electrónico para restablecer la contraseña" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ajustes" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Configuración para la actividad de otros" @@ -11036,49 +11043,49 @@ msgstr "Configuración para la actividad de otros" msgid "Settings for allowing others to be notified of your posts" msgstr "Permitir que los demás reciban notificaciones de tus publicaciones" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Configuración para notificaciones de me gusta" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Configuración para notificaciones de menciones" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Configuración para notificaciones de nuevos seguidores" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Configuración para notificaciones de todo lo demás" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Configuración para notificaciones de me gusta de tus republicaciones" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Configuración para notificaciones de republicaciones de tus republicaciones" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Configuración para notificaciones de citas" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Configuración para notificaciones de respuestas" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Configuración para notificaciones de republicaciones" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Compartir de todas maneras" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Compartir el DID del autor" @@ -11127,7 +11134,7 @@ msgstr "Compartir el DID del autor" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Ventana para compartir enlace" msgid "Share my profile" msgstr "Compartir mi perfil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Compartir el URI at:// de la publicación" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Compartir código QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Compartir este feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Compartir este paquete de inicio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparte este paquete de inicio y ayuda a las personas a unirse a tu comunidad en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Comparte tus contactos para encontrar amigos" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Probador de Preferencias Compartidas" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Ver" msgid "Show alt text" msgstr "Ver texto alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Ver de todas maneras" @@ -11274,9 +11281,9 @@ msgstr "Mostrar lista de todas maneras" msgid "Show lists of users to select from" msgstr "Mostrar listas de usuarios para seleccionar" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Ver más" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Mostrar advertencia y filtrar de los feeds" msgid "Show when you’re live" msgstr "Mostrar cuando estés en directo" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Muestra información sobre la fecha de creación de esta publicación" @@ -11341,15 +11348,15 @@ msgstr "Muestra información sobre la fecha de creación de esta publicación" msgid "Shows other accounts you can switch to" msgstr "Muestra otras cuentas a las que puedes cambiar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Muestra el contenido" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Muestra el contenido" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "¿Cerrar sesión?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Se requiere iniciar sesión" @@ -11469,7 +11476,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "Omitir la compartición de contactos y continuar a la aplicación" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "¿Omitir publicaciones vacías?" @@ -11487,7 +11494,7 @@ msgstr "Saltar al siguiente paso" msgid "slide" msgstr "diapositiva" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Más pequeño" @@ -11499,7 +11506,7 @@ msgstr "Posponer el recordatorio" msgid "So many thoughts, you should post one" msgstr "Tantas ideas, deberías publicar una" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Red social que tú controlas." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Alguien salió del grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Alguien reaccionó con {0}" @@ -11554,7 +11561,7 @@ msgstr "Alguien reaccionó con {0}" msgid "Someone reacted {0} to {target}" msgstr "Alguien reaccionó con {0} a {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Se produjo un error. Por favor, inténtalo de nuevo" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Algo salió mal. Por favor, inténtalo de nuevo en un momento." msgid "Something went wrong. Please try again." msgstr "Se produjo un error. Inténtalo de nuevo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "¿Algo va mal? Avísanos." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam u otro comportamiento no auténtico o engaño" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Deportes" @@ -11668,7 +11675,7 @@ msgstr "Inicia una conversación y aparecerá aquí." msgid "Start a group chat" msgstr "Iniciar un chat de grupo" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Iniciar un nuevo chat" @@ -11682,17 +11689,17 @@ msgstr "Empieza a añadir personas" msgid "Start adding people!" msgstr "¡Empieza a añadir personas!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Iniciar chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquete de inicio" @@ -11715,12 +11722,16 @@ msgstr "Paquete de inicio creado por ti" msgid "Starter pack is invalid" msgstr "El paquete de inicio es inválido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Paquetes de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Los paquetes de inicio te permiten compartir fácilmente tus feeds y personas favoritas con tus amigos." @@ -11728,7 +11739,7 @@ msgstr "Los paquetes de inicio te permiten compartir fácilmente tus feeds y per msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Los paquetes de inicio te permiten compartir tus feeds y personas favoritas con tus amigos." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Los paquetes de inicio te permiten compartir tus feeds y personas favoritas con tus amigos." @@ -11742,7 +11753,7 @@ msgstr "Página de estado" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Almacenamiento limpio, necesitas reiniciar la aplicación ahora." msgid "Stored as part of a secure code for matching with others" msgstr "Almacenado como parte de un código seguro para hacer coincidencias con otros" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Libro de cuentos" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Suscríbete a {publicationTitle} en {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Suscríbete a @{0} para usar estas etiquetas:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Verificado correctamente" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Sugerido" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Cuentas sugeridas" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Atardecer" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "¡La compatibilidad con esta función en tu país aún no está habilitada! Vuelve a comprobarlo más tarde." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Las cuentas suspendidas no pueden participar en un chat de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Las cuentas suspendidas no pueden participar en el chat." @@ -11921,8 +11934,8 @@ msgstr "Cambiar a {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Lleva la conversación a un lugar privado." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Toca abajo para permitir que Bluesky acceda a tu ubicación GPS. Luego usaremos esos datos para determinar con mayor precisión el contenido y las funciones disponibles en tu región." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Toca para más detalles" @@ -11976,7 +11989,7 @@ msgstr "Toca para cerrar el menú contextual" msgid "Tap to copy this invite link" msgstr "Toca para copiar este enlace de invitación" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toca para descartar" @@ -12003,7 +12016,7 @@ msgstr "Toca para eliminar tu reacción {0}" msgid "Tap to request access to join this group chat" msgstr "Toca para solicitar acceso para unirte a este chat de grupo" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Toca para reintentar" @@ -12016,7 +12029,7 @@ msgstr "Toca para mostrar las reacciones {0}" msgid "Tap to show all reactions" msgstr "Toca para mostrar todas las reacciones" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Toca para ver las reacciones" @@ -12032,7 +12045,7 @@ msgstr "¡Tarea completada: 10 cuentas seguidas!" msgid "Task complete - 10 likes!" msgstr "¡Tarea completada: 10 me gusta!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Enseña a nuestro algoritmo lo que te gusta" @@ -12060,7 +12073,7 @@ msgstr "Condiciones" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "No se pudo encontrar ese paquete de inicio." msgid "That username is already taken" msgstr "Este nombre de usuario ya está en uso" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "¡Eso es todo, amigos!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "¡Se acabó!" @@ -12216,7 +12229,7 @@ msgstr "Parece que hay problemas en el servidor. Vuelve a intentarlo en breve." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "El paquete de inicio que intentas ver es inválido. Puedes eliminar este paquete de inicio en su lugar." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Asunto del menú contextual" @@ -12238,7 +12251,7 @@ msgstr "El código de verificación que has proporcionado es inválido. Por favo msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "El proveedor de verificación no pudo enviar un código a tu número de teléfono. Verifica tu número e inténtalo de nuevo." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Hubo un problema al cargar los GIF. Verifica tu conexión e inténtalo d msgid "There was a problem with your internet connection, please try again" msgstr "Hubo un problema con tu conexión a internet, inténtalo de nuevo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Hubo un problema con tu conexión a internet, inténtalo de nuevo" msgid "There was an issue contacting the server" msgstr "Hubo un problema al contactar con el servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Hubo un problema al contactar con el servidor. Por favor, verifica tu conexión a internet e inténtalo de nuevo." @@ -12283,8 +12296,8 @@ msgstr "Hubo un problema al contactar con el servidor. Por favor, verifica tu co msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hubo un problema al obtener las notificaciones. Toca aquí para intentar de nuevo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hubo un problema al obtener las publicaciones. Toca aquí para intentar de nuevo." @@ -12309,7 +12322,7 @@ msgstr "Hubo un problema al obtener tu información de servicio" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Hubo un problema al eliminar este feed. Por favor, verifica tu conexión a internet e inténtalo de nuevo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Estos ajustes solo aplican para el feed Following." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Es el propietario de este chat" @@ -12392,7 +12405,7 @@ msgstr "Es el propietario de este chat" msgid "They won’t be able to rejoin unless you invite them again." msgstr "No podrá volver a unirse a menos que lo invites de nuevo." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Esta {screenDescription} ha sido marcada:" @@ -12408,7 +12421,7 @@ msgstr "Esta cuenta ha sido marcada como automatizada por su propietario." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Esta cuenta tiene uno o más intentos de verificación, pero no actualmente no está verificada." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta cuenta ha solicitado que los usuarios inicien sesión para ver su perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "¡Este feed está vacío! Es posible que necesites seguir a más usuarios o ajustar la configuración de idioma." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Este feed está vacío." @@ -12554,7 +12567,7 @@ msgstr "Este grupo está bloqueado por una acción de moderación sobre el propi msgid "This handle is reserved. Please try a different one." msgstr "Este nombre de usuario está reservado. Por favor intenta con uno diferente." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Esta imagen no se pudo usar. Prueba con un formato diferente, como .jpg o .png." @@ -12596,7 +12609,7 @@ msgstr "Esta etiqueta fue aplicada por ti." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este etiquetador no ha declarado qué etiquetas publica y puede que no esté activo." @@ -12621,13 +12634,13 @@ msgstr "Esta lista está vacía" msgid "This message is hidden" msgstr "Este mensaje está oculto" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Este mensaje está oculto porque este usuario te tiene bloqueado." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Este mensaje está oculto porque tienes bloqueado a este usuario." @@ -12641,7 +12654,7 @@ msgstr "Esta persona te tiene bloqueado" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicación declara haber sido creada en <0>{0}, pero fue vista por primera vez por Bluesky en <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Esta publicación declara haber sido creada en <0>{0}, pero fue vist msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicación tiene un tipo de ajustes de respuesta desconocido. Es posible que tu app no esté actualizada." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Esta publicación solo es visible para los usuarios que han iniciado sesión." @@ -12661,7 +12674,7 @@ msgstr "Esta publicación fue eliminada por su autor" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicación será ocultada de los feeds y hilos. Esto no se puede deshacer." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "El autor de esta publicación ha deshabilitado las citas." @@ -12698,11 +12711,12 @@ msgstr "Esto solo debería llevar unos minutos." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Este usuario no tiene un nombre para mostrar, por lo tanto no puede ser verificado." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Este usuario no tiene seguidores." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Este usuario te ha bloqueado y no se le puede enviar mensajes." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Este usuario te ha bloqueado. No puedes ver su contenido." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Este usuario ha desactivado el chat y no se le puede enviar mensajes." @@ -12733,11 +12748,11 @@ msgstr "Este usuario está incluido en la lista <0>{0} que has silenciado." msgid "This user is new here. Press for more info about when they joined." msgstr "Este usuario es nuevo aquí. Presiona para más información sobre cuándo se unió." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Este usuario no sigue a nadie." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Este video no se puede reproducir en tu dispositivo. Es posible que a tu navegador o sistema le falten los códecs de video necesarios (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Esto eliminará de forma irreversible tu cuenta de Bluesky <0>{currentHandle} y todos los datos asociados. Ten en cuenta que esto afectará a cualquier otro servicio de <1>AT Protocol que uses con esta cuenta." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Esto eliminará @{0} de la lista de acceso rápido." @@ -12786,7 +12801,7 @@ msgstr "Preferencias de hilos" msgid "Threaded" msgstr "En hilos" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferencias de hilos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Demasiados contactos: has excedido el número de contactos que puedes importar para encontrar a tus amigos" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Destacados" @@ -12858,7 +12873,7 @@ msgstr "Destacados" msgid "Top replies first" msgstr "Respuestas destacadas primero" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tema" @@ -12893,7 +12908,9 @@ msgstr "La traducción al mismo idioma no está disponible en tu dispositivo." msgid "Tree view" msgstr "Vista en árbol" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendencias" @@ -12902,7 +12919,7 @@ msgstr "Tendencias" msgid "Trending GIFs" msgstr "GIF en tendencia" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opciones de tendencias" @@ -12918,11 +12935,11 @@ msgstr "Trolleo" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La confianza se construye a partir de las relaciones, las comunidades y los contextos compartidos. Por ello, también nombramos a <0>verificadores de confianza: organizaciones que pueden verificar cuentas directamente." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "No se pueden obtener las solicitudes para unirse." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "No se pudo encontrar a un destinatario seleccionado." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "No se pudo encontrar al destinatario seleccionado." @@ -13024,12 +13043,12 @@ msgstr "No disponible" msgid "Unavailable feed information" msgstr "Información del feed no disponible" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "¿Desbloquear la cuenta?" msgid "Unblock list" msgstr "Desbloquear la lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Dejar de seguir a {0}" msgid "Unfollow account" msgstr "Dejar de seguir esta cuenta" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Deja de seguir al usuario" @@ -13132,7 +13151,7 @@ msgstr "Contenido para adultos sin etiquetar" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Contenido para adultos sin etiquetar, abusivo o no consentido" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "No me gusta" @@ -13192,7 +13211,7 @@ msgstr "Dejar de silenciar este chat de grupo" msgid "Unmute thread" msgstr "Dejar de silenciar el hilo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Activar el sonido del video" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Desfijar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desfijar feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Desfijar de inicio" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Desfijar lista de moderación" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} desfijado de inicio" @@ -13258,11 +13277,11 @@ msgstr "Darse de baja de este etiquetador" msgid "Unsubscribed from list" msgstr "Dado de baja de la lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Contenido del portapapeles no admitido" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Tipo de video no aceptado: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Actualizar la visibilidad de la respuesta falló" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Sube una foto en su lugar" @@ -13355,7 +13374,7 @@ msgstr "Subir desde tus archivos" msgid "Upload from Library" msgstr "Subir desde la biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Subiendo GIF..." @@ -13369,7 +13388,7 @@ msgstr "Subiendo imágenes..." msgid "Uploading link thumbnail..." msgstr "Subiendo miniatura del enlace..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Subiendo video..." @@ -13408,7 +13427,7 @@ msgstr "Utilízala para iniciar sesión en la otra app junto a tu nombre de usua msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Usa la dirección de correo electrónico de tu cuenta, u otra dirección real que controles, en caso de que KWS o Bluesky necesiten contactarte." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "usuario" @@ -13510,7 +13529,7 @@ msgstr "Error al verificar, inténtalo de nuevo." msgid "Verification settings" msgstr "Ajustes de verificación" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Ajustes de verificación" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "El video no se pudo procesar" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Feed de videos" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Video de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video de {0}. Toca para reproducir o pausar el video" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videojuegos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video en pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Reproduciendo video" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video no encontrado." @@ -13653,7 +13672,7 @@ msgstr "Video no encontrado." msgid "Video settings" msgstr "Configuración del video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video subido" @@ -13662,17 +13681,17 @@ msgstr "Video subido" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Los videos deben durar menos de 3 minutos." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Ver" @@ -13691,9 +13710,9 @@ msgstr "Ver el avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ver el perfil de {0}" @@ -13724,13 +13743,13 @@ msgstr "Ver la entrada del blog para más detalles" msgid "View debug entry" msgstr "Ver entrada de depuración" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ver detalles" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ver hilo completo" @@ -13761,7 +13780,7 @@ msgstr "Ver más" msgid "View more trending videos" msgstr "Ver más videos populares" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Ver publicación" @@ -13798,11 +13817,11 @@ msgstr "Ver el enlace de invitación de este chat de grupo" msgid "View the labeling service provided by @{0}" msgstr "Ver el servicio de etiquetado proporcionado por @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Ver las verificaciones de este usuario" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Ver usuarios a los que les gusta este feed" @@ -13831,7 +13850,7 @@ msgstr "Ver tus listas de moderación" msgid "View your muted accounts" msgstr "Ver tus cuentas silenciadas" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Ver tus verificaciones" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Estamos teniendo problemas de red, inténtalo de nuevo" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Estamos teniendo problemas de red, inténtalo de nuevo" @@ -14043,7 +14062,7 @@ msgstr "Estamos teniendo problemas de red, inténtalo de nuevo" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Hemos incluido una nueva capa de verificación en Bluesky: una marca fácil de ver." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "¡Es nuestro placer tenerte aquí!" @@ -14064,13 +14083,15 @@ msgstr "Lo sentimos, pero no pudimos resolver esta lista. Si esto persiste, por msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Lo sentimos, pero no pudimos cargar tus palabras silenciadas en este momento. Por favor, inténtalo de nuevo." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lo sentimos, no se pudo completar tu búsqueda. Inténtalo de nuevo en unos minutos." @@ -14078,7 +14099,7 @@ msgstr "Lo sentimos, no se pudo completar tu búsqueda. Inténtalo de nuevo en u msgid "We're sorry, you cannot access this screen at this time." msgstr "Lo sentimos, no puedes acceder a esta pantalla en este momento." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "¡Lo sentimos! Se ha eliminado la publicación a la que estás respondiendo." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "¿Qué hay de nuevo?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "¿Quién puede verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "¡Vaya!" @@ -14220,21 +14241,21 @@ msgstr "¿Quieres bloquear a este usuario o salir de esta conversación?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "¿Quieres guardarlo como borrador antes de ver tus borradores?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "¿Quieres guardarlo como borrador para editarlo más tarde?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Escribe una publicación" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Escribe una publicación" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escribe una respuesta" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Estás accediendo a Bluesky desde una región que legalmente nos exige verificar tu edad antes de permitirte el acceso a la aplicación." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Tienes bloqueado a {0}" @@ -14342,7 +14363,7 @@ msgstr "Ya no estás emitiendo en directo" msgid "You are not allowed to upload videos." msgstr "No tienes permiso para subir videos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Aún no sigues a nadie" @@ -14362,7 +14383,7 @@ msgstr "Estás verificado. Perderás tu estado de verificación si cambias tu no msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Estás verificado. Perderás tu estado de verificación si cambias tu nombre de usuario. <0>Más información (en inglés)." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Puedes modificar tus intereses desde los ajustes de \"Contenido y medios\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Ahora puedes iniciar sesión con tu nueva contraseña." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Solo puedes añadir hasta {MAX_GALLERY_IMAGES, plural, one {# imagen} other {# imágenes}} por publicación" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Solo puedes guardar borradores de hasta 1000 caracteres." @@ -14439,9 +14460,9 @@ msgstr "Puedes leer el historial del chat, pero no enviar nuevos mensajes." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Puedes seleccionar hasta {MAX_GALLERY_IMAGES, plural, one {# imagen} other {# imágenes}} en total." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Puedes cambiar esta opción en Ajustes." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "No puedes añadir más de {EMOJI_REACTION_LIMIT, plural, one {# reacción de emoji} other {# reacciones de emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Aún no puedes crear un chat de grupo." @@ -14555,7 +14577,7 @@ msgstr "Has verificado tu dirección de correo electrónico correctamente. Puede msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Has alcanzado temporalmente el límite de carga de videos. Inténtalo de nuevo más tarde." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Tienes cambios sin guardar en este borrador, ¿quieres guardarlos?" @@ -14563,7 +14585,7 @@ msgstr "Tienes cambios sin guardar en este borrador, ¿quieres guardarlos?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Tienes cambios sin guardar. ¿Te gustaría guardarlos antes de ver tus borradores?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "¡Aún no has creado un paquete de inicio!" @@ -14614,7 +14636,7 @@ msgstr "No puedes añadir más de {STARTER_PACK_MAX_SIZE, plural, other {{STARTE msgid "You may only add up to 3 feeds" msgstr "Solo puedes añadir hasta 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Debes ser propietario del chat para eliminar a un miembro." @@ -14622,7 +14644,7 @@ msgstr "Debes ser propietario del chat para eliminar a un miembro." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Debes tener al menos 13 años para usar Bluesky. Lee nuestros <0>Términos del servicio para más información." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Debes seguir al menos a siete personas más para generar un paquete de inicio." @@ -14639,7 +14661,7 @@ msgstr "Necesitas permitir el acceso a tu biblioteca multimedia." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Necesitas verificar tu dirección de correo electrónico antes de activar la autenticación de doble factor por correo electrónico." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Eres el propietario de este chat" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Probablemente quieras reiniciar la aplicación ahora." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Reaccionaste con {0}" @@ -14667,15 +14689,15 @@ msgstr "Reaccionaste con {0} a {target}" msgid "You recently changed your birthdate" msgstr "Cambiaste tu fecha de nacimiento recientemente" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "No podrás volver a unirte a menos que te inviten." msgid "You: {message}" msgstr "Tú: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "¡Comenzarás a seguir a los usuarios y feeds sugeridos una vez que termines de crear tu cuenta!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "¡Comenzarás a seguir a los usuarios sugeridos cuando hayas terminado de crear tu cuenta!" @@ -14791,7 +14813,7 @@ msgstr "Has llegado al final del contenido activo." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "¡Has llegado al fin de tu feed! Encuentra más cuentas para seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Has alcanzado el número máximo de borradores" @@ -14799,7 +14821,7 @@ msgstr "Has alcanzado el número máximo de borradores" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Has alcanzado el número máximo de solicitudes permitidas. Inténtalo de nuevo más tarde." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Has alcanzado tu límite diario de carga de videos (demasiados bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has alcanzado tu límite diario de carga de videos (demasiados videos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Has visto todos los videos que había. ¿Qué te parece si hacemos una pausa?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Tu cuenta" @@ -14835,11 +14857,11 @@ msgstr "Se ha suspendido tu cuenta" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tu cuenta aún no tiene suficiente antigüedad para subir videos. Inténtalo de nuevo más tarde." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Tu cuenta es demasiado nueva" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Tu cuenta debe tener al menos 7 días de antigüedad para crear un nuevo chat de grupo." @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Se han actualizado tus intereses." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Tus intereses nos ayudan a encontrar aquello que te gusta." @@ -14967,11 +14989,11 @@ msgstr "¡Tu contraseña ha sido cambiada con éxito! Por favor, utiliza tu nuev msgid "Your password must be at least 8 characters long." msgstr "La contraseña debe tener al menos 8 caracteres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Tu publicación fue enviada" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Tus publicaciones fueron enviadas" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Tu idioma preferido" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Tu foto de perfil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Tu foto de perfil rodeada de círculos concéntricos con fotos de perfil de otros usuarios" @@ -14992,7 +15014,7 @@ msgstr "Tu foto de perfil rodeada de círculos concéntricos con fotos de 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 "Tu perfil, publicaciones, feeds y listas dejarán de ser visibles para otros usuarios de Bluesky. Puedes reactivar tu cuenta en cualquier momento iniciando sesión." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Tu respuesta fue enviada" @@ -15005,7 +15027,7 @@ msgstr "Se enviará tu denuncia a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Los intereses que selecciones nos ayudarán a ofrecerte contenido interesante para ti." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Tu hilo tiene publicaciones vacías que se omitirán. Las publicaciones restantes se publicarán como un hilo." diff --git a/src/locale/locales/eu/messages.po b/src/locale/locales/eu/messages.po index a4ceb78569..7b8ed01d78 100644 --- a/src/locale/locales/eu/messages.po +++ b/src/locale/locales/eu/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: eu\n" +"Language: eu_ES\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Basque\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" kategoria (aktiboa)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blokeatutako mezua ezkutatuta)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(kapsulatutako edukia dauka)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(ezabatutako mezua)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(txat gonbidapen-esteka baliogabea)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(zu sartu aurretik bidalitako mezua)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {ordu #} other {# ordu}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {etiketa # aplikatu zaio zure postari} other {# etiketa aplikatu zaizkio zure postari}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {etiketa # aplikatuta} other {# etiketa aplikatuta}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {gogoko #} other {# gogoko}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {kide #} other {# kide}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {sartzeko eskaera berri #} other {# sartzeko eskaera ber #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {pertsona #-ek} other {# pertsonek}} erreakzionatu du/dute – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Kontua)" @@ -251,36 +252,13 @@ msgstr "{0} txatera gehitu da" msgid "{0} and {1} added to chat" msgstr "{0} eta {1} txatera gehitu dira" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0}-k eta {1}-k gogoko dute hau" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0}-k eta {others, plural, one {beste {1}-k} other {beste {2}-k}} gogoko dute hau" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0}-k eta {othersLabel}-k gogoko dute hau" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} jarraitzen" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0}-k blokeatzen zaitu" @@ -324,14 +302,6 @@ msgstr "{0} alde egin du" msgid "{0} left the group" msgstr "{0}-k taldea utzi du" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0}-k gogoko du hau" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "50etik {0}" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} erreakzioantu du {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} eta {memberCount, plural, one {beste #} other {beste #}} txatera gehitu dira" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}-k, {1}-k eta {others, plural, one {beste {2}-k} other {beste {3}-k}} gogoko dute hau" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}-k,{1}-k eta {othersLabel}-k gogoko dute hau" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName}-k egiaztatu zaitu" msgid "{following} following" msgstr "{following} jarraitzen" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} ezin da gehitu" @@ -698,7 +660,7 @@ msgstr "{handle} ezin da gehitu" msgid "{handle} can't be messaged" msgstr "{handle} ezin zaio mezua bidali" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} ezin zaio mezua bidali" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {Elementu bat} other {# elementu}} iraku msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {Kontaktu # aurkitua} other {# kontaktu aurkituta}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {beste {0}} other {beste {1}}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} Bluesky-n sartu zen orain dela {timeAgoString}" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} Bluesky-n sartu zen abio multzo bat erabiliz orain dela {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {karaktere # geratzen da} other {# karaktere geratzen dira}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName}-k erantzun du" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName}-k {originalName}-ri erantzun dio" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName}-k erantzun dizu" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {eskaera #} other {# eskaera}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ eskaera" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "Duela {type} ordu" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} egiaztatzaile fidagarria da" @@ -842,13 +795,13 @@ msgstr "{userName}-ren egiaztapenak" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {jarraitzen} other {jarraitzen}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {aipamen} other {aipamen}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {berpost} other {berpost}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {gordeta} other {gordeta}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {gustoko} other {gustoko}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2>-k gehitu zaitu" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Hasi saioa<1> edo <2>sortu kontu bat<3> <4>Bluesky-n gertatzen den guztia, berriak, kirolak, politika eta abar bilatzeko." @@ -971,7 +924,7 @@ msgstr "30 egun" msgid "7 days" msgstr "7 egun" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Bluesky-n aurki ditzakezun feed ezagunen bilduma bat, besteak beste, News, Booksky, Game Dev, Blacksky eta Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Sareko errore bat gertatu da. Mesedez, egiaztatu zure Interneteko konexi #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Kode berri bat bidali da" msgid "A new form of verification" msgstr "Egiaztatzeko modu berri bat" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Zu sartu aurretik bidalitako mezu bati emandako erantzuna" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Post-konpositorearen pantaila-argazkia, ondoan \"Zirriborroak\" dioen botoi berri batekin, ortzadarraren koloreko su artifizial efektuarekin. Behean, konpositoreko testuak dio: \"Aupa, entzun al dituzu berriak? Bluesky-k zirriborroak ditu orain!!!\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Hautatutako hartzailea ez du bidaltzaileak jarraitzen." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Sarbidea eskatu da! Taldearen jabeak zure eskaera berrikusiko du." msgid "Accessibility" msgstr "Erabilerraztasun" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Erabilerraztasun Doikuntzak" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Kontua Mututua Zerrendagatik" msgid "Account options" msgstr "Kontuaren aukerak" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Kontua ezabatua sarrera azkarretik" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Egiaztapen-marka urdin ondulatua <0><1/> duten kontuek beste batzuk egiazta ditzakete. Egiaztatzaile fidagarri hauek Blueskyk hautatzen ditu." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Beste batzuen jarduera" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Jarduera jakinarazpenak" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Gehitu aukerazko testua (hautazkoa)" msgid "Add another account" msgstr "Gehitu beste kontu bat" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Gehitu beste post bat" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Gehitu beste post bat harira" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Gehitu beste bilaketa-iragazki bat" @@ -1253,7 +1213,7 @@ msgstr "Gehitu automatizazio etiketa kontuan" msgid "Add emoji reaction" msgstr "Gehitu emoji erreakzioa" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Gehitu iragazkia" @@ -1338,7 +1298,7 @@ msgstr "Gehitu feed hau zure feedetara" msgid "Add to lists" msgstr "Gehitu zerrendetara" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Gehitu gordetako postetara" @@ -1400,7 +1360,7 @@ msgstr "Heldua" msgid "Adult content" msgstr "Eduki heldua" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Mezu zuzenetara sarrera baimentzen da" msgid "Already have a code?" msgstr "Dagoeneko kode bat daukazu?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Dagoeneko kontu bat daukazu?" @@ -1614,7 +1574,7 @@ msgstr "Mezu elektroniko bat bidali da {0} helbidera. Behean sar dezakezun berre msgid "An error has occurred" msgstr "Errore bat gertatu da" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Errore bat gertatu da" @@ -1631,7 +1591,7 @@ msgstr "Errore bat gertatu da iradokitako kontuak eskuratzean." msgid "An error occurred while fetching the feed." msgstr "Errore bat gertatu da feeda eskuratzerakoan." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Errore bat gertatu da zure abio multzoa sortzean. Berriro saiatu nahi duzu?" @@ -1640,11 +1600,11 @@ msgstr "Errore bat gertatu da zure abio multzoa sortzean. Berriro saiatu nahi du msgid "An error occurred while hiding suggestion. {0}" msgstr "Errore bat gertatu da iradokizuna ezkutatzean. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Errore bat gertatu da bideoa kargatzean. Mesedez, saiatu berriro geroago." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Errore bat gertatu da bideoa kargatzean. Mesedez, saiatu berriro." @@ -1684,7 +1644,7 @@ msgstr "Errore bat gertatu da. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Kontaktu-liburu batetik Bluesky aplikaziora doazen erabiltzaile-abatarrak erakusten dituen ilustrazioa" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Hainbat Bluesky-ren posten ilustrazioa, berposta, atsegin dut eta iruzkin ikonoekin batera" @@ -1705,17 +1665,15 @@ msgstr "Gonbidapen-esteka batek txat taldean sartzeko aukera ematen dio jendeari msgid "An issue not included in these options" msgstr "Aukera hauetan sartzen ez den arazo bat" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Arazo bat gertatu da txat taldea sortzean. Mesedez, saiatu berriro." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Arazo bat gertatu da txata hastean. Mesedez, saiatu berriro." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Arazo bat gertatu da txata irekitzen saiatzean" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Arazo bat gertatu da txat taldea abiaraztean. Mesedez, saiatu berriro." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Edozein data" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Edonor" @@ -1802,7 +1760,7 @@ msgstr "Niri jarraitzen didan edonor" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Daukan edonork ezingo du gehiago sartu edo sartzeko eskaera egin. Beti sor dezakezu berri bat." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Aplikazioaren pasahitzaren izenek 4 karaktere izan behar dituzte gutxien msgid "App passwords" msgstr "Aplikazio pasahitzak" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Aplikazio Pasahitzak" @@ -1891,8 +1849,8 @@ msgstr "Apelatu erabaki hau" msgid "Appeal this label" msgstr "Apelatu etiketa hau" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Aplikatu Tira Eskaera" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0}-tik artxibatuta" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Gordetako posta" @@ -1980,7 +1938,7 @@ msgstr "Ziur zaude hau zure feedetatik ezabatu nahi duzula?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Ziur zaude {0}-n sartzeko eskaera bertan behera utzi nahi duzula?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Ziur zaude post hau baztertu nahi duzula?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Kontu automatizatua" @@ -2033,7 +1991,7 @@ msgstr "Automatikoa" msgid "Automation label" msgstr "Automatizazio etiketa" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatizazio Etiketa" @@ -2050,12 +2008,16 @@ msgstr "Bideo eta GIF erreprodukzio automatikoa" msgid "Available" msgstr "Eskuragarri" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Post bat sortu edo erantzun aurretik, zure posta elektronikoa egiaztatu behar duzu." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Abio multzo bat sortu aurretik, zure posta elektronikoa egiaztatu behar duzu." @@ -2135,10 +2097,10 @@ msgstr "{name}-ren posten jakinarazpenak jaso aurretik, zure helbide elektroniko #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2122,28 @@ msgstr "Bete beheko eremuak adinaren berme prozesua hasteko." msgid "Beta Feature" msgstr "Beta Ezaugarria" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "Beta ezaugarriak" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Beta ezaugarriak gaituta" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Beta ezaugarriak ezegonkorrak izan daitezke. Aldaketa batzuek aplikazioa berriro kargatzea eska dezakete." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Beta ezaugarriak ezegonkorrak izan daitezke. Aldaketa batzuek aplikazioa berrabiaraztea eska dezakete." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "Jaiotze data" msgid "Birthday" msgstr "Urtebetetzea" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blokeatua" msgid "Blocked accounts" msgstr "Blokeatutako kontuak" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokeatutako Kontuak" @@ -2282,7 +2250,7 @@ msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zur 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 "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin. Ez duzu haien edukia ikusiko eta zurea ikustea galaraziko zaie." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokeatzeak ez dio etiketatzaile honi eragotziko etiketak zure kontuan aplikatzea." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky-k ezin du baieztatu erreklamatutako dataren benetakotasuna." @@ -2330,7 +2299,7 @@ msgstr "Bluesky sare ireki bat da, non zure hostatze-hornitzailea aukeratu dezak msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky sare ireki bat da, non zure hornitzailea aukeratu dezakezun. Berria bazara hemen, Bluesky Sozial aukerarekin jarraitzea gomendatzen dizugu." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky hobea da lagunekin!" @@ -2358,7 +2327,7 @@ msgstr "Bluesky Sozial Zerbitzu Baldintzak" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky-k zure kontaktuak datu kodetu gisa gordetzen ditu. Kontaktuak kentzeak datu horiek berehala ezabatuko ditu." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky-k zure sareko pertsonen artean gomendatutako kontu multzo bat aukeratuko du." @@ -2425,24 +2394,25 @@ msgstr "Nabigatu proposamen gehiagotatik Arakatu orrian" msgid "Browse other feeds" msgstr "Nabigatu beste feedetatik" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Nabigatu {displayName}-ri buruzko postak" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Nabigatu {displayName}-rekin etiketatutako postak" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Nabigatu {displayName} abio multzoa" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Nabigatu {0} gaia" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Nabigatu {displayName} gaia" @@ -2461,8 +2431,8 @@ msgstr "Hasierako denbora-lerrora itzultzeko botoia" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "{0}-gatik" @@ -2473,9 +2443,9 @@ msgstr "@{0}-gatik" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "<0>{0}-gatik" @@ -2504,11 +2474,11 @@ msgstr "Kontua sortzean <0>Zerbitzu Baldintzak eta <1>Pribatutasun Politika< msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Kontua sortzean <0>Zerbitzu Baldintzak onartzen dituzu." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Zugatik" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2504,7 @@ msgstr "Kamerarako sarbidea behar da" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Kamerarako sarbidea behar da" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Utzi berriro aktibatzea eta amaitu saioa" msgid "Cancel reply" msgstr "Utzi erantzuna" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Utzi bilaketa" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Abio multzoan egindako aldaketak ez dira zerrendan islatuko sortu ondoren. Zerrenda kopia independentea izango da." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Txata mutututa" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Txata ez da aurkitu." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Txat aukerak" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Txataren jabeek ezin dute txat talde bat utzi." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Txataren hartzailea ez du bidaltzaileak jarraitzen." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Txateatzeko eskaeren sarrera-ontzia" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Txateatzeko eskaerak" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Txataren ezarpenak" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Txata desmutututa" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Txatak" @@ -2810,7 +2781,7 @@ msgstr "Egiaztatu <0>{currentEmail} baieztapen kodea duen mezua hartu eta sa #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Itzuli geroago!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "Aukeratu domeinua egiaztatzeko metodoa" msgid "Choose Feeds" msgstr "Aukeratu Feedak" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Aukeratu niretzat" @@ -2854,7 +2825,7 @@ msgstr "Aukeratu Jendea" msgid "Choose post languages" msgstr "Aukeratu posten hizkuntzak" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Aukeratu kolore hau zure abatar gisa" @@ -2879,7 +2850,7 @@ msgstr "Aukeratu zure denbora-lerroa! Komunitateak sortutako feedek maite duzun msgid "Choose your password" msgstr "Aukeratu zure pasahitza" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Aukeratu zure erabiltzaile-izena" @@ -2966,7 +2937,7 @@ msgstr "Egin klik hemen txat talde honetarako gonbidapen-esteka ikusteko" msgid "Click to open tag menu for {0}" msgstr "Egin klik {0} etiketa-menua irekitzeko" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko" @@ -3003,7 +2974,7 @@ msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko" msgid "Close" msgstr "Itxi" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Itxi elkarrizketa-koadro aktiboa" @@ -3047,7 +3018,7 @@ msgstr "Itxi bannerra" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Itxi irudi ikuslea" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Itxi menua" @@ -3090,7 +3061,7 @@ msgstr "Itxi sarrera eskaeren bannerra" msgid "Close this dialog" msgstr "Itxi elkarrizketa-koadro hau" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Itxi ongietorri modala" @@ -3098,7 +3069,7 @@ msgstr "Itxi ongietorri modala" msgid "Closes password update alert" msgstr "Pasahitzak eguneratzeko alerta ixten du" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Post-konpositorea ixten du eta post-zirriborroa baztertzen du" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Kolorea" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Kolore modua" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Komikiak" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Komunitate-gidalerroak" @@ -3141,7 +3112,7 @@ msgstr "Komunitate-gidalerroak" msgid "Complete onboarding and start using your account" msgstr "Osatu sartzea eta hasi zure kontua erabiltzen" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Osatu erronka" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Idatzi post berria" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak" @@ -3160,11 +3131,11 @@ msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak" msgid "Compose reply" msgstr "Idatzi erantzuna" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIFa konprimitzen..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Bideoa konprimitzen..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Jarri harremanetan gure laguntza-taldearekin" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Jarri laguntzarekin harremanetan" @@ -3253,7 +3224,7 @@ msgstr "Edukiak eta Media" msgid "Content and media" msgstr "Edukiak eta media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Edukiak eta Media" @@ -3265,10 +3236,6 @@ msgstr "Edukia Blokeatuta" msgid "Content filters" msgstr "Eduki-iragazkiak" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Gure ustez gogoko izan dezakezun sareko edukia." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Edukien hizkuntzak" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Autolesioak sustatzen edo irudikatzen dituen edukia" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Edukien Abisua" msgid "Content warnings" msgstr "Edukien abisuak" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Testuinguru-menuaren atzeko planoa, egin klik menua ixteko." @@ -3302,7 +3269,7 @@ msgstr "Testuinguru-menuaren atzeko planoa, egin klik menua ixteko." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Jarraitu haria..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Jarraitu taldearen izenera" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Ez da elkarrizketa aurkitu." msgid "Copied build version to clipboard" msgstr "Konpilazio bertsioa arbelean kopiatu da" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Esteka arbelean kopiatua" @@ -3376,7 +3343,7 @@ msgstr "Esteka arbelean kopiatua" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Kopiatu Aplikazioaren Pasahitza" msgid "Copy at:// URI" msgstr "Kopiatu at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Kopiatu egilearen DID" @@ -3449,10 +3416,10 @@ msgstr "Kopiatu Esteka" msgid "Copy link to list" msgstr "Kopiatu esteka zerrendara" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopiatu esteka postera" @@ -3470,8 +3437,8 @@ msgstr "Kopiatu abio multzoaren esteka" msgid "Copy message text" msgstr "Kopiatu mezuaren testua" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Kopiatu posta at:// URI" @@ -3490,7 +3457,7 @@ msgstr "Kopiatu TXT erregistroaren balioa" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Copyright Politika" @@ -3540,11 +3507,11 @@ msgstr "Ezin izan dira bat datozen guztiak jarraitu. {0}" msgid "Could not leave chat" msgstr "Ezin izan da txata utzi" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Ezin izan da txata utzi." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Ezin izan da feeda kargatu" @@ -3562,7 +3529,7 @@ msgstr "Ezin izan da profila kargatu" msgid "Could not mute chat" msgstr "Ezin izan da txata mututu" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Ezin izan da kidea kendu." @@ -3606,8 +3573,8 @@ msgstr "behiak txerriak" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Sortu" @@ -3624,26 +3591,26 @@ msgstr "Sortu zerrenda bat abio multzo honetatik" msgid "Create a QR code for a starter pack" msgstr "Sortu QR kodea abio multzo baterako" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Sortu abio multzo bat" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Sortu Abio Multzo bat" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Sortu niretzat abio multzo bat" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Sortu kontua" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Sortu kontu bat" @@ -3666,15 +3633,15 @@ msgstr "Sortu kontu bat" msgid "Create an account without using this starter pack" msgstr "Sortu kontu bat abio multzo hau erabili gabe" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Sortu abatar bat horren ordez" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Sortu beste bat" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Sortu txat taldea" @@ -3741,9 +3708,9 @@ msgstr "Kultura" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Uneko beta ezaugarriak" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Uneko txata" @@ -3770,8 +3737,8 @@ msgstr "Substantzia arriskutsuak edo drogen gehiegizko kontsumoa" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Iluna" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Iluna" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Gai iluna" @@ -3814,7 +3781,7 @@ msgstr "Uko egin hizkuntza-iradokizun honi" msgid "Deepfake adult content" msgstr "Helduentzako eduki faltsua" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Lehenetsia" @@ -3894,7 +3861,7 @@ msgstr "Ezabatu nire kontua" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Ezabatu posta" @@ -3988,7 +3955,7 @@ msgstr "Elkarrizketa: egokitu mezu honekin nork elkarreragin dezakeen" msgid "Dialog: Set search filters" msgstr "Elkarrizketa-koadroa: ezarri bilaketa-iragazkiak" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Lausotu" @@ -4002,7 +3969,7 @@ msgstr "Desgaitu" msgid "Disable 2FA" msgstr "Desgaitu 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Desgaitu azpitituluak" @@ -4045,9 +4012,9 @@ msgstr "Desgaituta" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Baztertu" msgid "Discard changes?" msgstr "Aldaketak baztertu?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Zirriborroa baztertu?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Posta baztertu?" @@ -4079,6 +4046,10 @@ msgstr "Deskonektatu Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Utzi aplikazioei saioa amaitutako erabiltzaileei nire kontua erakusten" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Aurkitu feedak" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Utzi aplikazioei saioa amaitutako erabiltzaileei nire kontua erakusten" msgid "Discover new custom feeds" msgstr "Aurkitu feed pertsonalizatu berriak" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Aurkitu feed berriak" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Aurkitu Feed Berriak" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Baztertu" @@ -4103,19 +4070,19 @@ msgstr "Baztertu" msgid "Dismiss banner" msgstr "Baztertu bannerra" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Baztertu errorea" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Baztertu hasteko gida" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Baztertu interesak" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Baztertu zuzeneko gertaeraren bannerra" @@ -4142,7 +4109,7 @@ msgstr "Erakutsi aukerazko testu bereizgarri handiagoak" msgid "Display name" msgstr "Bistaratzeko izena" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Utzi troll-ak eta klik egiteko amua. Aurkitu zuretzat garrantzitsuak diren benetako pertsonak eta elkarrizketak." @@ -4205,8 +4172,8 @@ msgstr "Ez kezkatu! Mezu eta ezarpen guztiak gordeta daude eta heldua zarela egi #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Ez kezkatu! Mezu eta ezarpen guztiak gordeta daude eta heldua zarela egi msgid "Done" msgstr "Eginda" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Kolpetxo bikoitza edo luze sakatu erreakzio bat gehitzeko" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Sakatu birritan elkarrizketa-koadroa ixteko" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Kolpetxo bikoitza gogoko emateko" @@ -4328,6 +4295,7 @@ msgstr "Elikadura-nahasmenduak" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Editatu irudia" msgid "Edit interaction settings" msgstr "Editatu interakzio-ezarpenak" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Editatu interesak" @@ -4397,7 +4365,7 @@ msgstr "Zuzeneko egoera editatu" msgid "Edit moderation list" msgstr "Editatu moderazio zerrenda" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editatu Nire Feedak" @@ -4406,6 +4374,11 @@ msgstr "Editatu Nire Feedak" msgid "Edit name" msgstr "Editatu izena" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Editatu {0}-ren jakinarazpenak" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editatu Jendea" @@ -4444,7 +4417,7 @@ msgstr "Editatu erabiltzaile zerrenda" msgid "Edit who can reply" msgstr "Editatu nork erantzun dezakeen" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Editatu zure abio multzoa" @@ -4500,8 +4473,8 @@ msgstr "Txertatu HTML kodea" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Txertatu posta" @@ -4509,7 +4482,7 @@ msgstr "Txertatu posta" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Txertatu post hau zure webgunean. Kopiatu hurrengo kode zatia eta itsatsi zure webguneko HTML kodean." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Bideo erreproduzitzailea txertatua" @@ -4531,9 +4504,9 @@ msgstr "Gaitu helduentzako edukia" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Gaitu beta ezaugarriak" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Gaitu azpitituluak" @@ -4550,12 +4523,13 @@ msgstr "Gaitu kanpoko multimedia" msgid "Enable media players for" msgstr "Gaitu multimedia-erreproduzitzaileak" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Kontu baten jakinarazpenak gaitzeko, bisitatu haren profila eta sakatu <0>kanpai ikonoa <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Gaitu push jakinarazpenak" @@ -4581,7 +4555,7 @@ msgstr "Gaitu joera bideoak zure Aurkitu feedean" msgid "Enabled" msgstr "Gaituta" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Feedaren amaiera" @@ -4608,7 +4582,7 @@ msgstr "Sartu hitz edo etiketa bat" msgid "Enter code" msgstr "Sartu kodea" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Sartu pantaila osoan" @@ -4650,11 +4624,11 @@ msgstr "Sartu zure erabiltzaile-izena eta pasahitza" msgid "Enters full screen" msgstr "Pantaila osora sartzen da" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Entretenimendua" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Errorea" @@ -4684,7 +4658,7 @@ msgstr "Errore bat gertatu da fitxategia gordetzean" msgid "Error receiving captcha response." msgstr "Errore bat gertatu da captcha erantzuna jasotzean." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Errorea: {error}" @@ -4696,8 +4670,8 @@ msgstr "Denek erantzun dezakete" msgid "Everybody can reply to this post." msgstr "Denek erantzun dezakete post honi." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Edonork" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Edonork" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Beste guztia" @@ -4738,7 +4712,7 @@ msgstr "Baztertu jarraitzen dituzun erabiltzaileak" msgid "Excludes users you follow" msgstr "Jarraitzen dituzun erabiltzaileak baztertzen ditu" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Irten pantaila osotik" @@ -4755,11 +4729,11 @@ msgstr "Zabaldu erabiltzaileen zerrenda" msgid "Expand or collapse the full post you are replying to" msgstr "Zabaldu edo tolestu erantzuten ari zaren post osoa" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Zabaldu postaren testua" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Postaren testua zabaldu edo tolesten du" @@ -4802,15 +4776,15 @@ msgstr "Esplizituak edo kezkagarriak izan daitezkeen multimediak." msgid "Explicit sexual images." msgstr "Sexu-irudi esplizituak." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Arakatu" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Arakatu aplikazioa" @@ -4844,7 +4818,7 @@ msgstr "Kanpoko Multimedia" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Kanpoko multimediak webguneek zuri eta zure gailuari buruzko informazioa biltzeko aukera izan dezake. Ez da informaziorik bidali edo eskatzen \"play\" botoia sakatu arte." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Kanpoko Multimedia Hobespenak" @@ -4886,7 +4860,7 @@ msgstr "Ezin izan da handle-a aldatu. Mesedez, saiatu berriro." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Ezin izan da esteka kopiatu" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Ezin izan da txat taldea utzi" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Ezin izan dira elkarrizketak kargatu" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Ezin izan dira feedak kargatu" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Ezin izan dira kargatu feeden hobespenak" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Ezin izan dira jakinarazpenen ezarpenak kargatu." @@ -5012,14 +4987,14 @@ msgstr "Ezin izan da hobespena kargatu." msgid "Failed to load profiles" msgstr "Ezin izan dira profilak kargatu" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Ezin izan dira iradokitako feedak kargatu" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Ezin izan dira kargatu iradokitako jarraipenak" @@ -5027,12 +5002,12 @@ msgstr "Ezin izan dira kargatu iradokitako jarraipenak" msgid "Failed to lock group chat" msgstr "Ezin izan da txat taldea itxi" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Ezin izan dira txat guztiak irakurri gisa markatu" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Ezin izan da zure eskaera bertan behera utzi. Mesedez, saiatu berriro." msgid "Failed to resolve location. Please try again." msgstr "Ezin izan da kokapena ebatzi. Mesedez, saiatu berriro." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Ezin izan da zirriborroa gorde" @@ -5191,7 +5166,7 @@ msgstr "Kontu faltsua edo bot-a" msgid "False information about elections" msgstr "Hauteskundeei buruzko informazio faltsua" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feeda" @@ -5212,7 +5187,7 @@ msgstr "Feed sortzailea" msgid "Feed identifier" msgstr "Feed identifikatzailea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feed menua" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Iritzia feedaren operadoreari bidali zaio" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feedak eguneratuta!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Gogoko izan ditzakezun feedak" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Eskuratu eguneraketa" @@ -5273,11 +5244,11 @@ msgstr "Eskuratu eguneraketa" msgid "File saved successfully!" msgstr "Fitxategia ongi gorde da!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Iragazi egilearen arabera" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Iragazi egilearen arabera (oraingoa: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Iragazi bilaketa hau {0} arabera" msgid "Filter who can opt to receive notifications for your activity" msgstr "Iragazi nork aukera dezakeen zure jardueraren jakinarazpenak jasotzea" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Iragazi noren jakinarazpenak jasotzen dituzun" @@ -5352,8 +5323,8 @@ msgstr "Aurkitu jarraitu beharreko kontuak" msgid "Find and invite friends" msgstr "Bilatu eta gonbidatu lagunak" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Bilatu Kontaktuak" @@ -5387,7 +5358,7 @@ msgstr "Bilatu zure lagunak" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Aurkitu zure lagunak Bluesky-n zure telefono zenbakia egiaztatuz eta zure kontaktuekin bat etorriz. Zure informazioa babesten dugu eta zuk kontrolatzen duzu zer gertatzen den ondoren. <0>Informazio gehiago" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Aurkitu zure jendea" @@ -5429,7 +5400,7 @@ msgstr "Fokua jarri bilaketa-eremuan" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Jarraitu {0}" msgid "Follow {displayName}" msgstr "Jarraitu {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Jarraitu {handle}" @@ -5453,11 +5424,11 @@ msgstr "Jarraitu {handle}" msgid "Follow 10 accounts" msgstr "Jarraitu 10 kontu" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Jarraitu 10 pertsona hasteko" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Jarraitu 7 kontu" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Jarraitzaileak sar daitezke" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Ezagutzen dituzun @{0}-ren jarraitzaileak" @@ -5544,7 +5515,7 @@ msgstr "Ezagutzen dituzun jarraitzaileak" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Jarraitzen {0}" msgid "Following {displayName}" msgstr "{displayName}-ri jarraitzen" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "{handle}-ri jarraitzen" @@ -5578,21 +5549,21 @@ msgstr "{handle}-ri jarraitzen" msgid "Following feed preferences" msgstr "Jarraitzen dituzun feeden hobespenak" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Jarraitzen dituzun Feeden Hobespenak" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Jarraitzen dizu" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Letra-tipoa" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Letra-tipo tamaina" @@ -5612,13 +5583,13 @@ msgstr "Segurtasun arrazoiengatik, baieztapen kode bat bidali beharko dugu zure msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Segurtasun arrazoiengatik, ezingo duzu hau berriro ikusi. Aplikazioaren pasahitza galtzen baduzu, berri bat sortu beharko duzu." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Esperientzia onena lortzeko, gaiaren letra-tipoa erabiltzea gomendatzen dizugu." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Zuretzat" @@ -5628,7 +5599,7 @@ msgstr "Zuretzat" msgid "Forever" msgstr "Betirako" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Ahaztu zarata" @@ -5647,11 +5618,13 @@ msgstr "Pasahitza ahaztu duzu?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Txat talde bat irudikatzen duten lau mezu-burbuila. Lehen mezua: \"Albistea entzun duzu? Blueskyk txat taldeak ditu orain!\" Bigarren mezua: \"ene, ezinezkoa\" Hirugarren mezua: \"Bai zoragarria, 50 lagun txat berean!\" Laugarren mezua: \"Gonbidapen-estekak ere bidal ditzakezu!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Askatu zure feeda" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Nondik" @@ -5674,7 +5647,7 @@ msgstr "<0/>-tik" msgid "From these people" msgstr "Pertsona hauenak" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Abio multzo bat sortu" @@ -5712,45 +5685,45 @@ msgstr "Germen DM berriro konektatuta" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features we’re testing." -msgstr "" +msgstr "Lortu probatzen ari garen ezaugarri esperimentaletarako sarbide goiztiarra." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Laguntza" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Jaso jakinarazpena abio-multzoan sartzean, egiaztatzean eta bestelako jardueretan." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Jaso jakinarazpenak jendeak jarraitzen zaituenean." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Jaso jakinarazpenak jendeari zure postak gustatzen zaizkionean." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Jaso jakinarazpenak jendeari zure berpostak gustatzen zaizkionean." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Jaso jakinarazpenak jendea aipatzen zaituenean." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Jaso jakinarazpenak jendeak zure postak aipatzen dituenean." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Jaso jakinarazpenak jendeak zure postak erantzuten dituenean." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Jaso jakinarazpenak jendeak zure postak berpostatzen dituenean." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Jaso jakinarazpenak jendeak zure berpostak berpostatzen dituenean." @@ -5762,15 +5735,15 @@ msgstr "Jaso jakinarazpenak jendeak mezu-eskaerak bidaltzen dizkizunean." msgid "Get notifications when people send you messages." msgstr "Jaso jakinarazpenak jendeak mezuak bidaltzen dizkizunean." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Jaso jakinarazpenak harpidetuta zauden postetan jarduera dagoenean." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Jaso jakinarazpenak post berriei buruz" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Jaso jakinarazpenak aukeratzen dituzun kontuetako post eta erantzunen inguruan." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Jaso {name}-ren post berrien jakinarazpenak" @@ -5799,11 +5772,11 @@ msgstr "Hasi" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIFa igo da" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Eman aurpegia zure profilari" @@ -5813,20 +5786,20 @@ msgstr "Indarkeriaren gorazarrea" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Zuzenera joan" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Joan {0}-ren profilera" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Txat taldearen izena eguneratu da" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Txat taldearen ezarpenak" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Txat taldetan gehienez {0, plural, other {# pertsona}} egon daitezke." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Taldea itxita dago" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Taldearen izena" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Talde izena luzeegia da. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Gehienezko karaktere kopurua # da.}}" @@ -6077,7 +6051,7 @@ msgstr "Jarduera kaltegarriak edo arrisku handikoak" msgid "Harming or endangering minors" msgstr "Adingabeei kalte egitea edo arriskuan jartzea" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Traola" @@ -6098,7 +6072,7 @@ msgstr "Baduzu koderik? <0>Egin klik hemen." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Zure kokapena gaizki ulertu al dugu? <0>Sakatu hemen zure kokapena GPSarekin eguneratzeko." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Arazoak dituzu?" @@ -6114,7 +6088,7 @@ msgstr "Bluesky-k 7 egunez gordetzen du gehiegikeria saihesteko, eta gero ezabat msgid "Help" msgstr "Laguntza" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Lagundu jendeari jakiten ez zarela bot bat argazki bat kargatuz edo abatar bat sortuz." @@ -6140,7 +6114,7 @@ msgstr "Kaixo!" msgid "Hidden" msgstr "Ezkutua" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Ezkutatuta zure moderazio doikuntzagatik." @@ -6148,9 +6122,9 @@ msgstr "Ezkutatuta zure moderazio doikuntzagatik." msgid "Hidden list" msgstr "Ezkutuko zerrenda" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Ezkutuko zerrenda" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Ezkutatu" @@ -6198,7 +6172,7 @@ msgstr "Ezkutatu erantzuna guztientzako" msgid "Hide reply for me" msgstr "Ezkutatu erantzuna niretzat" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ezkutatu txartel hau" @@ -6218,12 +6192,12 @@ msgstr "Ezkutatu erantzun hau?" msgid "Hide translation" msgstr "Ezkutatu itzulpena" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Ezkutatu joera-gaiak" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Joera-gaiak ezkutatu?" @@ -6240,7 +6214,7 @@ msgstr "Ezkutatu erabiltzaile zerrenda" msgid "Hide verification badges" msgstr "Ezkutatu egiaztapen-bereizgarriak" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Edukia ezkutatzen du" @@ -6293,8 +6267,8 @@ msgstr "Mmmmm, ezin izan dugu kargatu moderazio-zerbitzu hori." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Eutsi! Pixkanaka bideorako sarbidea ematen ari gara, eta ilaran zain zaude oraindik. Begiratu berriro laster!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Ostatze hornitzailea: {0}" msgid "Hosting provider: Bluesky" msgstr "Ostatze hornitzailea: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Pil-pilean" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Nola funtzionatzen du:" @@ -6409,6 +6379,7 @@ msgstr "Zure helbide elektronikoa eguneratzen baduzu, posta elektronikoaren 2FA msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Pasahitza aldatu nahi baduzu, kode bat bidaliko dizugu zure kontua dela egiaztatzeko." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Zure kontuaren jardueraren jakinarazpenak nork jaso ditzakeen mugatu nahi baduzu, hau alda dezakezu <0>Ezarpenak → Pribatutasuna eta Segurtasuna atalean." @@ -6548,7 +6519,7 @@ msgstr "Aplikazioan, push, guztiontzat" msgid "In-app, push, people you follow" msgstr "Aplikazioan, push, jarraitzen duzun jendea" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Sarrerako ontzia hutsik" @@ -6560,6 +6531,7 @@ msgstr "Sarrera-ontzia hutsik!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Oraintxe bakarrik zaude! Gehitu jende gehiago zure abio multzoari goiko bilaketan." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Lan ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "Bat egin elkarrizketan" msgid "Journalism" msgstr "Kazetaritza" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Jarraitu editatzen" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS webgunea" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0}-k etiketatua." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Egileak etiketatua." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiketak" @@ -6852,7 +6824,7 @@ msgstr "Etiketak gehitu dira" msgid "Labels applied to this post" msgstr "Post honi aplikatutako etiketak" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etiketak erabiltzaileei eta edukiei buruzko oharrak dira. Ezkutatzeko, abisatzeko eta sarea sailkatzeko erabil daitezke." @@ -6864,7 +6836,7 @@ msgstr "Etiketak zure kontuan" msgid "Language" msgstr "Hizkuntza" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Hizkuntza Ezarpenak" @@ -6874,7 +6846,7 @@ msgstr "Hizkuntza Ezarpenak" msgid "Languages" msgstr "Hizkuntzak" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Handiagoa" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Azkenekoz orain hasi da" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Azkena" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Ikasi gehiago (ingelesez)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Gehiago Ikasi" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Lortu informazio gehiago <0>bilaketa aurreratua nola erabili jakiteko." @@ -6937,8 +6909,8 @@ msgstr "Lortu informazio gehiago kontaktuak inportatzeari buruz" msgid "Learn more about self hosting your PDS." msgstr "Gehiago ikasi zure PDS auto-hostatzeari buruz." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Gehiago ikasi eduki honi aplikatutako moderazioari buruz" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Aldaketa hauei buruz gehiago jakiteko eta zure iritziak gurekin nola partekatu jakiteko, gure blog-eko argitalpena irakurri." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Gehiago ikasi abisu honi buruz" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Informazio gehiago zure <0>kontuaren ezarpenetan." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Ikasi gehiago." @@ -6993,8 +6965,8 @@ msgstr "Utzi" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Bluesky uzten" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Txat hau uzteak betiko blokeatuko du eta ezingo zara berriro sartu." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Utzi txat taldea." @@ -7042,7 +7014,7 @@ msgstr "Utzi txat taldea." msgid "left to go." msgstr "joateko utzi." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Utzidazu aukeratzen" @@ -7057,7 +7029,7 @@ msgstr "Goazen!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Argia" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Argia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Gogoko" @@ -7076,7 +7048,7 @@ msgstr "Gogoko" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gogoko ({0, plural, one {gogoko #} other {# gogoko}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10 post gogoko egin" @@ -7085,7 +7057,7 @@ msgstr "10 post gogoko egin" msgid "Like 10 posts to train the Discover feed" msgstr "Aurkitu feeda trebatzeko 10 post gogoko egin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Feed hau gogoko dut" @@ -7093,8 +7065,8 @@ msgstr "Feed hau gogoko dut" msgid "Like this labeler" msgstr "Etiketatzaile hau gogoko dut" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Gogoko du" @@ -7111,27 +7083,45 @@ msgstr "Gogoko Du" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gogoko du {0, plural, one {# erabiltzaileak} other {# erabiltzaileek}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "{0}-k atsegin du" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "{0}-k eta {1}-k atsegin dute" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gogoko du {likeCount, plural, one {# erabiltzaileak} other {# erabiltzaileek}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Gogoko" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Zure berposten gustokoak" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Gogoko post honetan" @@ -7144,7 +7134,7 @@ msgstr "Lineala" msgid "Link copied to clipboard" msgstr "Esteka arbelean kopiatua" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Zerrenda" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Zerrenda desmutututa" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "ZUZENEAN" msgid "Live event happening now: {0}" msgstr "Zuzeneko gertaera orain gertatzen ari da: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Zuzeneko gertaera ezkutatua" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Zuzeneko gertaera ez ezkutatua" @@ -7279,12 +7269,12 @@ msgstr "Zuzeneko funtzioa betan dago" msgid "Live link" msgstr "Zuzeneko esteka" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Kargatu gehiago" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Kargatu iradokitako feed gehiago" @@ -7292,8 +7282,8 @@ msgstr "Kargatu iradokitako feed gehiago" msgid "Load new notifications" msgstr "Kargatu jakinarazpen berriak" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Itxi txat talde hau" msgid "Locked" msgstr "Itxita" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Erregistroa" @@ -7387,7 +7377,7 @@ msgstr "Maitasun GIFak" msgid "Make adjustments to email settings for your account" msgstr "Egin doikuntzak zure kontuko posta elektronikoaren ezarpenetan" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Egin bat niretzat" @@ -7418,15 +7408,15 @@ msgstr "Eskuz" msgid "Mark all as read" msgstr "Markatu denak irakurri gisa" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Markatu txat guztiak irakurri gisa" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Markatu irakurri gisa" msgid "Marked all as read" msgstr "Denak irakurri gisa markatuta" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Txat guztiak irakurri gisa markatuta" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Eskaera guztiak irakurri gisa markatuta" @@ -7456,8 +7446,12 @@ msgstr "Eskaera guztiak irakurri gisa markatuta" msgid "Maybe later" msgstr "Agian beranduago" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Ni" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7469,7 @@ msgstr "Beste gailu batean gordetako multimedia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Publiko batzuentzat kezkagarriak edo desegokiak izan daitezkeen multimediak." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Kidea txat taldetik kendu da." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "aipatutako erabiltzaileak" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Aipamenak" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mezua ezabatuta" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Ezin izan da bidali mezua." @@ -7563,15 +7557,15 @@ msgstr "Mezua luzeegia da ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Mezuaren aukerak" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mezuak" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Pertsona honen mezuak ezkutatuta daude blokeatzen zaituzten bitartean." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Pertsona honen mezuak ezkutatuta daude blokeatzen dituzun bitartean." @@ -7592,7 +7586,7 @@ msgstr "Engainagarria" msgid "Missing media" msgstr "Falta diren multimediak" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderazioa" @@ -7636,7 +7630,7 @@ msgstr "Moderazio-zerrenda eguneratuta" msgid "Moderation lists" msgstr "Moderazio zerrendak" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderazio Zerrendak" @@ -7645,7 +7639,7 @@ msgstr "Moderazio Zerrendak" msgid "moderation settings" msgstr "moderazio ezarpenak" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderazio-egoerak" @@ -7786,7 +7780,7 @@ msgstr "Mutututa" msgid "Muted accounts" msgstr "Mutututako kontuak" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Mutututako Kontuak" @@ -7867,7 +7861,6 @@ msgstr "Copyright urraketa, eskaera legal edo araudi-betetze arazo baten berri e msgid "Nevermind, create a handle for me" msgstr "Ez dio axola, sortu handle bat niretzako" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Berria" @@ -7893,11 +7886,11 @@ msgstr "{firstAuthorName}-ren {postsCount, plural, one {post berria} other {post #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Txat berria" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Ezaugarri Berria" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Jarraitzaile berriak" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Txat talde berria" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Txat talde berria" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Txat talde berria honekin:" @@ -7966,13 +7959,13 @@ msgstr "Zerrenda berria" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Mezu-eskaera berriak" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Mezu berriak" @@ -7982,12 +7975,12 @@ msgstr "Mezu berriak" msgid "New password" msgstr "Pasahitz berria" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Post berria" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Erantzun berrienak lehenengo" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Berriak" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Hurrengo irudia" msgid "Night" msgstr "Gaua" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Iragarkirik ez, jarraipen inbaditzailerik ez, parte-hartze tranparik ez. Bluesky-k zure denbora eta arreta errespetatzen ditu." @@ -8067,7 +8060,7 @@ msgstr "Oraindik ez dago aplikazioen pasahitzik" #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Momentuz ez dago beta ezaugarririk." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8091,7 @@ msgstr "Iraungitze-datarik ez" msgid "No feeds found. Try searching for something else." msgstr "Ez da feedik aurkitu. Saiatu beste zerbait bilatzen." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Jarraitzailerik ez oraindik" @@ -8118,7 +8111,7 @@ msgstr "Irudirik ez" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ez dago gogokorik oraindik" @@ -8135,7 +8128,7 @@ msgstr "Ez dago zerrendarik" msgid "No longer following {0}" msgstr "Jada ez da {0} jarraitzen" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Oraindik ez dago multimediarik" @@ -8143,7 +8136,7 @@ msgstr "Oraindik ez dago multimediarik" msgid "No messages yet" msgstr "Oraindik ez dago mezurik" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Zaborrez betetako algoritmo masibo gehiagorik ez. Aurkitu zure alde funtzionatzen duten feedak, ez zure aurka." @@ -8184,12 +8177,12 @@ msgstr "Inork ezin ditu mezuak bidali" msgid "No posts here" msgstr "Ez dago postik hemen" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Oraindik ez dago postik" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Oraindik ez dago aipamenik" @@ -8202,7 +8195,7 @@ msgstr "Ez dago GIF berririk oraindik. Aukeratu bat hemen ikusteko." msgid "No replies" msgstr "Erantzunik ez" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Erantzunik ez oraindik" @@ -8217,13 +8210,13 @@ msgstr "Ez dago emaitzarik" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Ez dago emaitzarik" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Emaitzarik ez honentzat: \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Ez da emaitzarik aurkitu" msgid "No results found for \"{query}\"" msgstr "Ez da emaitzarik aurkitu \"{query}\"-rentzat" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "Ez da emaitzarik aurkitu “<0>{query}” bilaketarako bilaketa-iragazki aurreratuak aplikatuta." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Ez da emaitzarik aurkitu “<0>{query}“-rentzat." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Ez da emaitzarik aurkitu zure kontsultarako bilaketa-iragazki aurreratuak aplikatuta." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Ez dago emaitzarik." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Ez dago oraindik Abio Multzorik" @@ -8265,7 +8258,7 @@ msgstr "Ez, eskerrik asko" msgid "No translation received from your device." msgstr "Ez da itzulpenik jaso zure gailutik." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Oraindik ez dago bideo postik" @@ -8278,7 +8271,7 @@ msgstr "Inor" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Inork ez du oraindik hau gogoko. Agian lehena izan beharko zenuke!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Inork ez du aipatu hau oraindik. Agian lehena izan beharko zenuke!" @@ -8298,6 +8291,10 @@ msgstr "Baimenik gabeko irudi intimoak" msgid "Non-sexual Nudity" msgstr "Biluztasun ez sexuala" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Bat ere ez" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Ez dago eskuragarri plataforma honetan." msgid "Not followed by anyone you’re following" msgstr "Ez dio jarraitzen zuk jarraitzen diozun inork" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Ez da aurkitu" @@ -8333,7 +8330,7 @@ msgstr "Partekatzeari buruzko oharra" 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 "Oharra: Bluesky sare ireki eta publikoa da. Ezarpen honek zure edukiaren ikusgarritasuna mugatzen du Bluesky aplikazioan eta webgunean, eta baliteke beste aplikazio batzuek ezarpen hau ez errespetatzea. Baliteke zure edukia saioa amaitutako erabiltzaileei erakustea beste aplikazio eta webgune batzuek." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Oharra: Post hau saioa hasi duten erabiltzaileentzat bakarrik ikus daiteke." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Ez da ezer gorde oraindik" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Jakinarazpen-ezarpenak" @@ -8353,11 +8350,12 @@ msgstr "Jakinarazpen-ezarpenak" msgid "Notification sounds" msgstr "Jakinarazpen soinuak" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Ai ez!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "Ados" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Ados" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Sartzea berrezarri" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Hautatutako hartzaileetako batek ez ditu txat taldeak onartzen." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Hautatutako hartzaileetako batek blokeatu zaitu eta ezin zaio mezurik bidali." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "GIF bati edo gehiagori aukerazko testua falta zaio." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Irudi bati edo gehiagori aukerazko testua falta zaio." @@ -8454,11 +8454,11 @@ msgstr "Hautatutako fitxategi bat edo gehiago ez dira onartzen." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Hautatutako fitxategi bat edo gehiago handiegiak dira. Gehienezko tamaina {VIDEO_MAX_SIZE_MB} MB da." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Post bat edo gehiago luzeegiak dira zirriborro gisa gordetzeko. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Gehienezko karaktere kopurua karaktere # da.} other {Gehienezko karaktere kopurua # karaktere dira.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio." @@ -8471,7 +8471,7 @@ msgstr "{0}-k bakarrik erantzun dezake." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "{1}-etik {0} irudi bakarrik gehitu {2, plural, one {da} other {dira}}; muga {MAX_GALLERY_IMAGES} da" @@ -8519,7 +8519,7 @@ msgstr "Bideoak dituzten postak bakarrik" msgid "Only replies" msgstr "Erantzunak bakarrik" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT (.vtt) fitxategiak soilik onartzen dira" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ene, profil hau ez da existitzen. Saiatu beste bat eskaneatzen." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,7 +8544,7 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "Ireki bilaketa-aukera aurreratuak" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Ireki abatar sortzailea" @@ -8570,21 +8570,22 @@ msgstr "Ireki elkarrizketa aukerak" msgid "Open draft" msgstr "Ireki zirriborroa" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Ireki marrazki menua" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Ireki emoji-hautatzailea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Ireki feedaren informazio pantaila" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Ireki feed aukeren menua" @@ -8627,7 +8628,7 @@ msgstr "Ireki moderazioaren arazketa orria" msgid "Open muted words and tags settings" msgstr "Ireki mutututako hitzen eta etiketen ezarpenak" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Ireki multzoa" @@ -8699,7 +8700,7 @@ msgstr "Arazketa-sarrera baten xehetasun gehigarriak irekitzen ditu" msgid "Opens alt text dialog" msgstr "Aukerazko testuaren elkarrizketa-koadroa irekitzen du" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Kamera irekitzen du gailuan" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Fluxua irekitzen du Bluesky kontu berri bat sortzeko" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Fluxua irekitzen du lehendik duzun Bluesky kontuan saioa hasteko" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Pasahitza eguneratuta!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausa" @@ -8925,12 +8926,12 @@ msgstr "Pausa" msgid "Pause GIF" msgstr "Pausatu GIFa" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausatu bideoa" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Jendea" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName} jarraitzen duten pertsonek eska dezakete bat egiteko" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0}-k jarraitzen duen jendea" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0}-ri jarraitzen dion jendea" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Jarraitzen ditudan pertsonak" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Nik jarraitzen ditudan pertsonek eska dezakete bat egiteko" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Jarraitzen duzun jendea" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Helduentzako pentsatutako irudiak." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Ainguratu feeda" @@ -9034,7 +9035,7 @@ msgstr "Ainguratu feeda" msgid "Pin to home" msgstr "Ainguratu hasierara" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Ainguratu Hasierara" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Ainguratua" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} Hasierara ainguratua" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Ainguratua zure feedetara" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Erreproduzitu" @@ -9076,8 +9077,8 @@ msgstr "Erreproduzitu {0}" msgid "Play GIF" msgstr "Erreproduzitu GIFa" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Erreproduzitu bideoa" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Mesedez, idatzi zure mezua jarraian:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politika" @@ -9269,7 +9270,7 @@ msgstr "Politika" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Posteatu" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Posteatu" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Argazki bat posteatu" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Bideo bat posteatu" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Posteatu Dena" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Posteatu hala ere" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Post blokeatuta" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0}-ren posta" @@ -9340,7 +9341,7 @@ msgstr "Zuk Ezkututako Posta" msgid "Post interaction settings" msgstr "Postaren elkarrekintza-ezarpenak" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Postaren Interakzio-Ezarpenak" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Posta ainguratuta" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Posta gordeta" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Postaren aingura kendu da" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postak" @@ -9398,6 +9396,10 @@ msgstr "Postak mututu daitezke testuaren, etiketen edo bietan oinarrituta. Post msgid "Posts hidden" msgstr "Post ezkutuak" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Postak, Erantzunak" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Engainagarria izan daitekeen esteka" @@ -9449,20 +9451,21 @@ msgstr "Pribatutasuna" msgid "Privacy and security" msgstr "Pribatutasuna eta segurtasuna" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Pribatutasuna eta Segurtasuna" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Pribatutasun eta Segurtasun ezarpenak" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Pribatutasun Politika" msgid "Privacy violation of a minor" msgstr "Adingabe baten pribatutasun urraketa" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIFa prozesatzen..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Bideoa prozesatzen..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Erabiltzaileen zerrenda publiko eta partekagarriak mututzeko edo blokeatzeko modu masiboan." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Argitaratu posta" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Argitaratu postak" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Argitaratu erantzunak" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Argitaratu erantzuna" @@ -9599,12 +9602,12 @@ msgstr "Post aipamenak desgaituta daude" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Aipamenak" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Post honen aipamenak" @@ -9647,7 +9650,7 @@ msgstr "Berriz aktibatu zure kontua" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Irakurri {0, plural, one {erantzun # gehiago} other {# erantzun gehiago}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Irakurri bilaketa-iragazki aurreratuak nola erabili" @@ -9657,11 +9660,11 @@ msgstr "Irakurri bilaketa-iragazki aurreratuak nola erabili" msgid "Read blog post" msgstr "Irakurri blogeko posta" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Irakurri gutxiago" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Irakurri gehiago" @@ -9687,11 +9690,11 @@ msgstr "Irakurri Bluesky Pribatutasun Politika" msgid "Read the Bluesky Terms of Service" msgstr "Irakurri Bluesky Zerbitzu-Baldintzak" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Benetako elkarrizketak." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Benetako jendea." @@ -9721,10 +9724,6 @@ msgstr "Azken bilaketak" msgid "Recently used" msgstr "Duela gutxi erabilia" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Gomendatua" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Berriro konektatu" @@ -9748,7 +9747,7 @@ msgstr "Baztertu txateatzeko eskaera" msgid "Reject join request" msgstr "Baztertu sartzeko eskaera" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Berriz kargatu elkarrizketak" @@ -9766,7 +9765,7 @@ msgstr "Berriz kargatu elkarrizketak" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Kendu" @@ -9792,8 +9791,8 @@ msgstr "Kendu {displayName}?" msgid "Remove {q}" msgstr "Kendu {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Kendu kontua" @@ -9845,15 +9844,15 @@ msgstr "Kendu iragazkia" msgid "Remove from chat" msgstr "Kendu txatetik" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Kendu nire feedetatik" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Sarrera azkarretik kendu?" @@ -9862,7 +9861,7 @@ msgstr "Sarrera azkarretik kendu?" msgid "Remove from saved feeds" msgstr "Kendu feed gordetatik" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Kendu gordetako postetatik" @@ -9880,8 +9879,8 @@ msgstr "Kendu irudia" msgid "Remove live status" msgstr "Kendu zuzeneko egoera" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Kendu kidea" @@ -9943,7 +9942,7 @@ msgstr "Zerrendatik kenduta" msgid "Removed from saved feeds" msgstr "Gordetako feedetatik kenduta" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Gordetako postetatik kendua" @@ -9952,7 +9951,7 @@ msgstr "Gordetako postetatik kendua" msgid "Removed from starter pack" msgstr "Abio multzotik kenduta" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Zuri erantzunda" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "{senderName}-ren mezuari erantzuna, sakatu bertara mugitzeko" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Erantzun zaion mezua zu sartu aurretik bidali zen" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Mezuari erantzuna, sakatu bertara mugitzeko" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Erantzunak" @@ -10037,7 +10037,7 @@ msgstr "Mezu honen erantzunak desgaituta daude." msgid "Reply" msgstr "Erantzun" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Erantzun" @@ -10098,8 +10098,8 @@ msgstr "Salatu elkarrizketa" msgid "Report dialog" msgstr "Salaketaren elkarrizketa-koadroa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Salatu feeda" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Zuk berpostatua" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Berpostak" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Berpostatu post hau" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Zure berposten berpostak" @@ -10253,7 +10253,7 @@ msgstr "Eskaera eginda" msgid "Requests" msgstr "Eskaerak" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Azken ekintza berriro saiatzen da, errorea izan duena" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Hasierako orrira itzultzen da" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Aurreko orrialdera itzultzen da" @@ -10446,27 +10446,27 @@ msgstr "Gorde jaiotze data" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Gorde aldaketak" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Gorde aldaketak?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Gorde zirriborroa" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Gorde zirriborroa?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Gorde QR kodea" msgid "Save these options for next time" msgstr "Gorde aukera hauek hurrengo baterako" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Gorde nire feedetan" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Gordetako Feedak" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Gordetako Postak" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Zure feedetan gordeta" @@ -10520,8 +10520,8 @@ msgstr "Zure feedetan gordeta" msgid "Say hello!" msgstr "Esan kaixo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Esan kaixo norbaiti" @@ -10535,7 +10535,7 @@ msgstr "Eskaneatu" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Eskaneatu QR kodea" @@ -10543,15 +10543,15 @@ msgstr "Eskaneatu QR kodea" msgid "Science" msgstr "Zientzia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Joan ezkerrera" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Joan eskuinera" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Joan honek erantzuten dion mezura" @@ -10564,8 +10564,8 @@ msgstr "Joan gora" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Bilatu" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Bilatu @{0}-ren postak" @@ -10612,11 +10612,11 @@ msgstr "Bilatu {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Bilatu besteei iradoki nahi diezun feedak." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Bilatu kontu gehiago" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Bilatu feed gehiago" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Bilatu GIF-ak" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Bilaketa ez dago erabilgarri saioa itxita dagoenean" @@ -10709,6 +10709,7 @@ msgstr "Ikusi Bluesky-n lanpostuak" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Ikusi gehiago" @@ -10716,8 +10717,12 @@ msgstr "Ikusi gehiago" msgid "See more suggested profiles" msgstr "Ikusi iradokitako profil gehiago" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "Ikusi joera-gai gehiago" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Ikusi iradokitako kontuak" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Bilaketa graduatzailea. Erabili gezi-teklak aurrera eta atzera bilatzeko, eta espazioa erreproduzitzeko/pausatzeko" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Hautatu \"{interestsDisplayName}\" kategoria" @@ -10748,7 +10753,7 @@ msgstr "Aukeratu {0}" msgid "Select {langName}" msgstr "Aukeratu {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Aukeratu kolore bat" @@ -10764,11 +10769,11 @@ msgstr "Aukeratu kontua" msgid "Select an app language" msgstr "Aukeratu aplikazioaren hizkuntza bat" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Aukeratu abatar bat" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Aukeratu emoji bat" @@ -10780,12 +10785,13 @@ msgstr "Hautatu aukera bat" msgid "Select app language" msgstr "Aukeratu aplikazioaren hizkuntza" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Aukeratu azpitituluen fitxategia (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Hautatu \"{name}\" txata" @@ -10826,7 +10832,7 @@ msgstr "Aukeratu GIF-a" msgid "Select GIF \"{0}\"" msgstr "Aukeratu GIF-a \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Hautatu txat taldeko kideak" @@ -10864,7 +10870,7 @@ msgstr "Aukeratu hizkuntza nagusia" msgid "Select telephone code" msgstr "Hautatu telefono kodea" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Aukeratu {emojiName} emojia zure abatar gisa" @@ -10945,7 +10951,8 @@ msgstr "Bidali mezua" msgid "Send post to {name}" msgstr "Bidali posta {name}-ri" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Bidali posta hona..." @@ -10963,12 +10970,12 @@ msgstr "Bidali mezua zure telefonotik" msgid "Send verification email" msgstr "Bidali egiaztapen-mezu elektronikoa" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Bidali mezu zuzenaren bidez" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Bidali txataren bidez" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Ezarri zure ostatatze-hornitzailea eskuz" msgid "Sets email for password reset" msgstr "Pasahitza berrezartzeko posta elektronikoa ezartzen du" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Besteen jardueraren ezarpenak" @@ -11036,49 +11043,49 @@ msgstr "Besteen jardueraren ezarpenak" msgid "Settings for allowing others to be notified of your posts" msgstr "Zure posten berri beste batzuei emateko ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Gustoko jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Aipamen jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Jarraitzile berrien jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Beste guztiaren jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Zure berpost gustokoen jakinarazpenen ezarpenak" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Mezu-eskaera berrien jakinarazpenen ezarpenak" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Mezu berrien jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Zure berpost berposten jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Aipamen jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Erantzun jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Berpost jakinarazpenen ezarpenak" @@ -11115,8 +11122,8 @@ msgstr "Partekatu adin-tartea" msgid "Share anyway" msgstr "Partekatu hala ere" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Partekatu egilearen DID" @@ -11125,9 +11132,9 @@ msgstr "Partekatu egilearen DID" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Partekatu iritzia" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Partekatu estekaren elkarrizketa-koadroa" msgid "Share my profile" msgstr "Partekatu nire profila" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Partekatu posta hemen:// URI" @@ -11169,12 +11176,12 @@ msgstr "Partekatu Profila" msgid "Share QR code" msgstr "Partekatu QR kodea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Partekatu feed hau" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Partekatu bilaketa hau" @@ -11186,8 +11193,8 @@ msgstr "Partekatu abio multzo hau" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Partekatu abio multzo hau eta lagundu jendea zure Bluesky komunitatean sartzen." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Partekatu zure kontaktuak lagunak aurkitzeko" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughts…" -msgstr "" +msgstr "Partekatu zure gogoetak…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Partekatutako Hobespenen Probatzailea" @@ -11219,7 +11226,7 @@ msgstr "Adin tartea partekatzeak zure Apple kontuari lotutako tartea baino ez du msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Adin tartea partekatzeak zure Google kontuari lotutako tartea baino ez du agerian uzten, adibidez, gutxienez 18 urte dituzula. <0>Zure adin zehatza eta urtebetetzea ez dira inoiz partekatzen, eta datu hauek ez dute inoiz gailu hau uzten. Beraz, gailu honetan bakarrik ahalbidetzen du sarbidea. Bestela, <1>gure bazkide fidagarria, KWS, erabil dezakezu, egiaztapena osatzeko eta plataforma guztietan sarbidea gaitzeko." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Erakutsi" msgid "Show alt text" msgstr "Erakutsi aukerazko testua" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Erakutsi hala ere" @@ -11274,8 +11281,8 @@ msgstr "Erakutsi zerrenda hala ere" msgid "Show lists of users to select from" msgstr "Erakutsi aukeran dauden erabiltzaileen zerrendak" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Erakutsi gehiago" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Erakutsi feedetako abisua eta iragazkia" msgid "Show when you’re live" msgstr "Erakutsi zuzenean zaudenean" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Post hau noiz sortu zenari buruzko informazioa erakusten du" @@ -11341,15 +11348,15 @@ msgstr "Post hau noiz sortu zenari buruzko informazioa erakusten du" msgid "Shows other accounts you can switch to" msgstr "Alda ditzakezun beste kontu batzuk erakusten ditu" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Edukia erakusten du" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Edukia erakusten du" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Saioa amaitu?" msgid "Sign up" msgstr "Eman izena" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Saioa hasi behar da" @@ -11469,7 +11476,7 @@ msgstr "Saltatu" msgid "Skip contact sharing and continue to the app" msgstr "Saltatu kontaktuak partekatzea eta jarraitu aplikaziora" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Post hutsak saltatu?" @@ -11487,7 +11494,7 @@ msgstr "Hurrengo urratsera joan" msgid "slide" msgstr "diapositiba" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Txikiagoa" @@ -11499,14 +11506,14 @@ msgstr "Gogorarazpena atzeratzen du" msgid "So many thoughts, you should post one" msgstr "Hainbeste ideia, bat argitaratu beharko zenuke" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Zuk kontrolatzen duzun sare soziala." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Posten gizarte-froga" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Norbaitek taldea utzi du" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Norbaitek erreakzionatu du {0}" @@ -11554,7 +11561,7 @@ msgstr "Norbaitek erreakzionatu du {0}" msgid "Someone reacted {0} to {target}" msgstr "Norbaitek {0} erreakzionatu du {target}-i" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Norbaitek erantzun du" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Arazoren bat izan da. Mesedez, saiatu berriro" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Arazoren bat izan da. Mesedez, saiatu berriro geroago." msgid "Something went wrong. Please try again." msgstr "Arazoren bat izan da. Mesedez, saiatu berriro." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Zerbait gaizki? Jakinaraziguzu." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam-a edo bestelako jokabide edo engainu faltsuak" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Kirolak" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Zure lagunek eta jarraitzaileek gustuko izan dituzten leku postak." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Hasi elkarrizketa bat, eta hemen agertuko da." msgid "Start a group chat" msgstr "Hasi txat talde bat" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Txat berria hasi" @@ -11682,17 +11689,17 @@ msgstr "Hasi jendea gehitzen" msgid "Start adding people!" msgstr "Hasi jendea gehitzen!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Txata hasi" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Txat berria hasi {displayName}-rekin" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Abio Multzoa" @@ -11715,12 +11722,16 @@ msgstr "Zure abio multzoa" msgid "Starter pack is invalid" msgstr "Abio multzoa ez da zuzena" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Abio multzoak" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Abio Multzoak" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Abio multzoek zure gogoko feedak eta jendea zure lagunekin erraz partekatzeko aukera ematen dizu." @@ -11728,7 +11739,7 @@ msgstr "Abio multzoek zure gogoko feedak eta jendea zure lagunekin erraz parteka msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Abio multzoek zure gogoko feedak eta jendea zure lagunekin partekatzeko aukera ematen dizu." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Abio Multzoek zure gogoko feedak eta jendea zure lagunekin partekatzeko aukera ematen dizu." @@ -11742,7 +11753,7 @@ msgstr "Egoera Orria" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "{0}/{1} urratsa" @@ -11754,7 +11765,7 @@ msgstr "Biltegia garbitu da, aplikazioa berrabiarazi behar duzu orain." msgid "Stored as part of a secure code for matching with others" msgstr "Besteekin bat etortzeko kode seguru baten barruan gordeta" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Ipuin liburua" @@ -11787,7 +11798,7 @@ msgstr "Bidali Apelazioa" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Bidali iritzia" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Harpidetu {publicationTitle}-ra {0}-n" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Harpidetu @{0}-ra etiketa hauek erabiltzeko:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Behar bezala egiaztatu da" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Iradokitakoa" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Iradokitako kontuak" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Ilunabarra" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Ezaugarri honen laguntza ez dago oraindik zure herrialdean gaituta! Mesedez, saiatu berriro geroago." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Etenda dauden kontuek ezin dute txat taldean parte hartu." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Etenda dauden kontuek ezin dute txatean parte hartu." @@ -11921,8 +11934,8 @@ msgstr "Aldatu {0}-ra" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Eraman elkarrizketa pribatura." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Sakatu behean Bluesky-k zure GPS kokapena atzitzeko aukera emateko. Ondoren, datu horiek erabiliko ditugu zure eskualdean eskuragarri dauden edukia eta funtzioak zehatzago zehazteko." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Sakatu xehetasunak ikusteko" @@ -11976,7 +11989,7 @@ msgstr "Ukitu testuinguru-menua ixteko" msgid "Tap to copy this invite link" msgstr "Sakatu gonbidapen-esteka hau kopiatzeko" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Sakatu baztertzeko" @@ -12003,7 +12016,7 @@ msgstr "Sakatu zure {0} erreakzioa ezabatzeko" msgid "Tap to request access to join this group chat" msgstr "Sakatu txat talde honetan sartzeko sarbidea eskatzeko" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Sakatu berriro saiatzeko" @@ -12016,7 +12029,7 @@ msgstr "Sakatu {0} erreakzio erakusteko" msgid "Tap to show all reactions" msgstr "Sakatu erreakzio guztiak erakusteko" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Sakatu erreakzioak ikusteko" @@ -12032,7 +12045,7 @@ msgstr "Ataza amaituta - 10-ek jarraitzen dute!" msgid "Task complete - 10 likes!" msgstr "Ataza amaituta - 10-ek gogoko dute!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Irakatsi gure algoritmoari gustatzen zaizuna" @@ -12060,7 +12073,7 @@ msgstr "Baldintzak" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Eskerrik asko zure iritziagatik! Feedaren operadoreari bidali zaio." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Eskerrik asko zure iritziagatik!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Ezin izan da aurkitu abio multzo hori." msgid "That username is already taken" msgstr "Erabiltzaile-izen hori dagoeneko hartuta dago" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Hori da guztia, lagunok!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Hori da dena!" @@ -12216,7 +12229,7 @@ msgstr "Zerbitzariak arazoak dituela dirudi. Mesedez, saiatu berriro une batzuk msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Ikusten saiatzen ari zaren abio multzoa ez da zuzena. Horren ordez, abio multzo hau ezaba dezakezu." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Testuinguru-menuaren gaia" @@ -12238,7 +12251,7 @@ msgstr "Eman duzun egiaztapen-kodea ez da zuzena. Mesedez, ziurtatu egiaztapen-e msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Egiaztapen-hornitzaileak ezin izan du kodea bidali zure telefono-zenbakira. Mesedez, egiaztatu zure telefono-zenbakia eta saiatu berriro." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Gaia" @@ -12266,7 +12279,7 @@ msgstr "Arazo bat izan da GIFak kargatzen. Egiaztatu konexioa eta saiatu berriro msgid "There was a problem with your internet connection, please try again" msgstr "Arazo bat izan da zure internet konexioarekin, mesedez, saiatu berriro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Arazo bat izan da zure internet konexioarekin, mesedez, saiatu berriro" msgid "There was an issue contacting the server" msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro." @@ -12283,8 +12296,8 @@ msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko. Mesedez, egiaz msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Arazo bat izan da jakinarazpenak eskuratzean. Sakatu hemen berriro saiatzeko." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Arazo bat izan da postak eskuratzean. Sakatu hemen berriro saiatzeko." @@ -12309,7 +12322,7 @@ msgstr "Arazo bat izan da zure zerbitzu informazioa eskuratzean" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Arazo bat izan da feed hau kentzean. Egiaztatu Interneteko konexioa eta saiatu berriro." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Ezarpen hauek Jarraitzen feedari soilik aplikatzen zaizkio." msgid "These URLs" msgstr "URL hauek" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Txat honen jabeak dira" @@ -12392,7 +12405,7 @@ msgstr "Txat honen jabeak dira" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Ezin izango dira berriro sartu zuk berriro gonbidatu arte." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} hau markatu da:" @@ -12408,7 +12421,7 @@ msgstr "Kontu hau jabeak automatizatu gisa markatu du." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Kontu honek egiaztapen saiakera bat edo gehiago ditu, baina une honetan ez dago egiaztatuta." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Kontu honen profila saioa hasitako erabiltzaileek bakarrik ikus dezakete." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Feed hau hutsik dago! Baliteke erabiltzaile gehiago jarraitu behar izatea edo hizkuntza-ezarpenak doitzea." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Feed hau hutsik dago." @@ -12554,7 +12567,7 @@ msgstr "Talde hau blokeatuta dago jabearen aurkako moderazio-ekintza baten ondor msgid "This handle is reserved. Please try a different one." msgstr "Handle hau erreserbatuta dago. Mesedez, saiatu beste bat." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Irudi hau ezin izan da erabili. Saiatu beste formatu batekin, adibidez, .jpg edo .png." @@ -12596,7 +12609,7 @@ msgstr "Etiketa hau zuk aplikatu duzu." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Etiketa hau erabiltzaile-kontu osoan aplikatu da eta post guztietan agertuko da." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Etiketatzaile honek ez du deklaratu zein etiketa argitaratzen dituen, eta baliteke aktibo ez egotea." @@ -12621,13 +12634,13 @@ msgstr "Zerrenda hau hutsik dago." msgid "This message is hidden" msgstr "Mezu hau ezkutatuta dago" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Mezu hau ezkutatuta dago erabiltzaile honek blokeatzen zaituelako." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Mezu hau ezkutatuta dago erabiltzaile hau blokeatzen ari zarelako." @@ -12641,7 +12654,7 @@ msgstr "Pertsona honek blokeatzen zaitu" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Post honek <0>{0}-n sortu dela dio, baina Bluesky-k <1>{1}-n ikusi zuen lehen aldiz." @@ -12649,7 +12662,7 @@ msgstr "Post honek <0>{0}-n sortu dela dio, baina Bluesky-k <1>{1}-n iku msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Post honek hari mota ezezagun bat du. Baliteke zure aplikazioa zaharkituta egotea." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Post hau saioa hasi duten erabiltzaileentzat bakarrik ikus daiteke." @@ -12661,7 +12674,7 @@ msgstr "Post hau egileak ezabatu du" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Post hau feed eta harietatik ezkutatuta egongo da. Hau ezin da desegin." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Post honen egileak aipamenak desgaitu ditu." @@ -12698,11 +12711,12 @@ msgstr "Minutu batzuk besterik ez luke iraun behar." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Erabiltzaile honek ez du bistaratzeko izenik, beraz, ezin da egiaztatu." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Erabiltzaile honek ez du jarraitzailerik." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Erabiltzaile honek blokeatu zaitu eta ezin zaio mezurik bidali." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Erabiltzaile honek blokeatu zaitu. Ezin duzu haren edukia ikusi." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Erabiltzaile honek txata desgaitu du eta ezin zaio mezurik bidali." @@ -12733,11 +12748,11 @@ msgstr "Erabiltzaile hau mututu duzun <0>{0} zerrendan sartuta dago." msgid "This user is new here. Press for more info about when they joined." msgstr "Erabiltzaile hau berria da hemen. Sakatu noiz sartu zenari buruzko informazio gehiago lortzeko." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Erabiltzaile hau ez du inor jarraitzen." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Bideo hau ezin da erreproduzitu zure gailuan. Baliteke zure arakatzaileak edo sistemak beharrezko bideo kodekak (H.264/AAC) falta izatea." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Honek atzeraezin ezabatuko du zure Bluesky kontua <0>{currentHandle} eta lotutako datu guztiak. Kontuan izan honek kontu honekin erabiltzen dituzun beste <1>AT Protokolo zerbitzuetan eragina izango duela." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Honek @{0} sarbide azkarreko zerrendatik kenduko du." @@ -12786,7 +12801,7 @@ msgstr "Hariaren Hobespenak" msgid "Threaded" msgstr "Harikatua" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Harien Hobespenak" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Kontaktu gehiegi - zure lagunak aurkitzeko inporta ditzakezun kontaktuen kopurua gainditu duzu" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Joan gora" @@ -12858,7 +12873,7 @@ msgstr "Joan gora" msgid "Top replies first" msgstr "Goiko erantzunak lehenik" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Gaia" @@ -12893,7 +12908,9 @@ msgstr "Hizkuntza bererako itzulpena ez dago erabilgarri zure gailuan." msgid "Tree view" msgstr "Zuhaitz-ikuspegia" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Joera" @@ -12902,7 +12919,7 @@ msgstr "Joera" msgid "Trending GIFs" msgstr "Modako GIFak" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Joera-aukerak" @@ -12918,11 +12935,11 @@ msgstr "Trolling-a" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Konfiantza harremanetatik, komunitateetatik eta partekatutako testuinguruetatik sortzen da, beraz, <0>egiaztatzaile fidagarriak ere gaitzen ari gara: egiaztapena zuzenean jaulki dezaketen erakundeak." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Saiatu beste bilaketa-termino batekin edo kendu iragazki batzuk." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Saiatu beste bilaketa-termino batekin." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Ezin dira eskuratu sarrera eskaerak." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Ezin da hautatutako hartzailerik aurkitu." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Ezin da hautatutako hartzailea aurkitu." @@ -13024,12 +13043,12 @@ msgstr "Ez dago eskuragarri" msgid "Unavailable feed information" msgstr "Feedaren informazioa ez dago erabilgarri" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Kontua Desblokeatu?" msgid "Unblock list" msgstr "Desblokeatu zerrenda" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "{0} jarraitzen utzi" msgid "Unfollow account" msgstr "Utzi kontua jarraitzeari" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Erabiltzailea jarraitzeari uzten dio" @@ -13132,7 +13151,7 @@ msgstr "Helduentzako etiketarik gabeko edukia" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Etiketarik gabeko, abusuzko edo baimenik gabeko helduentzako edukia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Ez gogoko" @@ -13192,7 +13211,7 @@ msgstr "Desmututu txat talde hau" msgid "Unmute thread" msgstr "Haria ez mututu" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Bideoa ez mututu" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Aingura kendu" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Feedari aingura kendu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Aingura kendu hasieratik" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Moderazio zerrendari aingura kendu" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0}-ri aingura kendu Hasieratik" @@ -13258,11 +13277,11 @@ msgstr "Harpidetza kendu etiketatzaile honi" msgid "Unsubscribed from list" msgstr "Zerrendatik harpidetza kenduta" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Onartzen ez den arbeleko edukia" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Bideo mota bateraezina: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Ezin izan da eguneratu erantzunen ikusgaitasuna" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Kargatu argazki bat ordez" @@ -13355,7 +13374,7 @@ msgstr "Kargatu Fitxategietatik" msgid "Upload from Library" msgstr "Kargatu Liburutegitik" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIFa kargatzen..." @@ -13369,7 +13388,7 @@ msgstr "Irudiak kargatzen..." msgid "Uploading link thumbnail..." msgstr "Estekaren miniatura kargatzen..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Bideoa kargatzen..." @@ -13408,7 +13427,7 @@ msgstr "Erabili hau zure handle-arekin batera beste aplikazioan saioa hasteko." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Erabili zure kontuko helbide elektronikoa, edo zuk kontrolatzen duzun beste benetako helbide elektroniko bat, KWS edo Bluesky-k zurekin harremanetan jarri behar badute." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "erabiltzailea" @@ -13510,7 +13529,7 @@ msgstr "Egiaztapena huts egin du, saiatu berriro." msgid "Verification settings" msgstr "Egiaztapen-ezarpenak" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Egiaztapen-Ezarpenak" @@ -13618,7 +13637,7 @@ msgstr "Bideoa" msgid "Video failed to process" msgstr "Ezin izan da prozesatu bideoa" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Bideo Feeda" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "{0}-ren bideoa: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "{0}-ren bideoa. Sakatu bideoa erreproduzitzeko edo pausatzeko" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Bideo-jokoak" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Bideoa geldirik dago" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Bideoa erreproduzitzen ari da" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Ez da bideoa aurkitu." @@ -13653,7 +13672,7 @@ msgstr "Ez da bideoa aurkitu." msgid "Video settings" msgstr "Bideo ezarpenak" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Bideoa kargatuta" @@ -13662,17 +13681,17 @@ msgstr "Bideoa kargatuta" msgid "Video: {0}" msgstr "Bideoa: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Bideoak" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Bideoek 3 minutu baino gutxiago iraun behar dute." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Ikusi" @@ -13691,9 +13710,9 @@ msgstr "Ikusi {0}-ren abatarra" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ikusi {0}-ren profila" @@ -13724,13 +13743,13 @@ msgstr "Ikusi blogeko argitalpena xehetasun gehiago lortzeko" msgid "View debug entry" msgstr "Ikusi arazketa-sarrera" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ikusi xehetasunak" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ikusi hari osoa" @@ -13761,7 +13780,7 @@ msgstr "Ikusi gehiago" msgid "View more trending videos" msgstr "Joera-bideo gehiago ikusi" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Ikusi posta" @@ -13798,11 +13817,11 @@ msgstr "Ikusi txat talde honetarako gonbidapen-esteka" msgid "View the labeling service provided by @{0}" msgstr "Ikusi @{0}-k eskaintzen duen etiketa-zerbitzua" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Ikusi erabiltzaile honen egiaztapenak" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Ikusi feed hau gogoko duten erabiltzaileak" @@ -13831,7 +13850,7 @@ msgstr "Ikusi zure moderazio zerrendak" msgid "View your muted accounts" msgstr "Ikusi zuk mutututako kontuak" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Ikusi zure egiaztapenak" @@ -14001,7 +14020,7 @@ msgstr "Zure lagunak aurkitzen ditugunean jakinaraziko dizugu." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "We’d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Beta ezaugarriak probatzeko duzun esperientziaren berri izatea gustatuko litzaiguke!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Sare arazoak ditugu, saiatu berriro" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Sare arazoak ditugu, saiatu berriro" @@ -14043,7 +14062,7 @@ msgstr "Sare arazoak ditugu, saiatu berriro" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Bluesky-n egiaztapen-geruza berri bat sartzen ari gara — erraz ikusteko egiaztapen-marka bat." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Pozik gaude gurekin bat egin izanagatik!" @@ -14064,13 +14083,15 @@ msgstr "Sentitzen dugu, baina ezin izan dugu zerrenda hau konpondu. Honek jarrai msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Sentitzen dugu, baina momentu honetan ezin izan ditugu kargatu zure mutututako hitzak. Mesedez, saiatu berriro." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." -msgstr "" +msgstr "Barkatu, baina ezin izan da zure bilaketa osatu." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Sentitzen dugu, baina ezin izan da bilaketa osatu. Mesedez, saiatu berriro minutu batzuk barru." @@ -14078,7 +14099,7 @@ msgstr "Sentitzen dugu, baina ezin izan da bilaketa osatu. Mesedez, saiatu berri msgid "We're sorry, you cannot access this screen at this time." msgstr "Sentitzen dugu, momentu honetan ezin zara pantaila honetara sartu." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentitzen dugu! Erantzuten ari zaren posta ezabatu da." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "zer berri" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Zer da?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Nork egiaztatu dezake?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Aiba!" @@ -14220,21 +14241,21 @@ msgstr "Erabiltzaile hau blokeatu eta/edo elkarrizketa hau utzi nahi duzu?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Zure zirriborroak ikusi aurretik zirriborro gisa gorde nahi al duzu hau?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Zirriborro gisa gorde nahi duzu geroago editatzeko?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Idatzi post bat" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Idatzi posta" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Idatzi zure erantzuna" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Aplikazioan sartzen utzi aurretik zure adina egiaztatzea eskatzen digun eskualde batetik sartzen ari zara Bluesky-ra." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0} blokeatzen ari zara" @@ -14342,7 +14363,7 @@ msgstr "Jada ez zaude zuzenean" msgid "You are not allowed to upload videos." msgstr "Ezin dituzu bideoak kargatu." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Ez zara inor jarraitzen ari oraindik" @@ -14362,7 +14383,7 @@ msgstr "Egiaztatuta zaude. Zure egiaztapen-egoera galduko duzu bistaratzeko izen msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Egiaztatuta zaude. Zure egiaztapen-egoera galduko duzu erabiltzaile izena aldatzen baduzu. <0>Ikasi gehiago." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Zure interesak edonoiz doi ditzakezu \"Edukia eta multimedia\" ezarpenetatik." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Orain pasahitz berriarekin saioa hasi dezakezu." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Gehienez {MAX_GALLERY_IMAGES, plural, other {# irudi}} gehi ditzakezu post bakoitzeko" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "1000 karaktere arteko zirriborroak soilik gorde ditzakezu." @@ -14439,9 +14460,9 @@ msgstr "Txat-historia irakurri dezakezu, baina ezin duzu mezu berririk bidali." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Guztira gehienez {MAX_GALLERY_IMAGES, plural, other {# irudi}} hauta ditzakezu." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Geroago eguneratu dezakezu hau zure ezarpenetan." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Ezin duzu {EMOJI_REACTION_LIMIT, plural, one {emoji erreakzio #} other {# emoji erreakzio}} baino gehiago gehitu" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Ezin duzu txat talde bat sortu oraindik." @@ -14555,7 +14577,7 @@ msgstr "Zure helbide elektronikoa behar bezala egiaztatu duzu. Leiho hau itxi de msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Bideoak kargatzeko mugara iritsi zara aldi baterako. Mesedez, saiatu berriro geroago." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Zirriborro honetan gorde gabeko aldaketak dituzu, gorde nahi dituzu?" @@ -14563,7 +14585,7 @@ msgstr "Zirriborro honetan gorde gabeko aldaketak dituzu, gorde nahi dituzu?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Gorde gabeko aldaketak dituzu. Zirriborroak ikusi aurretik gorde nahi dituzu?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Ez duzu oraindik abio multzorik sortu!" @@ -14614,7 +14636,7 @@ msgstr "Gehienez {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} msgid "You may only add up to 3 feeds" msgstr "Gehienez 3 feed gehi ditzakezu" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Txataren jabea izan behar duzu kide bat kentzeko." @@ -14622,7 +14644,7 @@ msgstr "Txataren jabea izan behar duzu kide bat kentzeko." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Gutxienez 13 urte izan behar dituzu Bluesky erabiltzeko. Irakurri gure <0>Zerbitzu Baldintzak informazio gehiago lortzeko." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Gutxienez beste zazpi pertsona jarraitu behar dituzu abio multzo bat sortzeko." @@ -14639,7 +14661,7 @@ msgstr "Zure multimedia liburutegirako sarbidea baimendu behar duzu." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Zure e-posta helbidea egiaztatu behar duzu e-posta bidezko 2FA gaitu aurretik." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Txat honen jabea zara" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Aplikazioa orain berrabiaraztea komeni da." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Erreakzionatu duzu {0}" @@ -14667,15 +14689,15 @@ msgstr "{0} erreakzionatu duzu {target}-i" msgid "You recently changed your birthdate" msgstr "Duela gutxi aldatu duzu jaiotze data" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Erantzun duzu" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "{originalName}-ri erantzun diozu" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Zeure buruari erantzun diozu" @@ -14715,11 +14737,11 @@ msgstr "Ezin izango zara berriro sartu gonbidatuta ez bazaude." msgid "You: {message}" msgstr "Zu: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Iradokitako erabiltzaileak eta feedak jarraituko dituzu zure kontua sortzen amaitzean!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Iradokitako erabiltzaileak jarraituko dituzu kontua sortzen amaitzean!" @@ -14791,7 +14813,7 @@ msgstr "Eduki aktiboaren amaierara iritsi zara." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Zure feedaren amaierara iritsi zara! Bilatu jarraitzeko kontu gehiago." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Gehienezko zirriborro kopurura iritsi zara" @@ -14799,7 +14821,7 @@ msgstr "Gehienezko zirriborro kopurura iritsi zara" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Eskaera kopuru maximoa gainditu duzu. Mesedez, saiatu berriro geroago." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Gehienezko {MAX_FILTERS, plural, one {iragazki #} other {# iragazki}} kopurura iritsi zara. Berriak sortu beharrean, gehitu balio gehiago lehendik dagoen iragazki bati." @@ -14815,11 +14837,11 @@ msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (byte gehiegi)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (bideo gehiegi)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Ikusteko bideorik gabe geratu zara. Agian momentu ona da atsedena hartzeko?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Zure kontua" @@ -14835,11 +14857,11 @@ msgstr "Zure kontua bertan behera utzi da" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Zure kontuak ez du oraindik bideoak kargatzeko adina. Mesedez, saiatu berriro geroago." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Zure kontua berriegia da" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Zure kontuak gutxienez 7 egun izan behar ditu txat talde berri bat sortzeko." @@ -14930,8 +14952,8 @@ msgstr "Zure ostataze-hornitzailea ezin da helbide elektroniko batetik atzeman, msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Zure ostatatze-hornitzailea automatikoki hautematen da sartzen duzun erabiltzaile-izenetik." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Zure interesak eguneratu dira!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Zure interesek gustatzen zaizuna aurkitzen laguntzen digute!" @@ -14967,11 +14989,11 @@ msgstr "Zure pasahitza behar bezala aldatu da! Mesedez, erabili zure pasahitz be msgid "Your password must be at least 8 characters long." msgstr "Pasahitzak 8 karaktereko luzera izan behar du gutxienez." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Zure posta bidali da" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Zure postak bidali dira" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Zure hizkuntza hobetsia" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Zure profileko argazkia" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Zure profileko argazkia beste erabiltzaileen profileko argazkien zirkulu zentrokidez inguratuta" @@ -14992,7 +15014,7 @@ msgstr "Zure profileko argazkia beste erabiltzaileen profileko argazkien zirkulu msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Zure profila, postak, feedak eta zerrendak ez dira ikusgai egongo beste Bluesky erabiltzaileentzat. Zure kontua edonoiz aktiba dezakezu saioa hasita." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Zure erantzuna bidali da" @@ -15005,7 +15027,7 @@ msgstr "Zure salaketa <0>{0}-ra bidaliko da." msgid "Your selected interests help us serve you content you care about." msgstr "Aukeratutako interesek gogoko duzun edukia zerbitzatzen laguntzen digute." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Zure hariak saltatuko diren post hutsak ditu. Gainerako postak hari gisa argitaratuko dira." diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po index 4b7ba035cc..dc7ee095d4 100644 --- a/src/locale/locales/fi/messages.po +++ b/src/locale/locales/fi/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: fi\n" +"Language: fi_FI\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(sisältää upotettua sisältöä)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# tunti} other {# tuntia}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# tykkäys} other {# tykkäystä}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} seurattua" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Käyttäjälle {handle} ei voi viestiä" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {seurattu} other {seurattua}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {lainaus} other {lainausta}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {uudelleenjulkaisu} other {uudelleenjulkaisua}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 päivää" msgid "7 days" msgstr "7 päivää" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Saavutettavuus" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Saavutettavuusasetukset" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Tili mykistetty listan perusteella" msgid "Account options" msgstr "Tilin valinnat" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Tili poistettu pikakäytöstä" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Lisää tekstivastine (valinnainen)" msgid "Add another account" msgstr "Lisää toinen tili" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Lisää toinen julkaisu" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Lisää tämä syöte syötteisiisi" msgid "Add to lists" msgstr "Lisää listoihin" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Aikuinen" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Sallii pääsyn yksityisviesteihin" msgid "Already have a code?" msgstr "Onko sinulla jo koodi?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "Osoitteeseen {0} on lähetetty sähköpostiviesti. Siinä on vahvistusko msgid "An error has occurred" msgstr "On tapahtunut virhe" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Tapahtui virhe" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Aloituspakettiasi luotaessa tapahtui virhe. Haluatko yrittää uudelleen?" @@ -1640,11 +1600,11 @@ msgstr "Aloituspakettiasi luotaessa tapahtui virhe. Haluatko yrittää uudelleen msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Videota ladattaessa tapahtui virhe. Yritä myöhemmin uudelleen." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Videota ladattaesa tapahtui virhe. Yritä uudelleen." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Ongelma, joka ei sisälly näihin vaihtoehtoihin" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Yritettäessä avata chattia ilmenei ongelma" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Sovellussalasanojen nimien on oltava vähintään 4 merkkiä pitkiä" msgid "App passwords" msgstr "Sovellussalasanat" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Sovellussalasanat" @@ -1891,8 +1849,8 @@ msgstr "Valita tästä päätöksestä" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arkistoitu ajankohdasta {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arkistoitu julkaisu" @@ -1980,7 +1938,7 @@ msgstr "Haluatko varmasti poistaa tämän syötteistäsi?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Haluatko varmasti hylätä tämän julkaisun?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Toista videot ja GIF-animaatiot automaattisesti" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Ennen aloituspaketin luomista sinun on vahvistettava sähköpostiosoitteesi." @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Syntymäpäivä" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Estetty" msgid "Blocked accounts" msgstr "Estetyt tilit" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Estetyt tilit" @@ -2282,7 +2250,7 @@ msgstr "Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muut 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 "Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muuten vuorovaikutuksessa kanssasi. Et näe niiden sisältöä, eivätkä ne näe sinun sisältöäsi." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Estäminen ei estä tätä merkitsijää asettamasta merkintöjä tilillesi." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ei voi vahvistaa väitetyn päivämäärän oikeellisuutta." @@ -2330,7 +2299,7 @@ msgstr "Bluesky on avoin verkosto, jossa voit valita hostauspalveluntarjoajasi. msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky on parempi kavereiden kanssa!" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky valitsee joukon suositeltuja tilejä verkostosi käyttäjistä." @@ -2425,24 +2394,25 @@ msgstr "Selaa lisää ehdotuksia Explore-sivulla" msgid "Browse other feeds" msgstr "Selaa muita syötteitä" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Selaa julkaisuja aiheesta {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Selaa julkaisuja tunnisteella {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Selaa aihetta {displayName}" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Käyttäjältä {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Käyttäjältä <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Luomalla tilin hyväksyt <0>käyttöehdot ja <1>tietosuojakäytänn msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Luomalla tilin hyväksyt <0>käyttöehdot." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Peruuta tilin käyttöönpalautus ja kirjaudu ulos" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Peruuta haku" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chatti mykistetty" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chatin asetukset" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chatti mykistetty" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "Valitse verkkotunnuksen vahvistusmenetelmä" msgid "Choose Feeds" msgstr "Valitse syötteet" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Valitse puolestani" @@ -2854,7 +2825,7 @@ msgstr "Valitse käyttäjät" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Valitse tämä väri profiilikuvaksesi" @@ -2879,7 +2850,7 @@ msgstr "Valitse oma aikajanasi! Yhteisön rakentamat syötteet auttavat löytäm msgid "Choose your password" msgstr "Valitse salasanasi" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Valitse käyttäjätunnuksesi" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähetystä" @@ -3003,7 +2974,7 @@ msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähe #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähe msgid "Close" msgstr "Sulje" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Sulje aktiivinen valintaikkuna" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Sulje tämä valintaikkuna" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Sulkee salasanan päivityshälytyksen" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Väritila" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Sarjakuvat" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Yhteisöohjeet" @@ -3141,7 +3112,7 @@ msgstr "Yhteisöohjeet" msgid "Complete onboarding and start using your account" msgstr "Suorita käyttöönotto loppuun ja aloita tilisi käyttö" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Suorita haaste loppuun" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Laadi uusi julkaisu" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "Laadi vastaus" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Pakataan videota…" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Ota yhteys tukeen" @@ -3253,7 +3224,7 @@ msgstr "Sisältö ja media" msgid "Content and media" msgstr "Sisältö ja media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Sisältö ja media" @@ -3265,10 +3236,6 @@ msgstr "Sisältö estetty" msgid "Content filters" msgstr "Sisällönsuodattimet" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Sisältövaroitus" msgid "Content warnings" msgstr "Sisältövaroitukset" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Kontekstivalikon tausta-alue. Napsauta sulkeaksesi valikon." @@ -3302,7 +3269,7 @@ msgstr "Kontekstivalikon tausta-alue. Napsauta sulkeaksesi valikon." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Jatka ketjua…" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Ohjelmiston versio kopioitu leikepöydälle" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Kopioi sovellussalasana" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "Kopioi linkki" msgid "Copy link to list" msgstr "Kopioi listan linkki" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopioi julkaisun linkki" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "Kopioi viestin teksti" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "Kopioi TXT-tietueen arvo" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Tekijänoikeuskäytäntö" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Chatista ei voitu poistua" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Syötettä ei voitu ladata" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Chattia ei voitu mykistää" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Luo" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Luo QR-koodi aloituspaketille" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Luo aloituspaketti" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Luo aloituspaketti minulle" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Luo tili" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Luo tili" @@ -3666,15 +3633,15 @@ msgstr "Luo tili" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Luo sen sijaan profiilikuva" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Luo toinen" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Kulttuuri" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Tumma" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tumma" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tumma teema" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Oletus" @@ -3894,7 +3861,7 @@ msgstr "Poista tilini" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Poista julkaisu" @@ -3988,7 +3955,7 @@ msgstr "Valintaikkuna: säädä, kuka voi olla vuorovaikutuksessa tämän julkai msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Himmeä" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Poissa käytöstä" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Hylkää" msgid "Discard changes?" msgstr "Hylätäänkö muutokset?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Hylätäänkö luonnos?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Hylätäänkö julkaisu?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Kiellä sovelluksia näyttämästä tiliäni kirjautumattomille käyttäjille" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Kiellä sovelluksia näyttämästä tiliäni kirjautumattomille käyttä msgid "Discover new custom feeds" msgstr "Löydä uusia mukautettuja syötteitä" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Löydä uusia syötteitä" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Hylkää" @@ -4103,19 +4070,19 @@ msgstr "Hylkää" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Hylkää virhe" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Hylkää aloitusopas" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Näytä suuremmat tekstivastineen merkit" msgid "Display name" msgstr "Näyttönimi" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Valmis" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Kaksoisnapauta sulkeaksesi valintaikkunan" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Muokkaa kuvaa" msgid "Edit interaction settings" msgstr "Muokkaa vuorovaikutusasetuksia" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Muokkaa syötteitäni" @@ -4406,6 +4374,11 @@ msgstr "Muokkaa syötteitäni" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Muokkaa käyttäjiä" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Muokkaa, kuka voi vastata" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Muokkaa aloituspakettiasi" @@ -4500,8 +4473,8 @@ msgstr "Upotuksen HTML-koodi" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Upota julkaisu" @@ -4509,7 +4482,7 @@ msgstr "Upota julkaisu" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Upota tämä julkaisu verkkosivustollesi. Kopioi vain seuraava koodinpätkä ja liitä se sivustosi HTML-koodiin." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Upotettu videosoitin" @@ -4533,7 +4506,7 @@ msgstr "Ota aikuissisältö käyttöön" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Ota ulkoinen media käyttöön" msgid "Enable media players for" msgstr "Ota mediatoistimet käyttöön palveluille" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "Käytössä" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Syötteen loppu" @@ -4608,7 +4582,7 @@ msgstr "Syötä sana tai tunniste" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Siirry koko näytön tilaan" @@ -4650,11 +4624,11 @@ msgstr "Syötä käyttäjätunnuksesi ja salasanasi" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Virhe" @@ -4684,7 +4658,7 @@ msgstr "Tiedostoa tallennettaessa tapahtui virhe" msgid "Error receiving captcha response." msgstr "Virhe captcha-vastauksen vastaanottamisessa." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "Kaikki voivat vastata" msgid "Everybody can reply to this post." msgstr "Kaikki voivat vastata tähän julkaisuun." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Kaikilta" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Kaikilta" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "Sulje pois seuraamasi käyttäjät" msgid "Excludes users you follow" msgstr "Sulkee pois seuraamasi käyttäjät" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Poistu koko näytön tilasta" @@ -4755,11 +4729,11 @@ msgstr "Laajenna käyttäjäluettelo" msgid "Expand or collapse the full post you are replying to" msgstr "Laajenna tai pienennä julkaisu, johon olit vastaamassa" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "Siveetön tai mahdollisesti häiritsevä media." msgid "Explicit sexual images." msgstr "Siveettömän seksuaaliset kuvat." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "Ulkoinen media" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Ulkoinen media voi mahdollistaa verkkosivustoille tietojenkeruun sinusta ja laitteestasi. Tietoja ei lähetetä eikä pyydetä, ellet paina ”toista”-painiketta." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Ulkoisten median asetukset" @@ -4886,7 +4860,7 @@ msgstr "Käyttäjätunnuksen vaihtaminen epäonnistui. Yritä uudelleen." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Syötteiden asetusten lataaminen epäonnistui" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Ehdotettujen syötteiden lataaminen epäonnistui" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Ehdotettujen seurattavien lataaminen epäonnistui" @@ -5027,12 +5002,12 @@ msgstr "Ehdotettujen seurattavien lataaminen epäonnistui" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Syöte" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Syötteen valikko" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Syötteet päivitetty!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Syötteet, joista uskomme sinun pitävän." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "Tiedosto tallennettu onnistuneesti!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Etsi tilejä seurattavaksi" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Seuraa tiliä {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "Seuraa 10:tä tiliä" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Seuraa 7:ää tiliä" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Tuntemasi käyttäjän @{0} seuraajat" @@ -5544,7 +5515,7 @@ msgstr "Tuntemasi seuraajat" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Seurataan käyttäjää {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "Seuratut-syötteen asetukset" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Seuratut-syötteen asetukset" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Seuraa sinua" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fontti" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Fonttikoko" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Turvallisuussyistä et voi tarkastella tätä enää uudelleen. Jos kadotat sovellussalasanan, sinun on luotava uusi." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Parhaan käyttökokemuksen saavuttamiseksi suosittelemme käyttämään teemafonttia." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "Ikuinen" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Unohtuiko salasana?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "Syötteestä <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generoi aloituspaketti" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Näytä ohje" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Anna profiilillesi kasvot" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Aihetunniste" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Ongelmia?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Ohje" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Auta ihmisiä tietämään, ettet ole botti, lataamalla palveluun kuva tai luomalla profiilikuva." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "Piilotettu lista" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Piilotettu lista" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Piilota" @@ -6198,7 +6172,7 @@ msgstr "Piilota vastaus kaikilta" msgid "Hide reply for me" msgstr "Piilota vastaus minulta" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "Piilotetaanko tämä vastaus?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Piilota trendaavat aiheet" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Piilotetaanko trendaavat aiheet?" @@ -6240,7 +6214,7 @@ msgstr "Piilota käyttäjäluettelo" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "Hmm, emme pystyneet lataamaan tätä moderointipalvelua." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Odottakaa! Annamme vähitellen pääsyn videoon, ja olet yhä odotusjonossa. Tarkista tilanne pian uudelleen!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Jos haluat vaihtaa salasanasi, lähetämme sinulle koodin vahvistaaksemme, että tämä on tilisi." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Vain sinä olet nyt tässä! Lisää muita käyttäjiä aloituspakettiisi yllä olevalla haulla." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Työpaikan tunnus: {0}" @@ -6816,8 +6788,8 @@ msgstr "Liity keskusteluun" msgid "Journalism" msgstr "Journalismi" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Merkinnyt {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Tekijän merkitsemä." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Merkinnät" @@ -6852,7 +6824,7 @@ msgstr "Merkinnät lisätty" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Merkinnät ovat käyttäjiä ja sisältöä koskevia huomioita. Niitä voidaan käyttää verkoston piilottamiseen, varoittamiseen ja luokitteluun." @@ -6864,7 +6836,7 @@ msgstr "Tilisi merkinnät" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Kieliasetukset" @@ -6874,7 +6846,7 @@ msgstr "Kieliasetukset" msgid "Languages" msgstr "Kielet" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Suurempi" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Uusimmat" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Lue lisää" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Lue lisää PDS:n itse hostaamisesta." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Lue lisää tästä varoituksesta" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Lue lisää." @@ -6993,8 +6965,8 @@ msgstr "Poistu" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Poistutaan Blueskysta" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "jäljellä." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Anna minun valita" @@ -7057,7 +7029,7 @@ msgstr "Aloitetaan!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Vaalea" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Vaalea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Tykkää" @@ -7076,7 +7048,7 @@ msgstr "Tykkää" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Tykkää 10 julkaisusta" @@ -7085,7 +7057,7 @@ msgstr "Tykkää 10 julkaisusta" msgid "Like 10 posts to train the Discover feed" msgstr "Tykkää 10 julkaisusta kouluttaaksesi Discover-syötettä" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Tykkää tästä syötteestä" @@ -7093,8 +7065,8 @@ msgstr "Tykkää tästä syötteestä" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Tykänneet" @@ -7111,27 +7083,45 @@ msgstr "Tykänneet" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Tykännyt {0, plural, one {# käyttäjä} other {# käyttäjää}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Tykännyt {likeCount, plural, one {# käyttäjä} other {# käyttäjää}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Tykkäykset" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Tämän julkaisun tykkäykset" @@ -7144,7 +7134,7 @@ msgstr "Lineaarisesti" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listan mykistys poistettu" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Lue lisää" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Lataa lisää ehdotettuja syötteitä" @@ -7292,8 +7282,8 @@ msgstr "Lataa lisää ehdotettuja syötteitä" msgid "Load new notifications" msgstr "Lataa uusia ilmoituksia" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Loki" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Tee minulle sellainen" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Merkitse luetuksi" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media, joka voi olla häiritsevää tai sopimatonta joillekin yleisöille." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "mainitut käyttäjät" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Maininnat" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Viesti poistettu" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Viestit" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderointi" @@ -7636,7 +7630,7 @@ msgstr "Moderointilista päivitetty" msgid "Moderation lists" msgstr "Moderointilistat" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderointilistat" @@ -7645,7 +7639,7 @@ msgstr "Moderointilistat" msgid "moderation settings" msgstr "moderointiasetukset" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderointitilat" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Mykistetyt tilit" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Mykistetyt tilit" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Ei se mitään, luo minulle käyttäjätunnus" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Uusi" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Uusi chatti" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Uusi lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Uusi salasana" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Uusi julkaisu" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Uusimmat vastaukset ensin" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Uutiset" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Seuraava kuva" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Syötteitä ei löydy. Kokeile hakea jotain muuta." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ei vielä tykkäyksiä" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Et enää seuraa käyttäjää {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Ei vielä viestejä" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ei vielä lainauksia" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Ei tulosta" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Ei tuloksia" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "Tuloksia ei löytynyt" msgid "No results found for \"{query}\"" msgstr "Ei tuloksia haulle ”{query}”" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Ei kiitos" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Ei keneltäkään" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Kukaan ei ole vielä tykännyt tästä. Ehkä sinun pitäisi olla ensimmäinen!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Kukaan ei ole vielä lainannut tätä. Ehkä sinun pitäisi olla ensimmäinen!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Ei-seksuaalinen alastomuus" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Ei löydy" @@ -8333,7 +8330,7 @@ msgstr "Huomio jakamisesta" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Huomio: Bluesky on avoin ja julkinen verkosto. Tämä asetus rajoittaa vain sisältösi näkyvyyttä Bluesky-sovelluksessa ja -verkkosivustolla, eivätkä muut sovellukset välttämättä noudata tätä asetusta. Sisältösi voi silti näkyä kirjautumattomille käyttäjille muissa sovelluksissa ja muilla sivustoilla." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ilmoitusasetukset" @@ -8353,11 +8350,12 @@ msgstr "Ilmoitusasetukset" msgid "Notification sounds" msgstr "Ilmoitusasäänet" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Voi ei!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Selvä" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Käyttöönoton nollaus" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Ainakin yhdeltä GIF-animaatiolta puuttuu tekstivastine." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Ainakin yhdeltä kuvalta puuttuu tekstivastine." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Ainakin yhdeltä videolta puuttuu tekstivastine." @@ -8471,7 +8471,7 @@ msgstr "Vain {0} voi vastata." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Vain WebVTT (.vtt) -tiedostoja tuetaan" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Hups!" @@ -8544,7 +8544,7 @@ msgstr "Hups!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Avaa profiilikuvan luontityökalu" @@ -8570,21 +8570,22 @@ msgstr "Avaa keskustelun valinnat" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Avaa alavalikko" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Avaa emojinvalitsin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Avaa syötteen tietonäkymä" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Avaa syötteen valinnat" @@ -8627,7 +8628,7 @@ msgstr "Avaa moderoinnin vianetsintäsivu" msgid "Open muted words and tags settings" msgstr "Avaa mykistettyjen sanojen ja tunnisteiden asetukset" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "Avaa vienetsintäkirjauksen lisätiedot" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Avaa laitteen kameran" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Avaa vaiheet uuden Bluesky-tilin luomiseksi" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Avaa vaiheet olemassa olevaan Bluesky-tiliisi kirjautumiseksi" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Salasana päivitetty!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pysäytä" @@ -8925,12 +8926,12 @@ msgstr "Pysäytä" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pysäytä video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Käyttäjät" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Käyttäjät, joita @{0} seuraa" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Käyttäjät, jotka seuraavat tiliä @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Aikuisille tarkoitetut kuvat." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Kiinnitä syöte" @@ -9034,7 +9035,7 @@ msgstr "Kiinnitä syöte" msgid "Pin to home" msgstr "Kiinnitä kotinäkymään" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Kiinnitä kotinäkymään" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Kiinnitetty" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Kiinnitetty {0} kotinäkymään" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Kiinnitetty syötteisiisi" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Toista" @@ -9076,8 +9077,8 @@ msgstr "Toista {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Toista video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politiikka" @@ -9269,7 +9270,7 @@ msgstr "Politiikka" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Julkaise" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Julkaise" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Julkaise kaikki" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Julkaissut @{0}" @@ -9340,7 +9341,7 @@ msgstr "Piilottamasi julkaisu" msgid "Post interaction settings" msgstr "Julkaisun vuorovaikutusasetukset" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Julkaisu kiinnitetty" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Julkaisu irrotettu" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Julkaisut" @@ -9398,6 +9396,10 @@ msgstr "Julkaisuja voi mykistää tekstin, tunnisteiden tai kummankin perusteell msgid "Posts hidden" msgstr "Julkaisut piilotettu" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Yksityisyys" msgid "Privacy and security" msgstr "Yksityisyys ja turvallisuus" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Yksityisyys ja turvallisuus" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Tietosuojakäytäntö" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Käsitellään videota…" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Julkisia, jaettavia listoja käyttäjistä, joita voi mykistää tai estää massoittain." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Lainausjulkaisut poissa käytöstä" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Lainaukset" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Tämän julkaisun lainaukset" @@ -9647,7 +9650,7 @@ msgstr "Palauta tilisi käyttöön" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "Lue Blueskyn tietosuojakäytäntö" msgid "Read the Bluesky Terms of Service" msgstr "Lue Blueskyn käyttöehdot" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Suositellut" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Yhdistä uudelleen" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Lataa keskustelut uudelleen" @@ -9766,7 +9765,7 @@ msgstr "Lataa keskustelut uudelleen" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Poista" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Poista tili" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Poista syötteistäni" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Poistetaanko pikakäytöstä?" @@ -9862,7 +9861,7 @@ msgstr "Poistetaanko pikakäytöstä?" msgid "Remove from saved feeds" msgstr "Poista tallennetuista syötteistä" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Poista kuva" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Poistettu listasta" msgid "Removed from saved feeds" msgstr "Poistettu tallennetuista syötteistä" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Vastaukset" @@ -10037,7 +10037,7 @@ msgstr "Tähän julkaisuun vastaaminen on poissa käytöstä." msgid "Reply" msgstr "Vastaa" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Vastaa" @@ -10098,8 +10098,8 @@ msgstr "Ilmianna keskustelu" msgid "Report dialog" msgstr "Ilmiannon valintaikkuna" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Ilmianna syöte" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Uudelleenjulkaisit" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Tämän julkaisun uudelleenjulkaisut" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Palaa kotinäkymään" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Palaa edelliselle sivulle" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Tallenna muutokset" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Tallenna QR-koodi" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Tallenna syötteisiini" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Tallennetut syötteet" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Tallennettu syötteisiisi" @@ -10520,8 +10520,8 @@ msgstr "Tallennettu syötteisiisi" msgid "Say hello!" msgstr "Tervehdi!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Tiede" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Vieritä alkuun" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Haku" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Hae syötteitä, joita haluat ehdottaa toisille." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Hae GIF-animaatioita" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Katso Blueskyn työpaikat" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Kelauksen liukusäädin. Käytä nuolinäppäimiä eteen- ja taaksepäin kelaamiseen ja välilyöntiä toistamiseen tai pysäyttämiseen." #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Valitse väri" @@ -10764,11 +10769,11 @@ msgstr "Valitse tili" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Valitse profiilikuva" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Valitse emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Valitse GIF" msgid "Select GIF \"{0}\"" msgstr "Valitse GIF ”{0}”" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Valitse emoji {emojiName} profiikuvaksesi" @@ -10945,7 +10951,8 @@ msgstr "Lähetä viesti" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Lähetä julkaisu käyttäjälle…" @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Lähetä vahvistussähköpostiviesti" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Lähetä yksityisviestillä" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Asettaa sähköpostiosoitteen salasanan palautusta varten" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Asetukset" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Jaa kuitenkin" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Jaa linkki -valintaikkuna" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Jaa QR-koodi" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Jaa tämä syöte" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Jaa tämä aloituspaketti" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Jaa tämä aloituspaketti ja auta muita liittymään yhteisöösi Blueskyssa." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Jaettujen asetusten testeri" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Näytä" msgid "Show alt text" msgstr "Näytä tekstivastine" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Näytä silti" @@ -11274,9 +11281,9 @@ msgstr "Näytä lista silti" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Näytä lisää" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Näytä varoitus ja suodata syötteistä" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Kirjaudutaanko ulos?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Sisäänkirjautuminen vaaditaan" @@ -11469,7 +11476,7 @@ msgstr "Ohita" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Pienempi" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Jokin meni vikaan, yritä uudelleen" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "Jokin meni vikaan. Yritä uudelleen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Onko jokin vialla? Kerro meille." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Urheilu" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Aloita uusi chatti" @@ -11682,17 +11689,17 @@ msgstr "Ala lisätä käyttäjiä" msgid "Start adding people!" msgstr "Ala lisätä käyttäjiä!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Aloita chatti käyttäjän {displayName} kanssa" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Aloituspaketti" @@ -11715,12 +11722,16 @@ msgstr "Oma aloituspakettisi" msgid "Starter pack is invalid" msgstr "Aloituspaketti on virheellinen" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Aloituspaketit" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Aloituspakettien avulla voit jakaa helposti suosikkisyötteesi ja -käyttäjäsi kavareillesi." @@ -11728,7 +11739,7 @@ msgstr "Aloituspakettien avulla voit jakaa helposti suosikkisyötteesi ja -käyt msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Tilasivu" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Vaihe {0}/{1}" @@ -11754,7 +11765,7 @@ msgstr "Tallennustila tyhjennetty. Sinun on nyt käynnistettävä sovellus uudel msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Tilaa @{0} käyttääksesi näitä merkintöjä:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Järjestelmä" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Hylkää napauttamalla" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Tehtävä valmis – 10 seurattua!" msgid "Task complete - 10 likes!" msgstr "Tehtävä valmis – 10 tykkäystä!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Opeta algoritmillemme, mistä pidät" @@ -12060,7 +12073,7 @@ msgstr "Ehdot" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Tätä aloituspakettia ei löydy." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Siinä kaikki, ihmiset!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "Palvelin näyttää kärsivän ongelmista. Yritä hetken kuluttua uudell msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Aloituspaketti, jonka yritit näyttää, on virheellinen. Voit sen sijaan poistaa tämän aloituspaketin." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "Antamasi vahvistuskoodi on virheellinen. Varmista, että olet käyttäny msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Teema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Yhteydenotossa palvelimeen ilmeni ongelma" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Yhteydenotossa palvelimeen ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen." @@ -12283,8 +12296,8 @@ msgstr "Yhteydenotossa palvelimeen ilmeni ongelma. Tarkista internetyhteytesi ja msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ilmoitusten hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Julkaisujen hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen." @@ -12309,7 +12322,7 @@ msgstr "Palvelutietojesi hakemisessa ilmeni ongelma" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Tämän syötteen poistamisessa ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Nämä asetukset vaikuttavat vain Seuratut-syötteeseen." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Tämä {screenDescription} on liputettu:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Tämä tili on pyytänyt, että käyttäjät kirjautuvat sisään nähdäkseen profiilin." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tämä syöte on tyhjä! Sinun on ehkä seurattava useampia käyttäjiä tai säädettävä kieliasetuksiasi." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Tämä syöte on tyhjä." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Tämä käyttäjätunnus on varattu. Kokeile toista." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Tämä merkintä on itse asettamasi." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Tämä merkitsijä ei ole ilmoittanut, mitä merkintöjä se julkaisee, eikä välttämättä ole aktiivinen." @@ -12621,13 +12634,13 @@ msgstr "Tämä lista on tyhjä." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Tämä julkaisu väittää olevansa luotu <0>{0}, mutta ensi kerran se on nähty Blueskyssa <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Tämä julkaisu väittää olevansa luotu <0>{0}, mutta ensi kerran msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Tämä julkaisu piilotetaan syötteistä ja ketjuista. Tätä ei voi kumota." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Tämän julkaisun tekijä on poistanut lainausjulkaisut käytöstä." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Tällä käyttäjällä ei ole yhtään seuraajaa." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Tämä käyttäjä on estänyt sinut. Et voi nähdä hänen sisältöään." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Tämä käyttäjä on listassa <0>{0}, jonka olet mykistänyt." msgid "This user is new here. Press for more info about when they joined." msgstr "Tämä käyttäjä on uusi täällä. Paina tätä nähdäksesi, milloin hän liittyi." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Tämä käyttäjä ei seuraa ketään." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Tämä poistaa tilin @{0} pikakäyttöluettelosta." @@ -12786,7 +12801,7 @@ msgstr "Ketjun asetukset" msgid "Threaded" msgstr "Ketjuna" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Ketjujen asetukset" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Suosituimmat" @@ -12858,7 +12873,7 @@ msgstr "Suosituimmat" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Aihe" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Trendaavat" @@ -12902,7 +12919,7 @@ msgstr "Trendaavat" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Poistetaanko tilin esto?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Lopeta käyttäjän {0} seuraaminen" msgid "Unfollow account" msgstr "Lopeta tilin seuraaminen" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Älä tykkää" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Poista ketjun mykistys" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Poista videon mykistys" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Irrota" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Irrota syöte" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Irrota kotinäkymästä" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Irrota moderointilista" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Irrotettu {0} kotinäkymästä" @@ -13258,11 +13277,11 @@ msgstr "Peruuta merkitsijän tilaus" msgid "Unsubscribed from list" msgstr "Listan tilaus peruutettu" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Vastauksen näkyvyyden päivittäminen epäonnistui" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Lataa palveluun sen sijaan kuva" @@ -13355,7 +13374,7 @@ msgstr "Lataa tiedostoista" msgid "Upload from Library" msgstr "Lataa kirjastosta" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Ladataan kuvia palveluun…" msgid "Uploading link thumbnail..." msgstr "Ladataan linkin pikkukuvaa palveluun…" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Ladataan videota palveluun…" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "" msgid "Video failed to process" msgstr "Videon käsitteleminen epäonnistui" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videopelit" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Videota ei löydy." @@ -13653,7 +13672,7 @@ msgstr "Videota ei löydy." msgid "Video settings" msgstr "Videon asetukset" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video ladattu palveluun" @@ -13662,17 +13681,17 @@ msgstr "Video ladattu palveluun" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videot" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Näytä käyttäjän {0} profiilikuva" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Näytä käyttäjän {0} profiili" @@ -13724,13 +13743,13 @@ msgstr "Katso blogijulkaisu saadaksesi lisätietoja" msgid "View debug entry" msgstr "Näytä vianetsintäkirjaus" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Näytä lisätietoja" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Näytä koko ketju" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Näytä käyttäjän @{0} tarjoama merkintäpalvelu" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Näytä tästä syötteestä tykänneet käyttäjät" @@ -13831,7 +13850,7 @@ msgstr "Näytä moderointilistasi" msgid "View your muted accounts" msgstr "Näytä mykistämäsi tilit" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Meillä on verkko-ongelmia, yritä uudelleen" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Pahoittelemme, mutta emme onnistuneet resolvoimaan tätä listaa. Jos t msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Pahoittelut, mutta emme tällä kertaa onnistuneet lataamaan mykistettyjä sanojasi. Yritä uudelleen." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Pahoittelut! Julkaisu, johon olet vastaamassa, on poistettu." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Mitä kuuluu?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Hupsista!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Kirjoita julkaisu" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Kirjoita vastauksesi" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Sinun ei ole mahdollista ladata videoita palveluun." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Voit nyt kirjautua sisään uudella salasanallasi." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Voit päivittää tämän myöhemmin asetuksistasi." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Olet väliaikaisesti saavuttanut videolatausten rajoituksen. Yritä myöhemmin uudelleen." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Et ole luonut vielä aloituspakettia!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Voit lisätä enintään 3 syötettä" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Sinun on seurattava ainakin seitsemää muuta käyttäjää, jotta voit luoda aloituspaketin." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Alat seurata ehdotettuja käyttäjiä ja syötteitä, kun olet saanut tilisi luomisen valmiiksi!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Alat seurata ehdotettuja käyttäjiä, kun olet saanut tilisi luomisen valmiiksi!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Olet päässyt syötteesi loppuun! Etsi lisää tilejä seurattavaksi." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian mont msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian monta videota)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Tilisi" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tilisi ei ole riittävän vanha videoiden lataamiseksi palveluun. Yritä myöhemmin uudelleen." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "Profiilisi, julkaisusi, syötteesi ja listasi eivät enää näy muille Blueskyn käyttäjille. Voit palauttaa tilisi käyttöön milloin tahansa kirjautumalla sisään." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/fr-CA/messages.po b/src/locale/locales/fr-CA/messages.po new file mode 100644 index 0000000000..03ba3ccb3f --- /dev/null +++ b/src/locale/locales/fr-CA/messages.po @@ -0,0 +1,15041 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fr_CA\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2026-07-24 15:42\n" +"Last-Translator: \n" +"Language-Team: French, Canada\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: fr-CA\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. +#: src/components/InterestTabs.tsx:333 +msgid "\"{interestsDisplayName}\" category (active)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:902 +msgid "(blocked message hidden)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/getMessageInfo.ts:123 +#: src/components/dms/replyPreview.ts:85 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:105 +msgid "(contains embedded content)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:916 +msgid "(deleted message)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:68 +msgid "(disabled chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:77 +msgid "(invalid chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:910 +msgid "(message sent before you joined)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:74 +msgid "(no email)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:107 +msgid "(no text)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:99 +msgid "(quoted post)" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/LabelsOnMe.tsx:57 +msgid "{0, plural, one {# account label} other {# account labels}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#. placeholder {0}: profile.followersCount ?? 0 +#: src/screens/Profile/ProfileFollowers.tsx:33 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount ?? 0 +#: src/screens/Profile/ProfileFollows.tsx:33 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#. placeholder {0}: item.count +#: src/components/contacts/screens/ViewMatches.tsx:268 +msgid "{0, plural, one {# friend found!} other {# friends found!}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:157 +msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:164 +msgid "{0, plural, one {# label applied} other {# labels applied}}" +msgstr "" + +#. placeholder {0}: likeCount ?? 0 +#: src/screens/Post/PostLikedBy.tsx:34 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#. placeholder {0}: convo.details.memberCount +#: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 +msgid "{0, plural, one {# member} other {# members}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:224 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#. placeholder {0}: reactions.length +#. placeholder {1}: groupedReactions.map(g => g.value).join(' ') +#: src/components/dms/MessageItem.tsx:371 +msgid "{0, plural, one {# person} other {# people}} reacted – {1}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostQuotes.tsx:34 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostRepostedBy.tsx:34 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#. placeholder {0}: numUnreadMessages.numUnread ?? 0 +#. placeholder {0}: numUnreadNotifications ?? 0 +#: src/view/shell/bottom-bar/BottomBar.tsx:251 +#: src/view/shell/bottom-bar/BottomBar.tsx:283 +#: src/view/shell/Drawer.tsx:557 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes. +#. placeholder {0}: view.readingTime +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:251 +msgid "{0, plural, one {#m} other {#m}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#. placeholder {0}: draft.meta.replyCount +#: src/view/com/composer/drafts/DraftItem.tsx:143 +msgid "{0, plural, one {1 more post} other {# more posts}}" +msgstr "" + +#. placeholder {0}: profile.followersCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#. placeholder {0}: profile.postsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#. placeholder {0}: starterPack.joinedAllTimeCount || 0 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +msgid "{0, plural, other {# people have}} joined Bluesky via this starter pack!" +msgstr "" + +#. placeholder {0}: starterPack.list.listItemCount - 4 +#: src/components/dialogs/StarterPackDialog.tsx:362 +msgid "{0, plural, other {+# more}}" +msgstr "" + +#. placeholder {0}: aaRegionConfig.minAccessAge +#: src/screens/Signup/StepInfo/index.tsx:314 +msgid "{0, plural, other {You must be # years of age or older to create an account in your region.}}" +msgstr "" + +#. placeholder {0}: i18n.date(d, {timeStyle: ts}) +#. placeholder {1}: i18n.date(d, {dateStyle: 'medium'}) +#: src/lib/strings/time.ts:15 +msgctxt "date and time formatted like this: [time] · [date]" +msgid "{0} · {1}" +msgstr "" + +#. placeholder {0}: desc.name +#: src/components/moderation/ContentHider.tsx:98 +msgid "{0} (Account)" +msgstr "" + +#. Pattern: {wordValue} in tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:495 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:484 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 +msgid "{0} added to chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +msgid "{0} and {1} added to chat" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:724 +msgid "{0} is blocking you" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle) +#: src/features/liveNow/components/LiveStatusDialog.tsx:84 +msgid "{0} is live" +msgstr "" + +#. placeholder {0}: createFullHandle(draftValue, state.userDomain) +#: src/screens/Signup/StepHandle/index.tsx:211 +msgid "{0} is not available" +msgstr "" + +#. placeholder {0}: codeToLanguageName( expectedSourceLanguage, langPrefs.appLanguage, ) +#: src/lib/translation/index.tsx:314 +msgid "{0} is not supported by your device." +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:83 +msgid "{0} joined" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:84 +msgid "{0} joined the group" +msgstr "" + +#. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK) +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "{0} joined this week" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:96 +msgid "{0} left" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:97 +msgid "{0} left the group" +msgstr "" + +#. placeholder {0}: formatTime(currentTime) +#. placeholder {1}: formatTime(duration) +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#. placeholder {0}: state.name?.length +#: src/screens/StarterPack/Wizard/StepDetails.tsx:56 +msgid "{0} out of 50" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(memberSender) +#. placeholder {1}: reaction.value +#: src/components/dms/MessageItem.tsx:366 +msgid "{0} reacted {1}" +msgstr "" + +#. Accessibility hint for the bottom bar chat icon when the number of unread messages exceeds the cap, with the + symbol already included – for example, 99+ unread items +#. placeholder {0}: numUnreadMessages.numUnread +#: src/view/shell/bottom-bar/BottomBar.tsx:246 +msgid "{0} unread items" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:57 +msgid "{0} was added" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:58 +msgid "{0} was added to the group" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:70 +msgid "{0} was removed" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:71 +msgid "{0} was removed from the group" +msgstr "" + +#. List formatting: {0}, {1}, {2} +#. placeholder {0}: link(lang) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:113 +msgid "{0}, " +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 +msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {2}: feed.likeCount || 0 +#: src/view/com/feeds/FeedSourceCard.tsx:189 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#: src/view/com/feeds/FeedSourceCard.tsx:192 +msgid "{0}, a list by {1}" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 +msgid "{0}'s avatar" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/screens/Messages/JoinRequest.tsx:139 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {0}: preview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: joinLinkPreview.memberLimit +#. placeholder {2}: preview.memberLimit +#: src/components/dms/ChatInvite/Card.tsx:62 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. Badge showing the current image position out of the total number of images in a gallery. +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:532 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" + +#. Displayed when the number of requests exceeds the cap – for example, 99+ requests +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:55 +msgid "{0}+" +msgstr "" + +#. Displayed when the number of requests exceeds the cap +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:30 +msgid "{0}+ requests" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:38 +msgid "{count, plural, one {# chat update} other {# chat updates}}" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#: src/screens/Messages/components/InboxRequests.tsx:34 +msgid "{count, plural, one {# request} other {# requests}}" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:484 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:427 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + +#: src/components/dms/DateDivider.tsx:60 +msgid "{date} at {time}" +msgstr "" + +#: src/lib/generate-starterpack.ts:104 +#: src/screens/StarterPack/Wizard/index.tsx:189 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:219 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:225 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:170 +msgid "{filterCount, plural, one {+# filter} other {+# filters}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:361 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:395 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:304 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:500 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:473 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:328 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:524 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:419 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:448 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:373 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:350 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:407 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:316 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:512 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:485 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:340 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:431 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:460 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:354 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:388 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:297 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:493 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:466 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:321 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:517 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:412 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:441 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:359 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:349 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:393 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:302 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:498 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:471 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:326 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:522 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:417 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:446 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:1158 +msgid "{handle} can’t be added" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:459 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:1119 +msgid "{handle} can’t be messaged" +msgstr "" + +#: src/features/liveNow/utils.ts:40 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/features/liveNow/utils.ts:44 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/RequestStatus.tsx:69 +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:219 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:102 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:138 +msgid "{MAX_ALT_TEXT, plural, other {Alt text must be less than # characters.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:380 +msgid "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:329 +msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 +msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" +msgstr "" + +#. The number of group chat members out of the total number of permitted users. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" +msgstr "" + +#: src/features/liveNow/utils.ts:35 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:65 +msgid "{name} reacted {0} to {target}" +msgstr "" + +#. When the last message in a group chat came from someone other than you. +#: src/components/dms/getMessageInfo.ts:89 +msgid "{name}: {message}" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:76 +msgid "{name}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "{name}'s starter pack" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:457 +msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:115 +msgid "{profileName} joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:112 +msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 +msgid "{rank}." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 +msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:811 +msgid "{replierDisplayName} replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:810 +msgid "{replierDisplayName} replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:808 +msgid "{replierDisplayName} replied to you" +msgstr "" + +#. The number of requests to join a group chat. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 +msgid "{requestCount, plural, one {# request} other {# requests}}" +msgstr "" + +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 +msgid "{requestCount}+ requests" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:62 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:71 +msgid "{userName}'s verifications" +msgstr "" + +#. Number of images beyond the first 3 +#. placeholder {0}: labels.length +#. placeholder {0}: totalNumber - 3 +#: src/components/moderation/PostAlerts.tsx:163 +#: src/view/com/composer/ComposerReplyTo.tsx:278 +msgid "+{0}" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:258 +msgid "+{computedTotal}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:569 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[2]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) +#. placeholder {1}: profile?.followersCount || 0 +#: src/view/shell/Drawer.tsx:155 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) +#. placeholder {1}: profile?.followsCount || 0 +#: src/view/shell/Drawer.tsx:166 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.quoteCount) +#. placeholder {1}: post.quoteCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 +msgid "<0>{0} {1, plural, one {quote} other {quotes}}" +msgstr "" + +#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.repostCount) +#. placeholder {1}: post.repostCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 +msgid "<0>{0} {1, plural, one {repost} other {reposts}}" +msgstr "" + +#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.bookmarkCount) +#. placeholder {1}: post.bookmarkCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 +msgid "<0>{0} {1, plural, one {save} other {saves}}" +msgstr "" + +#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(likeCount) +#: src/screens/PostThread/components/LikesStat.tsx:44 +msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[1]) +#: src/screens/StarterPack/Wizard/index.tsx:503 +#: src/screens/StarterPack/Wizard/index.tsx:557 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:550 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/WhoCanReply.tsx:353 +msgid "<0>{0} members" +msgstr "" + +#. Text identifying the person who added you to a group chat +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 +msgid "<0>{displayName}<1/><2> added you" +msgstr "" + +#: src/screens/Hashtag.tsx:230 +#: src/screens/Search/SearchResults.tsx:412 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:250 +msgid "<0>Tap here to update your location with GPS." +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#: src/screens/StarterPack/Wizard/index.tsx:494 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/lib/strings/handles.ts:38 +#: src/screens/Profile/Header/Handle.tsx:58 +msgid "⚠Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:202 +#: src/components/dialogs/MutedWords.tsx:551 +#: src/components/dialogs/MutedWords.tsx:554 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:436 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:241 +#: src/components/dialogs/MutedWords.tsx:565 +#: src/components/dialogs/MutedWords.tsx:568 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:226 +#: src/components/dialogs/MutedWords.tsx:558 +#: src/components/dialogs/MutedWords.tsx:561 +msgid "7 days" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 +msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/components/dms/getReactionInfo.ts:53 +msgid "a message" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:102 +msgid "A network error occurred. Please check your internet connection" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:99 +#: src/components/contacts/screens/VerifyNumber.tsx:155 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 +msgid "A network error occurred. Please check your internet connection." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:143 +msgid "A new code has been sent" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "A new form of verification" +msgstr "" + +#: src/components/dms/MessageItem.tsx:821 +msgid "A reply to a message sent before you joined" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 +msgid "A screenshot of a post from @esb.lol, showing the user is currently livestreaming content on Twitch. The post reads: \"Hello! I'm live on Twitch, and I'm testing Bluesky's latest feature too!\"" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:121 +msgid "A screenshot of a post with a new button next to the share button that allows you to save the post to your bookmarks. The post is from @jcsalterego.bsky.social and reads \"inventing a saturday that immediately follows monday\"." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:114 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:98 +msgid "A screenshot of the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now!!!\"." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:483 +#: src/screens/Settings/AboutSettings.tsx:85 +#: src/screens/Settings/Settings.tsx:264 +#: src/screens/Settings/Settings.tsx:267 +msgid "About" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:100 +msgid "Abusive or discriminatory behavior" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:287 +msgid "Accept" +msgstr "" + +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 +msgid "Accept chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 +msgid "Accept Request" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:460 +msgid "Accept this language suggestion" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:119 +msgid "Access requested! The group owner will review your request." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:45 +#: src/screens/Settings/Settings.tsx:234 +#: src/screens/Settings/Settings.tsx:237 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:390 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/screens/Settings/AccountSettings.tsx:54 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: src/view/com/profile/ProfileMenu.tsx:182 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:198 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/lib/strings/errors.ts:33 +msgid "Account has been suspended" +msgstr "" + +#: src/lib/strings/errors.ts:36 +msgid "Account is deactivated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 +#: src/view/com/profile/ProfileMenu.tsx:152 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:123 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:646 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:681 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:87 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:169 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:213 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:139 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:100 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:214 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:337 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:388 +#: src/components/dms/AddMembersFlow.tsx:410 +msgid "Add" +msgstr "" + +#. placeholder {0}: 8 - items.length +#: src/screens/StarterPack/Wizard/index.tsx:605 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:63 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:103 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +msgid "Add a content warning" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:114 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:64 +#: src/screens/ProfileList/AboutSection.tsx:82 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/screens/Deactivated.tsx:184 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/GifAltText.tsx:217 +#: src/view/com/composer/photos/Gallery.tsx:201 +#: src/view/com/composer/photos/Gallery.tsx:236 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:115 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:584 +#: src/screens/Settings/Settings.tsx:587 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1607 +msgid "Add another post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2273 +msgid "Add another post to thread" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 +msgid "Add another search filter" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:170 +msgid "Add automation label to account" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:31 +msgid "Add emoji reaction" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 +msgid "Add filter" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:492 +msgid "Add group chat members" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:223 +msgid "Add image" +msgstr "" + +#. Accessibility label for button in composer to add images, a video, or a GIF to a post +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Add media to post" +msgstr "" + +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:72 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:106 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:125 +msgid "Add members" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 +msgid "Add more details (optional)" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:218 +#: src/screens/Settings/LanguageSettings.tsx:223 +msgid "Add more languages…" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:330 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:120 +msgid "Add muted words and tags" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/ProfileList/AboutSection.tsx:72 +#: src/screens/ProfileList/AboutSection.tsx:90 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:81 +msgid "Add people to list" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:56 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:100 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:538 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:40 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:419 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:350 +#: src/view/com/profile/ProfileMenu.tsx:353 +msgid "Add to lists" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:121 +msgid "Add to saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:184 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/com/profile/ProfileMenu.tsx:344 +msgid "Add to starter packs" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:178 +msgid "Add user to list" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:297 +msgid "Add your birthdate" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) +#: src/screens/Messages/ConversationSettings/Member.tsx:109 +msgid "Added by {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:114 +msgid "Added by invite link" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:125 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:221 +msgid "Added to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:274 +msgid "Added to starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:225 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:230 +msgid "Adding members to list..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:116 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:546 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Admin" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:155 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:66 +msgid "Adult content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:129 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:149 +#: src/view/com/composer/labels/LabelsBtn.tsx:123 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:412 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:134 +#: src/view/com/composer/labels/LabelsBtn.tsx:192 +msgid "Adult Content labels" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76 +msgid "Adult sexual abuse content" +msgstr "" + +#: src/screens/Moderation/index.tsx:457 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:72 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:82 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:185 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:449 +msgid "Age assurance only takes a few minutes." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 +msgid "alice@example.com" +msgstr "" + +#. the default tab in the interests tab bar +#: src/components/dms/ReactionsDialog.tsx:292 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 +#: src/view/screens/Notifications.tsx:86 +msgid "All" +msgstr "" + +#. Tab label showing the total count of reactions on a chat message. +#. placeholder {0}: tab.count +#: src/components/dms/ReactionsDialog.tsx:389 +msgid "All {0}" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:400 +msgid "All accounts have been followed!" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:144 +msgid "All friends followed!" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:255 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 +msgid "All languages" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:189 +msgid "All languages will be shown in your feeds." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:245 +msgid "All of these words" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "All posts" +msgstr "" + +#: src/view/screens/Feeds.tsx:700 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451 +msgid "Allow anyone to reply" +msgstr "" + +#: src/screens/Messages/Settings.tsx:156 +#: src/screens/Messages/Settings.tsx:171 +msgid "Allow direct messages from" +msgstr "" + +#: src/screens/Messages/Settings.tsx:202 +#: src/screens/Messages/Settings.tsx:224 +msgid "Allow group chat invites from" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:128 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:134 +msgid "Allow location access" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:53 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504 +msgid "Allow people you follow to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518 +msgid "Allow people you mention to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:636 +msgid "Allow quote posts" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:598 +msgid "Allow users in {0} to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490 +msgid "Allow your followers to reply" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:201 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:237 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:243 +msgid "Already have a code?" +msgstr "" + +#: src/components/WelcomeModal.tsx:189 +msgid "Already have an account?" +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Login/ChooseAccountForm.tsx:44 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:76 +#: src/components/images/AutoSizedImage.tsx:205 +#: src/components/images/Gallery/index.tsx:596 +#: src/components/images/ImageLayoutGridItem.tsx:135 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:211 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:55 +#: src/view/com/composer/GifAltText.tsx:160 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128 +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:59 +#: src/view/com/composer/videos/SubtitleDialog.tsx:110 +#: src/view/com/composer/videos/SubtitleDialog.tsx:114 +msgid "Alt text" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:83 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:105 +#: src/view/com/composer/photos/Gallery.tsx:130 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#. placeholder {0}: i18n.number(MAX_ALT_TEXT) +#: src/view/com/composer/GifAltText.tsx:185 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:149 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#. placeholder {0}: currentAccount?.email || '(no email)' +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:94 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#. Accessibility label for the dialog shown when the GIF picker hits an unexpected runtime error and falls back to its error boundary. +#: src/components/dialogs/LanguageSelectDialog.tsx:344 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:15 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:433 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:223 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:69 +msgid "An error occurred while fetching suggested accounts." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:183 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/ViewMatches.tsx:243 +msgid "An error occurred while hiding suggestion. {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:581 +msgid "An error occurred while loading your lists :/" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:104 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:54 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:82 +#: src/screens/StarterPack/StarterPackScreen.tsx:359 +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:485 +msgid "An error occurred while uploading the video. {message}" +msgstr "" + +#: src/view/com/composer/state/video.ts:477 +msgid "An error occurred while uploading the video. Please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/PhoneInput.tsx:120 +#: src/components/contacts/screens/VerifyNumber.tsx:131 +#: src/components/contacts/screens/VerifyNumber.tsx:184 +msgid "An error occurred. {0}" +msgstr "" + +#: src/components/contacts/components/HeroImage.tsx:28 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:79 +msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 +msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:111 +msgid "An illustration of the Bluesky app with a paper airplane flying out of it, representing inviting friends" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:86 +#: src/components/verification/VerifierDialog.tsx:88 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:198 +msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 +msgid "An issue occurred starting the chat, please try again." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:52 +#: src/components/ProfileCard.tsx:510 +#: src/components/ProfileCard.tsx:532 +#: src/view/com/notifications/NotificationFeedItem.tsx:798 +#: src/view/com/notifications/NotificationFeedItem.tsx:820 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +#: src/lib/moderation/useModerationCauseDescription.ts:145 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:374 +msgid "and" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:88 +msgid "Animal sexual abuse" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:130 +msgid "Animal welfare" +msgstr "" + +#: src/lib/interests.ts:52 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:85 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:39 +msgid "Announcing verification on Bluesky" +msgstr "" + +#. Placeholder text for a date picker +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 +msgid "Any date" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 +msgid "Anyone" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135 +msgid "Anyone can interact" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:356 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +msgid "Anyone can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +msgid "Anyone can request to join" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:112 +#: src/screens/Settings/ActivityPrivacySettings.tsx:117 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:478 +msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." +msgstr "" + +#: src/Navigation.tsx:491 +#: src/screens/Settings/AppIconSettings/index.tsx:65 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:107 +#: src/screens/Settings/LanguageSettings.tsx:123 +msgid "App language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:358 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:169 +#: src/components/moderation/LabelsOnMeDialog.tsx:172 +#: src/components/moderation/ModerationDetailsDialog.tsx:223 +msgid "Appeal" +msgstr "" + +#. placeholder {0}: strings.name +#: src/components/moderation/AppealForm.tsx:93 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:159 +msgid "Appeal label" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 +msgid "Appeal livestream suspension" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:83 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 +#: src/screens/Messages/components/ChatDisabled.tsx:125 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:114 +#: src/screens/Takendown.tsx:140 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:117 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:76 +#: src/screens/Messages/components/ChatDisabled.tsx:79 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:135 +msgid "Appeal this decision" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:219 +msgid "Appeal this label" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 +#: src/screens/Settings/Settings.tsx:226 +#: src/screens/Settings/Settings.tsx:229 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:52 +#: src/screens/Home/NoFeedsPinned.tsx:94 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:515 +#: src/screens/Settings/Settings.tsx:517 +msgid "Apply Pull Request" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt, 'medium') +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:327 +msgid "Are you really, really sure?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#. placeholder {1}: link(languages[1]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 +msgid "Are you searching for posts in {0} or {1}?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 +msgid "Are you searching for posts in {0}?" +msgstr "" + +#. List formatting: {0}, {1}, or {2} +#. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) +#. placeholder {1}: link(last) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 +msgid "Are you searching for posts in {0}or {1}?" +msgstr "" + +#. placeholder {0}: appPassword.name +#: src/screens/Settings/AppPasswords.tsx:210 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:684 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:99 +#: src/screens/Profile/Header/EditProfileDialog.tsx:77 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:128 +#: src/screens/Messages/ConversationSettings/prompts.tsx:152 +msgid "Are you sure you want to leave {groupName}?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:57 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:56 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants." +msgstr "" + +#: src/components/FeedCard.tsx:374 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:116 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:452 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:349 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/lib/interests.ts:53 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:167 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:209 +msgid "At least 8 characters" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:338 +msgid "AT Protocol FAQ" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#: src/components/BotAccountAlert.tsx:32 +#: src/components/BotBadge.tsx:65 +msgid "Automated account" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:165 +#: src/screens/Login/components/HostingProviderDialog.tsx:167 +msgid "Automatic" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:155 +#: src/screens/Settings/AccountSettings.tsx:158 +msgid "Automation label" +msgstr "" + +#: src/Navigation.tsx:422 +#: src/screens/Settings/AutomationLabelSettings.tsx:103 +msgid "Automation Label" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:118 +#: src/screens/Settings/ContentAndMediaSettings.tsx:124 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:69 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:88 +msgid "Available" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:359 +#: src/components/dms/AddMembersFlow.tsx:527 +#: src/components/dms/AddMembersFlow.tsx:533 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 +#: src/components/moderation/AppealForm.tsx:145 +#: src/components/moderation/AppealForm.tsx:146 +#: src/screens/Login/ChooseAccountForm.tsx:96 +#: src/screens/Login/ChooseAccountForm.tsx:100 +#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:124 +#: src/screens/Login/LoginForm.tsx:511 +#: src/screens/Login/LoginForm.tsx:516 +#: src/screens/Login/SetNewPasswordForm.tsx:157 +#: src/screens/Login/SetNewPasswordForm.tsx:163 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:276 +#: src/screens/Messages/components/InviteLinkDialog.tsx:304 +#: src/screens/Messages/Inbox.tsx:233 +#: src/screens/Profile/Header/Shell.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:273 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:282 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:315 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:87 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:93 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:232 +msgid "Back to Chats" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:216 +msgid "Banned activities or security violations" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:227 +msgid "Banned user returning" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:184 +msgid "Based on your device's location, we think you're in <0>{geolocationString}." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236 +msgid "Based on your device's location, we think you're in <0>{region}." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:194 +msgid "Based on your network, we think you're in <0>{geolocationString}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 +msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/view/screens/Lists.tsx:35 +#: src/view/screens/ModerationModlists.tsx:35 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:72 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:260 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:56 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:155 +#: src/components/dms/MessageProfileButton.tsx:60 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:319 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:313 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 +msgid "Beta Feature" +msgstr "" + +#: src/Navigation.tsx:414 +#: src/screens/Settings/BetaFeaturesSettings.tsx:108 +#: src/screens/Settings/Settings.tsx:248 +#: src/screens/Settings/Settings.tsx:251 +msgid "Beta features" +msgstr "" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:144 +msgctxt "web" +msgid "Beta features may be unstable. Some changes may require reloading the app." +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:149 +msgctxt "native" +msgid "Beta features may be unstable. Some changes may require restarting the app." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:163 +msgid "Birthdate" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:145 +msgid "Birthday" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +msgid "Block" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 +msgid "Block {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/screens/Messages/components/RequestButtons.tsx:154 +#: src/screens/Messages/components/RequestButtons.tsx:156 +#: src/view/com/profile/ProfileMenu.tsx:464 +#: src/view/com/profile/ProfileMenu.tsx:471 +msgid "Block account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:148 +msgid "Block account?" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:91 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:94 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:148 +msgid "Block and delete" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:167 +msgctxt "button" +msgid "Block and leave" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:119 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 +msgid "Block or report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:114 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:221 +#: src/components/dms/AfterReportConversationDialog.tsx:224 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 +msgid "Block user" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:185 +msgid "Block user and/or delete this conversation" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:212 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:329 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:194 +#: src/view/screens/ModerationBlockedAccounts.tsx:95 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:163 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:181 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:204 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:116 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:157 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:176 +msgid "Blog" +msgstr "" + +#. Advanced search: Examples of hashtags +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:17 +msgid "bloomscrolling booksky" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:144 +#: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classic™" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:235 +msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:214 +#: src/screens/Login/components/HostingProviderDialog.tsx:236 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:162 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:115 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:43 +msgid "Bluesky is more fun with friends" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 +msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:315 +msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "" + +#: src/screens/Takendown.tsx:213 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:570 +msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:100 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:97 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:100 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:54 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/lib/interests.ts:54 +msgid "Books" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 +msgid "Breaking site rules" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:167 +#: src/view/com/feeds/ProfileFeedgens.tsx:168 +msgid "Browse custom feeds" +msgstr "" + +#: src/components/FeedInterstitials.tsx:535 +msgid "Browse more accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:665 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:646 +#: src/components/FeedInterstitials.tsx:649 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:674 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:104 +#: src/screens/Home/NoFeedsPinned.tsx:110 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:58 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:66 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:75 +msgid "Browse starter pack {displayName}" +msgstr "" + +#. placeholder {0}: trend.displayName +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:112 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:171 +msgid "Business" +msgstr "" + +#: src/screens/Bookmarks.tsx:295 +msgid "Button to go back to the home timeline" +msgstr "" + +#. The owner (creator) of a group chat. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile( joinLinkPreview.owner, moderationOpts, ).ui('displayName'), ) +#. placeholder {0}: sanitizeHandle(handle, '@') +#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@') +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:177 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 +msgid "By {0}" +msgstr "" + +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') +#: src/components/intents/GroupChatJoinDialog.tsx:379 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 +msgid "By <0>{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:84 +msgid "By <0>{ownerDisplayName}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:297 +msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:76 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:43 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:63 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:111 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 +msgid "Camera" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 +#: src/components/contacts/screens/GetContacts.tsx:292 +#: src/components/contacts/screens/GetContacts.tsx:297 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128 +#: src/components/dialogs/InAppBrowserConsent.tsx:99 +#: src/components/dialogs/InAppBrowserConsent.tsx:105 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:291 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:299 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 +#: src/components/Menu/index.tsx:373 +#: src/components/moderation/BlockDialog.tsx:204 +#: src/components/PostControls/RepostButton.tsx:210 +#: src/components/Prompt.tsx:152 +#: src/components/Prompt.tsx:154 +#: src/components/SendErrorReportDialog.tsx:98 +#: src/components/SendErrorReportDialog.tsx:102 +#: src/features/liveNow/components/GoLiveDialog.tsx:254 +#: src/features/liveNow/components/GoLiveDialog.tsx:260 +#: src/lib/media/picker.tsx:38 +#: src/screens/Deactivated.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:108 +#: src/screens/Messages/ConversationSettings/prompts.tsx:132 +#: src/screens/Messages/ConversationSettings/prompts.tsx:156 +#: src/screens/Messages/ConversationSettings/prompts.tsx:180 +#: src/screens/Profile/Header/EditProfileDialog.tsx:215 +#: src/screens/Profile/Header/EditProfileDialog.tsx:223 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:202 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:209 +#: src/screens/Settings/AppIconSettings/index.tsx:42 +#: src/screens/Settings/AppIconSettings/index.tsx:228 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:143 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:152 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:80 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:87 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:248 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:254 +#: src/screens/Settings/Settings.tsx:309 +#: src/screens/Takendown.tsx:102 +#: src/screens/Takendown.tsx:105 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:44 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:53 +#: src/view/shell/desktop/LeftNav.tsx:228 +msgid "Cancel" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:205 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:144 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Messages/components/MessageInputReply.tsx:83 +msgid "Cancel reply" +msgstr "" + +#: src/screens/Search/Shell.tsx:592 +msgid "Cancel search" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 +msgid "Cancels signing in so you can check your username" +msgstr "" + +#: src/components/PostControls/index.tsx:108 +#: src/components/PostControls/index.tsx:138 +#: src/components/PostControls/index.tsx:166 +#: src/state/shell/composer/index.tsx:105 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:156 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:57 +msgid "Captions & alt text" +msgstr "" + +#: src/components/images/Gallery/index.tsx:273 +msgid "carousel" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Cashtag {tag}" +msgstr "" + +#. Advanced search: Example of an “all of these words” search. Paired with “cows pigs”. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 +msgid "cats dogs" +msgstr "" + +#: src/components/Post/Translated/index.tsx:439 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:37 +msgid "Change app icon" +msgstr "" + +#. placeholder {0}: icon.name +#. placeholder {0}: next.name +#: src/screens/Settings/AppIconSettings/index.tsx:36 +#: src/screens/Settings/AppIconSettings/index.tsx:224 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:41 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:96 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:100 +msgid "Change Handle" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:644 +msgid "Change hosting provider" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:445 +msgid "Change moderation service" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:262 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:268 +msgid "Change password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:165 +msgid "Change password dialog" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:312 +msgid "Change report category" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:390 +msgid "Change report reason" +msgstr "" + +#: src/components/Post/Translated/index.tsx:424 +msgid "Change the source language" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:58 +msgid "Change your password" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:219 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:50 +#: src/components/forms/HostingProvider.tsx:70 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:179 +msgid "Changes saved" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:164 +msgid "Changes to the starter pack will not be reflected in the list after creation. The list will be an independent copy." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/Navigation.tsx:509 +#: src/view/shell/bottom-bar/BottomBar.tsx:242 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:108 +msgid "Chat ended" +msgstr "" + +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:269 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:104 +msgid "Chat locked" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:146 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:137 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:206 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 +msgid "Chat not found." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 +msgid "Chat options" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:290 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:529 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:62 +#: src/screens/Messages/Inbox.tsx:97 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 +#: src/screens/Messages/Settings.tsx:48 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:147 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:115 +msgid "Chat title changed" +msgstr "" + +#. placeholder {0}: data.newName +#: src/components/dms/getSystemMessageInfo.ts:114 +msgid "Chat title changed to {0}" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:106 +msgid "Chat unlocked" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:208 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 +msgid "Chats" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:233 +msgid "Check <0>{currentEmail} for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:182 +msgid "Check back later!" +msgstr "" + +#: src/screens/SignupQueued.tsx:79 +#: src/screens/SignupQueued.tsx:83 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:463 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:161 +msgid "Child safety" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:165 +msgid "Child Sexual Abuse Material (CSAM)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:401 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:205 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 +msgid "Choose for me" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:199 +msgid "Choose languages" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Choose People" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:75 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:136 +msgid "Choose post languages" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +msgid "Choose who can join this group chat and how." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:57 +msgid "Choose who to invite" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:134 +#: src/screens/Login/components/HostingProviderDialog.tsx:155 +msgid "Choose your hosting provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:726 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:271 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:201 +msgid "Choose your username" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.native.tsx:73 +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.tsx:110 +#: src/screens/Search/components/AdvancedSearchDialog/ClearableInput.tsx:59 +msgid "Clear" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:70 +msgid "Clear date" +msgstr "" + +#. Accessibility label for the X button inside the search input that clears the typed query and returns to the trending feed. +#: src/features/gifPicker/components/GifPickerHeader.tsx:67 +msgid "Clear GIF search" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +#: src/screens/Settings/AboutSettings.tsx:138 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:87 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:88 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:35 +msgid "click here" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +msgid "Click here to add people to this group chat" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +msgid "Click here to create or manage an invite link for this group chat" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:327 +msgid "Click here to delete your account" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:318 +msgid "Click here to log out" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:263 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:272 +msgid "Click here to resend the email" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:119 +#: src/ageAssurance/components/NoAccessScreen.tsx:294 +msgid "Click here to update your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 +msgid "Click here to update your email" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +msgid "Click here to view the invite link for this group chat" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:56 +msgid "Click to open tag menu for {0}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:643 +msgid "Click to retry failed message" +msgstr "" + +#. Visible label of the button that dismisses the GIF picker error dialog. +#: src/ageAssurance/components/RedirectOverlay.tsx:265 +#: src/ageAssurance/components/RedirectOverlay.tsx:271 +#: src/ageAssurance/components/RedirectOverlay.tsx:321 +#: src/ageAssurance/components/RedirectOverlay.tsx:327 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:174 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:180 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 +#: src/components/AltBadgeWithDialog.tsx:88 +#: src/components/dialogs/LanguageSelectDialog.tsx:359 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:147 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200 +#: src/components/dialogs/SearchablePeopleList.tsx:340 +#: src/components/dialogs/StarterPackDialog.tsx:187 +#: src/components/dms/AddMembersFlow.tsx:384 +#: src/components/dms/AfterReportConversationDialog.tsx:91 +#: src/components/dms/AfterReportConversationDialog.tsx:96 +#: src/components/dms/AfterReportConversationDialog.tsx:247 +#: src/components/dms/AfterReportConversationDialog.tsx:252 +#: src/components/dms/AfterReportDialog.tsx:94 +#: src/components/dms/AfterReportDialog.tsx:99 +#: src/components/dms/AfterReportDialog.tsx:212 +#: src/components/dms/AfterReportDialog.tsx:217 +#: src/components/dms/EmojiPopup.android.tsx:59 +#: src/components/dms/InitiateChatFlow.tsx:670 +#: src/components/intents/GroupChatJoinDialog.tsx:246 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +#: src/components/NewskieDialog.tsx:169 +#: src/components/NewskieDialog.tsx:175 +#: src/components/ProgressGuide/FollowDialog.tsx:462 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128 +#: src/components/verification/VerificationsDialog.tsx:146 +#: src/components/verification/VerifierDialog.tsx:147 +#: src/components/WhoCanReply.tsx:236 +#: src/components/WhoCanReply.tsx:243 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45 +#: src/features/liveNow/components/EditLiveDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:524 +#: src/screens/Messages/components/InviteLinkDialog.tsx:529 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:288 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:293 +#: src/view/com/feeds/MissingFeed.tsx:211 +#: src/view/com/feeds/MissingFeed.tsx:218 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:30 +msgid "Close alert" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + +#. Accessibility label for the button that dismisses the GIF picker error dialog. +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:223 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:229 +#: src/components/dialogs/LanguageSelectDialog.tsx:221 +#: src/components/dialogs/LanguageSelectDialog.tsx:322 +#: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:102 +#: src/components/moderation/BlockDialog.tsx:201 +#: src/components/verification/VerificationsDialog.tsx:138 +#: src/components/verification/VerifierDialog.tsx:140 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:127 +msgid "Close drawer menu" +msgstr "" + +#: src/components/Lightbox/chrome/Header.tsx:47 +msgid "Close image" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:73 +#: src/components/Lightbox/Lightbox.web.tsx:334 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 +msgid "Close menu" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:239 +#: src/components/intents/GroupChatJoinDialog.tsx:240 +#: src/components/intents/GroupChatJoinDialog.tsx:276 +#: src/components/intents/GroupChatJoinDialog.tsx:277 +#: src/components/Menu/index.tsx:367 +msgid "Close this dialog" +msgstr "" + +#: src/components/WelcomeModal.tsx:214 +msgid "Close welcome modal" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1829 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:611 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:949 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:68 +msgid "Color" +msgstr "" + +#: src/components/dialogs/Embed.tsx:150 +#: src/screens/Settings/AppearanceSettings.tsx:79 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:147 +msgid "Color theme" +msgstr "" + +#: src/lib/interests.ts:55 +msgid "Comedy" +msgstr "" + +#: src/lib/interests.ts:56 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 +#: src/Navigation.tsx:348 +#: src/view/screens/CommunityGuidelines.tsx:28 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:329 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:203 +msgid "Complete the challenge" +msgstr "" + +#: src/lib/hotkeys/index.tsx:66 +#: src/view/com/feeds/ComposerPrompt.tsx:147 +#: src/view/shell/desktop/LeftNav.tsx:587 +msgid "Compose new post" +msgstr "" + +#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 +#: src/view/com/composer/Composer.tsx:1705 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:63 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2677 +msgid "Compressing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2679 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:254 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:211 +#: src/components/Prompt.tsx:214 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:186 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:189 +msgid "Confirm" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 +#: src/screens/Login/LoginForm.tsx:442 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:187 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:191 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:244 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:145 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:151 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:132 +msgid "Connecting to service..." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:542 +msgid "Connecting to service…" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:138 +#: src/screens/Login/LoginForm.tsx:548 +msgid "Connecting…" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Connection issue" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:404 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:128 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:31 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:109 +msgid "Contact our support team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 +msgid "Contact support" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 +#: src/screens/Settings/FindContactsSettings.tsx:164 +msgid "Contact sync is not available on this device, as the app is unable to access your contacts." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:526 +msgid "Contacts imported" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:499 +msgid "Contacts removed" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:53 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:206 +#: src/screens/Settings/Settings.tsx:209 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:362 +msgid "Content filters" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:177 +msgid "Content languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:83 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:192 +msgid "Content promoting or depicting self-harm" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/components/moderation/ScreenHider.tsx:98 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:46 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:61 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:93 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 +#: src/screens/Onboarding/StepInterests/index.tsx:93 +#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 +msgid "Continue" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:134 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 +msgid "Continue signing in" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:64 +msgid "Continue thread..." +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:598 +msgid "Continue to group name" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:90 +#: src/screens/Onboarding/StepProfile/index.tsx:298 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:63 +msgid "Conversation" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:321 +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:172 +#: src/components/dms/AfterReportConversationDialog.tsx:179 +msgctxt "toast" +msgid "Conversation left" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:169 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/screens/Search/Shell.tsx:512 +msgid "Copied link to clipboard" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:97 +#: src/components/PostControls/DiscoverDebug.tsx:36 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 +#: src/lib/sharing.ts:24 +#: src/lib/sharing.ts:42 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:197 +#: src/screens/Messages/components/CopyTextButton.tsx:71 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:145 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:256 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:266 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:501 +#: src/view/com/profile/ProfileMenu.tsx:504 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:186 +#: src/components/dialogs/Embed.tsx:202 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:504 +#: src/view/com/profile/ProfileMenu.tsx:510 +#: src/view/com/profile/ProfileMenu.tsx:513 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:436 +msgid "Copy host" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copy invite link" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:91 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:644 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:122 +msgid "Copy Link" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:164 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:290 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:637 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:198 +#: src/components/dms/MessageContextMenu.tsx:202 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:184 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:457 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 +#: src/Navigation.tsx:353 +#: src/view/screens/CopyrightPolicy.tsx:25 +msgid "Copyright Policy" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:80 +msgid "Could not capture QR code" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:134 +msgid "Could not connect to feed service" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:121 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:75 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 +msgid "Could not fetch post" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:183 +msgid "Could not find profile" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 +msgid "Could not follow all matches - please check your network connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 +msgid "Could not follow all matches. {0}" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:158 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 +msgid "Could not leave chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:282 +msgid "Could not leave chat." +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:72 +msgid "Could not load feed" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:27 +#: src/screens/ProfileList/index.tsx:80 +#: src/screens/ProfileList/index.tsx:102 +msgid "Could not load list" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 +msgid "Could not mute chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:308 +msgid "Could not remove member." +msgstr "" + +#. placeholder {0}: cleanError(error) +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:61 +msgid "Could not share – please try again" +msgstr "" + +#: src/state/queries/notifications/settings.ts:124 +msgid "Could not update notification settings" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/GetContacts.tsx:171 +msgid "Could not upload contacts. {0}" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:165 +msgid "Could not upload contacts. You need to re-verify your phone number to proceed" +msgstr "" + +#. Title of the error screen shown when the GIF provider request fails. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:51 +msgid "Couldn’t load GIFs" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:80 +msgid "Country code" +msgstr "" + +#. Advanced search: Example of a “none of these words” search. Paired with “cats dogs”. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 +msgid "cows pigs" +msgstr "" + +#. Text on button to create a new starter pack +#. Text on button to create a new starter pack +#: src/components/dialogs/StarterPackDialog.tsx:113 +#: src/components/dialogs/StarterPackDialog.tsx:210 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +msgid "Create" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:166 +#: src/view/com/lists/ProfileLists.tsx:167 +msgid "Create a list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:620 +msgid "Create a list from this starter pack" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 +msgid "Create a starter pack" +msgstr "" + +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 +msgid "Create a Starter Pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +msgid "Create a starter pack for me" +msgstr "" + +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 +#: src/screens/Messages/JoinRequest.tsx:310 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 +#: src/view/shell/bottom-bar/BottomBar.tsx:351 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/NavSignupCard.tsx:48 +#: src/view/shell/NavSignupCard.tsx:53 +msgid "Create account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:87 +#: src/components/dialogs/Signin.tsx:89 +#: src/screens/Hashtag.tsx:236 +#: src/screens/Search/SearchResults.tsx:418 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:314 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 +msgid "Create another" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:606 +msgid "Create group chat" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:180 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:188 +msgid "Create list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:626 +msgid "Create list from members" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:148 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:152 +msgid "Create list from starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:367 +msgid "Create moderation list" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:304 +#: src/view/com/auth/SplashScreen.tsx:89 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Create new account" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:554 +msgid "Create or modify an invite link for this group chat" +msgstr "" + +#. Accessibility label for button to create a moderation report for the selected option +#. placeholder {0}: option.title +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 +msgid "Create report for {0}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:108 +#: src/components/dialogs/StarterPackDialog.tsx:205 +msgid "Create starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:366 +msgid "Create user list" +msgstr "" + +#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', }) +#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', }) +#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', }) +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:509 +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:131 +msgid "Creator has been blocked" +msgstr "" + +#: src/lib/interests.ts:57 +msgid "Culture" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:188 +msgid "Current beta features" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:375 +msgid "Current chat" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:152 +#: src/components/dialogs/ServerInput.tsx:154 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:140 +msgid "Customization options" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:60 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:200 +msgid "Dangerous challenges or activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:204 +msgid "Dangerous substances or drug abuse" +msgstr "" + +#: src/components/dialogs/Embed.tsx:164 +#: src/components/dialogs/Embed.tsx:166 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:299 +msgid "Date of birth" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Day" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:177 +#: src/screens/Settings/AccountSettings.tsx:182 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:472 +msgid "Debug Moderation" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:469 +msgid "Decline this language suggestion" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84 +msgid "Deepfake adult content" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:73 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:184 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275 +#: src/screens/Settings/AppPasswords.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:715 +#: src/screens/StarterPack/StarterPackScreen.tsx:794 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:187 +#: src/screens/Settings/AccountSettings.tsx:192 +msgid "Delete account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:183 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:230 +msgid "Delete account “{currentHandle}”" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:208 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:479 +msgid "Delete chat declaration record" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:567 +msgid "Delete contacts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:151 +#: src/components/dms/AfterReportDialog.tsx:195 +#: src/components/dms/AfterReportDialog.tsx:198 +#: src/screens/Messages/components/RequestButtons.tsx:147 +#: src/screens/Messages/components/RequestButtons.tsx:149 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:212 +msgid "Delete for me" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:202 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:182 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:209 +msgid "Delete message for me" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:309 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1717 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:609 +#: src/screens/StarterPack/StarterPackScreen.tsx:785 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:681 +msgid "Delete starter pack?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:270 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:205 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 +msgid "Deleted Account" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:286 +msgid "Deleted by Plivo after verification" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:43 +#: src/view/com/feeds/MissingFeed.tsx:76 +#: src/view/com/feeds/MissingFeed.tsx:128 +#: src/view/com/feeds/MissingFeed.tsx:136 +msgid "Deleted list" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:453 +#: src/components/SendErrorReportDialog.tsx:78 +#: src/screens/Profile/Header/EditProfileDialog.tsx:360 +#: src/screens/Profile/Header/EditProfileDialog.tsx:367 +msgid "Description" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:82 +msgid "Description (1000 characters max)" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:156 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:124 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:158 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:152 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:291 +#: src/screens/Settings/Settings.tsx:294 +msgid "Developer options" +msgstr "" + +#: src/lib/translation/index.tsx:303 +msgid "Device failed to translate :(" +msgstr "" + +#: src/components/WhoCanReply.tsx:222 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 +msgid "Dialog: Set search filters" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:108 +msgid "Dim" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 +msgid "Disable" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 +msgid "Disable 2FA" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 +msgid "Disable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:90 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:90 +#: src/screens/Settings/AccessibilitySettings.tsx:95 +msgid "Disable haptic feedback" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +msgid "Disable link" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:628 +msgid "Disable quote posts of this post" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465 +msgid "Disable replies entirely" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 +msgid "Disable this invite link?" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:35 +#: src/lib/moderation/useLabelBehaviorDescription.ts:45 +#: src/lib/moderation/useLabelBehaviorDescription.ts:71 +#: src/screens/Moderation/index.tsx:402 +msgid "Disabled" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 +#: src/screens/Profile/Header/EditProfileDialog.tsx:79 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 +#: src/view/com/composer/drafts/DraftItem.tsx:242 +#: src/view/com/composer/drafts/DraftsButton.tsx:131 +msgid "Discard" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:98 +#: src/screens/Profile/Header/EditProfileDialog.tsx:76 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1495 +#: src/view/com/composer/drafts/DraftItem.tsx:239 +#: src/view/com/composer/drafts/DraftsButton.tsx:98 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 +msgid "Discard post?" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 +msgid "Disconnect Germ DM" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:88 +#: src/screens/Settings/components/PwiOptOut.tsx:92 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:64 +#: src/view/com/posts/FollowingEmptyState.tsx:69 +#: src/view/com/posts/FollowingEndOfFeed.tsx:65 +#: src/view/com/posts/FollowingEndOfFeed.tsx:70 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:723 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:398 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 +msgid "Dismiss" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:78 +msgid "Dismiss banner" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2598 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:80 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 +msgid "Dismiss interests" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 +msgid "Dismiss live event banner" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:90 +msgid "Dismiss this section" +msgstr "" + +#: src/components/FeedInterstitials.tsx:349 +msgid "Dismiss this suggestion" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:70 +#: src/screens/Settings/AccessibilitySettings.tsx:75 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:310 +#: src/screens/Profile/Header/EditProfileDialog.tsx:316 +msgid "Display name" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 +msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:405 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:407 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:525 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:269 +msgid "Don’t see a code? <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:26 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:73 +#: src/components/contacts/components/InviteInfo.tsx:79 +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:412 +#: src/components/dialogs/BirthDateSettings.tsx:193 +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200 +#: src/components/dialogs/LanguageSelectDialog.tsx:327 +#: src/components/dialogs/NotificationSettingsDialog.tsx:106 +#: src/components/dialogs/ServerInput.tsx:237 +#: src/components/dialogs/ServerInput.tsx:239 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 +#: src/components/forms/DateField/index.tsx:128 +#: src/components/forms/DateField/index.tsx:145 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:147 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:153 +#: src/lib/media/picker.tsx:37 +#: src/screens/Login/components/HostingProviderDialog.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:255 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 +#: src/view/com/composer/labels/LabelsBtn.tsx:219 +#: src/view/com/composer/labels/LabelsBtn.tsx:226 +#: src/view/com/composer/videos/SubtitleDialog.tsx:192 +#: src/view/com/composer/videos/SubtitleDialog.tsx:203 +msgid "Done" +msgstr "" + +#: src/components/dms/MessageItem.tsx:541 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:399 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1178 +msgid "Double tap to like" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:149 +msgid "Download chat data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:154 +msgctxt "button" +msgid "Download chat data" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 +msgid "Download image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +msgid "Doxxing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120 +#: src/view/com/composer/drafts/DraftsButton.tsx:70 +#: src/view/com/composer/drafts/DraftsButton.tsx:79 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:119 +msgid "Drafts" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:369 +msgid "Drop to add images" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:20 +msgid "Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:162 +msgid "Duration:" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Dusk" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:237 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:317 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:388 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:370 +msgid "e.g. Great Posters" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:371 +msgid "e.g. Spammers" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:374 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:375 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:196 +msgid "Eating disorders" +msgstr "" + +#: src/screens/Messages/components/EditTextButton.tsx:52 +#: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/Wizard/index.tsx:331 +#: src/screens/StarterPack/Wizard/index.tsx:336 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:215 +#: src/view/com/lists/ListMembers.tsx:220 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:116 +msgid "Edit Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:43 +#: src/screens/Messages/ConversationSettings/prompts.tsx:49 +msgid "Edit group name" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:86 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:90 +#: src/view/com/composer/photos/Gallery.tsx:218 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 +msgid "Edit interests" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 +msgid "Edit link settings" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:191 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:194 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:364 +#: src/view/com/profile/ProfileMenu.tsx:384 +msgid "Edit live status" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:364 +msgid "Edit moderation list" +msgstr "" + +#: src/Navigation.tsx:363 +#: src/view/screens/Feeds.tsx:511 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:544 +msgid "Edit name" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:116 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:266 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:265 +#: src/screens/Profile/Header/EditProfileDialog.tsx:271 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:330 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:332 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:596 +msgid "Edit starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:493 +#: src/screens/Messages/ConversationSettings/index.tsx:543 +msgid "Edit this group chat’s name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:363 +msgid "Edit user list" +msgstr "" + +#: src/components/WhoCanReply.tsx:116 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:565 +msgid "Edit your starter pack" +msgstr "" + +#: src/lib/interests.ts:59 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:145 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:65 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:90 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:99 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 +msgid "Email sent!" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:260 +msgid "Email sent! <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:183 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:74 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:178 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:105 +#: src/components/dialogs/Embed.tsx:109 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:96 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:389 +msgid "Enable adult content" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:117 +#: src/screens/Settings/BetaFeaturesSettings.tsx:124 +msgid "Enable beta features" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 +msgid "Enable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:80 +#: src/components/dialogs/EmbedConsent.tsx:86 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:53 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +#: src/view/screens/Storybook/Admonitions.tsx:76 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 +msgid "Enable push notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:629 +msgid "Enable quote posts of this post" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:90 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:134 +#: src/screens/Settings/ContentAndMediaSettings.tsx:148 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:155 +#: src/screens/Settings/ContentAndMediaSettings.tsx:169 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Moderation/index.tsx:400 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:135 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:182 +msgid "Ensure you have selected a language for each caption file." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:231 +msgid "Enter 6-digit code that was sent to your phone number" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:136 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:136 +#: src/components/dialogs/MutedWords.tsx:137 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:64 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 +msgid "Enter fullscreen" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:226 +msgid "Enter the 6-digit code sent to {prettyNumber}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:382 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:109 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:164 +msgid "Enter your birthdate" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:96 +#: src/screens/Signup/StepInfo/index.tsx:243 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:389 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:291 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2697 +#: src/view/com/util/error/ErrorScreen.tsx:40 +msgid "Error" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:95 +msgid "Error getting the latest data." +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:201 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +#: src/screens/Settings/components/ExportCarDialog.tsx:80 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:127 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:206 +msgid "Error: {error}" +msgstr "" + +#: src/components/WhoCanReply.tsx:85 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:279 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:93 +msgctxt "allow group chat invites from" +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:78 +msgctxt "allow messages from" +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 +msgid "Everything else" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 +msgid "Everything look right?" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:46 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:57 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 +msgid "Exclude" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:320 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:605 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 +msgid "Exit fullscreen" +msgstr "" + +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:612 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:103 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:31 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1054 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:490 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:127 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:520 +msgid "Expired" +msgstr "" + +#. placeholder {0}: formatDistance(expiryDate, new Date(), { addSuffix: true, }) +#: src/components/dialogs/MutedWords.tsx:589 +msgid "Expires {0}" +msgstr "" + +#. placeholder {0}: timeDiff(Date.now(), label.exp) +#. placeholder {0}: timeDiff(Date.now(), modcause.label.exp) +#: src/components/moderation/LabelsOnMeDialog.tsx:218 +#: src/components/moderation/ModerationDetailsDialog.tsx:294 +msgid "Expires in {0}" +msgstr "" + +#. placeholder {0}: displayDuration(i18n, minutesUntilExpiry) +#. placeholder {1}: i18n.date(expiryDateTime, { hour: 'numeric', minute: '2-digit', hour12: true, }) +#: src/features/liveNow/components/EditLiveDialog.tsx:125 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 +msgid "Explore" +msgstr "" + +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 +msgid "Explore the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:329 +#: src/screens/Messages/Settings.tsx:338 +#: src/screens/Settings/components/ExportCarDialog.tsx:130 +msgid "Export my chat data" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:168 +#: src/screens/Settings/AccountSettings.tsx:172 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:97 +msgid "Export my profile data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:86 +#: src/screens/Settings/ContentAndMediaSettings.tsx:89 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:44 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "" + +#: src/Navigation.tsx:382 +#: src/screens/Settings/ExternalMediaPreferences.tsx:35 +msgid "External Media Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:146 +msgid "Extremist content" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:244 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:92 +#: src/components/dms/MessageContextMenu.tsx:140 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 +msgid "Failed to add members" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:239 +msgid "Failed to add to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:280 +msgid "Failed to add to starter pack" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:605 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 +#: src/screens/Search/Shell.tsx:513 +msgid "Failed to copy link" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:38 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 +msgid "Failed to create invite link" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:250 +#: src/screens/StarterPack/Wizard/index.tsx:260 +msgid "Failed to create starter pack" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:112 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:754 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +msgid "Failed to disable invite link" +msgstr "" + +#. placeholder {0}: error?.message +#: src/screens/Profile/components/GermButton.tsx:196 +msgid "Failed to disconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:381 +msgid "Failed to edit group chat name" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 +msgid "Failed to edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 +msgid "Failed to enable invite link" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:143 +msgid "Failed to follow all suggested accounts, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:148 +msgid "Failed to follow all your friends, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:236 +msgid "Failed to hide suggestion, please check your internet connection" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Failed to join the group chat. Please try again." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:582 +msgid "Failed to launch SMS app" +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:41 +#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/screens/Messages/ConversationSettings/index.tsx:408 +msgctxt "toast" +msgid "Failed to leave group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:420 +#: src/screens/Messages/Inbox.tsx:202 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 +msgid "Failed to load feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:85 +#: src/screens/Messages/Settings.tsx:369 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:22 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:66 +msgid "Failed to load preference." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:292 +msgid "Failed to load profiles" +msgstr "" + +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:386 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:433 +msgid "Failed to lock group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:636 +#: src/view/shell/bottom-bar/BottomBar.tsx:447 +msgid "Failed to mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:645 +#: src/screens/Messages/Inbox.tsx:304 +#: src/view/shell/bottom-bar/BottomBar.tsx:456 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:397 +msgid "Failed to mute group chat" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#. placeholder {0}: e?.message +#: src/screens/Profile/components/GermButton.tsx:164 +msgid "Failed to reconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to reject join request" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:509 +msgid "Failed to remove data due to a network error, please check your internet connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:515 +msgid "Failed to remove data. {0}" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:77 +#: src/components/dms/MessageContextMenu.tsx:125 +#: src/components/dms/ReactionsDialog.tsx:179 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:258 +msgid "Failed to remove from list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:293 +msgid "Failed to remove from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 +msgid "Failed to remove group chat member" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:193 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 +msgid "Failed to resolve location. Please try again." +msgstr "" + +#: src/view/com/composer/Composer.tsx:731 +msgid "Failed to save draft" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:319 +msgid "Failed to save image" +msgstr "" + +#. placeholder {0}: String(e) +#: src/lib/media/save-image.ios.ts:27 +#: src/lib/media/save-image.ts:31 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:109 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:147 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:52 +msgid "Failed to send report" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:77 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 +#: src/screens/Messages/components/ChatDisabled.tsx:119 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:442 +msgid "Failed to unlock group chat" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 +msgid "Failed to unpin list" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:316 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:110 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:73 +#: src/lib/media/video/upload.web.ts:73 +#: src/lib/media/video/upload.web.ts:77 +#: src/lib/media/video/upload.web.ts:87 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:169 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:372 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +msgid "Fake account or bot" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +msgid "False information about elections" +msgstr "" + +#: src/Navigation.tsx:293 +msgid "Feed" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/components/FeedCard.tsx:170 +#: src/state/queries/feed.ts:127 +#: src/view/com/feeds/FeedSourceCard.tsx:151 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:153 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:190 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:74 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:109 +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/Drawer.tsx:427 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 +msgctxt "toast" +msgid "Feedback sent to feed operator" +msgstr "" + +#: src/Navigation.tsx:545 +#: src/screens/SavedFeeds.tsx:112 +#: src/screens/SavedFeeds.tsx:303 +#: src/screens/Search/SearchResults.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:196 +#: src/view/screens/Feeds.tsx:504 +#: src/view/screens/Profile.tsx:241 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 +msgid "Feeds" +msgstr "" + +#: src/screens/SavedFeeds.tsx:227 +#: src/screens/SavedFeeds.tsx:398 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide for more information." +msgstr "" + +#: src/components/FeedCard.tsx:313 +#: src/screens/SavedFeeds.tsx:92 +#: src/screens/SavedFeeds.tsx:271 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +#: src/screens/Settings/components/ExportCarDialog.tsx:76 +msgid "File saved successfully!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 +msgid "Filter by author" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 +msgid "Filter by author (currently: {currentLabel})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 +msgid "Filter by media" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 +msgid "Filter by media (currently: {currentLabel})" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:69 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 +msgid "Filter search by language" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#. placeholder {0}: lang.name +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 +msgid "Filter this search by {0}" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:106 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:78 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 +msgctxt "search" +msgid "Filters" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:335 +msgid "Finalizing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 +msgid "Finally!" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 +msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." +msgstr "" + +#: src/lib/interests.ts:60 +msgid "Finance" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:67 +#: src/view/com/posts/CustomFeedEmptyState.tsx:72 +#: src/view/com/posts/FollowingEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:49 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 +#: src/screens/Settings/Settings.tsx:217 +#: src/screens/Settings/Settings.tsx:220 +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 +msgid "Find Contacts" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:273 +#: src/components/contacts/screens/GetContacts.tsx:287 +msgid "Find my friends" +msgstr "" + +#. Starter packs suggested to the user for them to follow +#: src/components/ProgressGuide/FollowDialog.tsx:72 +#: src/components/ProgressGuide/FollowDialog.tsx:80 +#: src/components/ProgressGuide/FollowDialog.tsx:448 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:43 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + +#: src/screens/Search/Shell.tsx:765 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 +msgid "Find your friends" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 +#: src/screens/Settings/FindContactsSettings.tsx:133 +msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 +msgid "Find your people" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:281 +msgid "Finding friends..." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Finish" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/components/contacts/components/OTPInput.tsx:55 +msgid "Focus code input" +msgstr "" + +#: src/lib/hotkeys/index.tsx:73 +msgid "Focus the search field" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:548 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 +#: src/screens/VideoFeed/index.tsx:937 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397 +msgid "Follow {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:167 +msgid "Follow {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:916 +msgid "Follow {handle}" +msgstr "" + +#: src/state/shell/progress-guide.tsx:232 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:73 +msgid "Follow 10 people to get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:114 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:331 +msgid "Follow account" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:276 +#: src/components/contacts/screens/ViewMatches.tsx:291 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:294 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:162 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:169 +#: src/screens/Settings/FindContactsSettings.tsx:465 +#: src/screens/Settings/FindContactsSettings.tsx:475 +#: src/screens/StarterPack/StarterPackScreen.tsx:452 +#: src/screens/StarterPack/StarterPackScreen.tsx:460 +msgid "Follow all" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:291 +msgid "Follow all accounts" +msgstr "" + +#. User is not following this account, click to follow back +#: src/components/ProfileCard.tsx:544 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow back" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132 +msgid "Followed all accounts!" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:418 +msgid "Followed all matches" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#: src/components/KnownFollowers.tsx:233 +msgid "Followed by <0>{0}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: serverCount - 1 +#: src/components/KnownFollowers.tsx:219 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#: src/components/KnownFollowers.tsx:206 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#. placeholder {2}: serverCount - 2 +#: src/components/KnownFollowers.tsx:189 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:355 +msgid "Followers can join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:247 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:98 +#: src/screens/Profile/KnownFollowers.tsx:115 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:539 +#: src/components/ProfileHoverCard/index.web.tsx:494 +#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 +#: src/screens/VideoFeed/index.tsx:935 +#: src/view/com/notifications/NotificationFeedItem.tsx:842 +#: src/view/com/notifications/NotificationFeedItem.tsx:859 +msgid "Following" +msgstr "" + +#: src/screens/SavedFeeds.tsx:618 +#: src/view/screens/Feeds.tsx:596 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:500 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:791 +msgid "Following {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:66 +msgid "Following {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:915 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:78 +#: src/screens/Settings/ContentAndMediaSettings.tsx:81 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:369 +#: src/screens/Settings/FollowingFeedPreferences.tsx:57 +msgid "Following Feed Preferences" +msgstr "" + +#: src/components/Pills.tsx:213 +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:126 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:146 +msgid "Font size" +msgstr "" + +#: src/lib/interests.ts:61 +msgid "Food" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:106 +msgid "For organizational accounts, use the birthdate of the person who is responsible for the account." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:186 +msgid "For security reasons, we’ll need to send a confirmation code to your email address <0>{currentEmail}." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:208 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:128 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:131 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:187 +#: src/components/dialogs/MutedWords.tsx:572 +#: src/components/dialogs/MutedWords.tsx:575 +msgid "Forever" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 +msgid "Forget the noise" +msgstr "" + +#: src/screens/Login/index.tsx:176 +#: src/screens/Login/index.tsx:192 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:421 +#: src/screens/Login/LoginForm.tsx:428 +msgid "Forgot password?" +msgstr "" + +#. This is alt text for a marketing image which transcribes English text that appears in the image +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:153 +msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 +msgid "Free your feed" +msgstr "" + +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:123 +msgid "From {sanitizedAuthor}" +msgstr "" + +#: src/screens/Hashtag.tsx:124 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:48 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 +msgid "From these people" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +msgid "Generate a starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:277 +#: src/screens/Messages/components/InviteLinkDialog.tsx:305 +msgid "Generate invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 +msgid "Generate new invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 +msgid "Generate new link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:86 +#: src/screens/Profile/components/GermButton.tsx:225 +msgid "Germ DM" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:183 +msgid "Germ DM disconnected" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 +msgid "Germ DM Link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:160 +msgid "Germ DM reconnected" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:132 +msgid "Get early access to experimental features we’re testing." +msgstr "" + +#: src/view/shell/Drawer.tsx:431 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:389 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:316 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:366 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:340 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:348 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:332 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:357 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:375 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:33 +msgid "Get notifications when people send you message requests." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:23 +msgid "Get notifications when people send you messages." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:89 +#: src/components/activity-notifications/SubscribeProfileButton.tsx:90 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:233 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:84 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:219 +#: src/screens/Messages/components/InviteLinkDialog.tsx:226 +msgid "Get started" +msgstr "" + +#: src/components/MediaPreview.tsx:182 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:93 +msgid "GIF" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2702 +msgid "GIF uploaded" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:256 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:142 +msgid "Glorification of violence" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:127 +#: src/components/dialogs/LinkWarning.tsx:133 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 +#: src/screens/Login/components/AuthLayout/Header/index.tsx:74 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 +#: src/screens/ProfileList/components/ErrorScreen.tsx:35 +#: src/screens/ProfileList/components/ErrorScreen.tsx:41 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 +#: src/view/com/auth/LoggedOut.tsx:127 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:72 +#: src/screens/List/ListHiddenScreen.tsx:228 +#: src/screens/Profile/ErrorState.tsx:63 +#: src/screens/Profile/ErrorState.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:807 +msgid "Go Back" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:97 +#: src/screens/Onboarding/Layout.tsx:198 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "" + +#: src/screens/Bookmarks.tsx:296 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/view/com/profile/ProfileMenu.tsx:386 +msgid "Go live" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:106 +#: src/features/liveNow/components/GoLiveDialog.tsx:111 +#: src/features/liveNow/components/GoLiveDialog.tsx:239 +#: src/features/liveNow/components/GoLiveDialog.tsx:248 +msgid "Go Live" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:382 +msgid "Go live (disabled)" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:181 +msgid "Go live for" +msgstr "" + +#. placeholder {0}: name.displayName +#: src/screens/PostThread/components/LikesStat.tsx:146 +msgid "Go to {0}'s profile" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:256 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:93 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:73 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:82 +#: src/screens/Moderation/index.tsx:237 +msgid "Go to account settings" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Messages/components/ChatListItem.tsx:155 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:39 +msgid "Go to feed" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:168 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:194 +#: src/view/shell/desktop/LeftNav.tsx:336 +#: src/view/shell/desktop/LeftNav.tsx:342 +msgid "Go to profile" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:211 +msgid "Go to the group chat named \"{chatName}\"" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:258 +msgid "Go to user's profile" +msgstr "" + +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 +msgid "Go to user’s profile" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 +msgid "Going live is currently disabled for your account" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:121 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:126 +#: src/screens/Profile/components/GermButton.tsx:253 +#: src/screens/Profile/components/GermButton.tsx:258 +msgid "Got it" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:197 +#: src/view/com/composer/labels/LabelsBtn.tsx:200 +msgid "Graphic Media" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:138 +msgid "Graphic violent content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:169 +msgid "Grooming or predatory behavior" +msgstr "" + +#: src/components/dms/ChatInvite/Card.tsx:51 +#: src/components/intents/GroupChatJoinDialog.tsx:333 +#: src/screens/Messages/JoinRequest.tsx:125 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 +msgid "Group chat invite link dialog" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgctxt "toast" +msgid "Group chat locked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:389 +msgctxt "toast" +msgid "Group chat muted" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:376 +msgctxt "toast" +msgid "Group chat name updated" +msgstr "" + +#: src/Navigation.tsx:514 +#: src/screens/Messages/ConversationSettings/index.tsx:113 +msgid "Group chat settings" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:427 +msgctxt "toast" +msgid "Group chat unlocked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:392 +msgctxt "toast" +msgid "Group chat unmuted" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" + +#: src/screens/Messages/Settings.tsx:212 +msgid "Group chats are only available to users 18 and over." +msgstr "" + +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:205 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 +msgid "Group is locked" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 +#: src/screens/Messages/ConversationSettings/prompts.tsx:50 +msgid "Group name" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:730 +#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 +msgid "Hacking or system attacks" +msgstr "" + +#: src/state/shell/progress-guide.tsx:221 +#: src/state/shell/progress-guide.tsx:231 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:133 +#: src/screens/Settings/AccountSettings.tsx:138 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:609 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:197 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:613 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/components/FeedCard.tsx:156 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 +msgid "Happening now" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to happy/joyful GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:65 +msgid "Happy GIFs" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:86 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +msgid "Harassment or hate" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:189 +msgid "Harmful or high-risk activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:162 +msgid "Harming or endangering minors" +msgstr "" + +#: src/Navigation.tsx:498 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111 +msgid "Hate speech" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:323 +msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." +msgstr "" + +#: src/screens/Signup/index.tsx:246 +msgid "Having trouble?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:290 +msgid "Held by Bluesky for 7 days to prevent abuse, then deleted" +msgstr "" + +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:260 +#: src/view/shell/desktop/RightNav.tsx:130 +#: src/view/shell/desktop/RightNav.tsx:133 +#: src/view/shell/Drawer.tsx:440 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:259 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:74 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:120 +msgid "Hey there 👋" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:171 +msgid "Hey there!" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:276 +msgid "Hi there!" +msgstr "" + +#: src/components/VideoPostCard.tsx:178 +#: src/components/VideoPostCard.tsx:462 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:714 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:133 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:140 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 +#: src/lib/moderation/useLabelBehaviorDescription.ts:18 +#: src/lib/moderation/useLabelBehaviorDescription.ts:23 +#: src/lib/moderation/useLabelBehaviorDescription.ts:28 +#: src/lib/moderation/useLabelBehaviorDescription.ts:33 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:956 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:124 +msgid "Hide customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Hide group chat updates" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:533 +msgid "Hide lists" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Hide password" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 +msgid "Hide this reply?" +msgstr "" + +#: src/components/Post/Translated/index.tsx:216 +#: src/components/Post/Translated/index.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 +msgid "Hide translation" +msgstr "" + +#: src/components/interstitials/Trending.tsx:125 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:137 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:947 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:88 +#: src/screens/Moderation/VerificationSettings.tsx:97 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:168 +#: src/components/moderation/PostHider.tsx:94 +msgid "Hides the content" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:76 +msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:122 +msgid "Hmm, it seems we weren't able to compute your level of access. Please try again." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:141 +msgid "Hmm, it seems your device was unable to share age information with us." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:125 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:113 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:119 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:116 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:110 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:61 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:32 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:447 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 +#: src/view/shell/bottom-bar/BottomBar.tsx:196 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:430 +msgid "Host:" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:138 +#: src/screens/Login/components/HostingProviderDialog.tsx:159 +#: src/screens/Login/ForgotPasswordForm.tsx:80 +#: src/screens/Login/LoginForm.tsx:659 +msgid "Hosting provider" +msgstr "" + +#. placeholder {0}: toNiceHostingUrl(state.pdsUrl) +#: src/screens/Login/LoginForm.tsx:655 +msgid "Hosting provider: {0}" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:657 +msgid "Hosting provider: Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:54 +msgid "How it works:" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:63 +#: src/components/dialogs/InAppBrowserConsent.tsx:67 +msgid "How should we open this link?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:279 +msgid "How we use your number:" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:150 +msgid "Human trafficking" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:267 +msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out." +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:134 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:137 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:292 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:298 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:55 +msgid "I understand" +msgstr "" + +#. placeholder {0}: currentAccount.handle +#: src/components/contacts/screens/ViewMatches.tsx:578 +msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:246 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:235 +msgid "If none are selected, all languages will be shown in your feeds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:103 +msgid "If you are 18 years of age or older and want to try again, click the button below and use a different verification method if one is available in your region. If you have questions or concerns, <0>our support team can help." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:340 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:116 +msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:272 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:274 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:60 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 +#: src/view/screens/Storybook/Admonitions.tsx:90 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:210 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/images/ImageLayoutGridItem.tsx:91 +msgid "Image" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:457 +msgid "Image {0}" +msgstr "" + +#. placeholder {0}: index + 1 +#. placeholder {1}: imgs.length +#: src/components/Lightbox/Lightbox.web.tsx:261 +msgid "Image {0} of {1}" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:442 +msgid "Image {0} of {imageCount}" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:74 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#. placeholder {0}: i18n.number( Math.abs(sizeDiffBytes / 1024 / 1024), { notation: 'compact', style: 'unit', unit: 'megabyte', }, ) +#: src/screens/Settings/AboutSettings.tsx:60 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#. placeholder {0}: images.length +#: src/components/images/Gallery/index.tsx:274 +msgid "Image gallery, {0} images" +msgstr "" + +#. Image has been moderated and user has the option of showing it temporarily +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 +msgid "Image is hidden due to your moderation settings." +msgstr "" + +#. Image has been moderated and is not visible to the user +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 +msgid "Image is unavailable." +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:72 +#: src/components/Lightbox/Lightbox.web.tsx:265 +#: src/components/Lightbox/Lightbox.web.tsx:273 +msgid "Image options" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/lib/media/save-image.ios.ts:25 +#: src/lib/media/save-image.ts:29 +msgid "Image saved" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:82 +msgid "Image viewer" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:51 +msgid "Impersonation" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 +msgid "Import contacts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 +msgid "Import Contacts" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:33 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 +msgid "Import contacts to find your friends" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) +#: src/screens/Settings/FindContactsSettings.tsx:535 +msgid "Imported on {0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:279 +msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:30 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:21 +msgid "In-app, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:25 +msgid "In-app, people you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:29 +msgid "In-app, push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:20 +msgid "In-app, push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:24 +msgid "In-app, push, people you follow" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:437 +msgid "Inbox empty" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:219 +msgid "Inbox zero!" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Include" +msgstr "" + +#. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 +msgid "Include or exclude matching posts (currently: {0})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +msgid "Include posts and/or replies (currently: {currentLabel})" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 +msgid "Include posts made since this date" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 +msgid "Include posts made until this date" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 +msgid "Include these results" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:165 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:124 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:148 +msgid "Input new password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:456 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:269 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:33 +msgid "Introducing activity notifications" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:49 +msgid "Introducing drafts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:56 +msgid "Introducing finding friends via contacts" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 +msgid "Introducing saved posts AKA bookmarks" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:71 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:157 +msgid "Invalid group chat code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:615 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 +msgctxt "toast" +msgid "Invalid interaction settings." +msgstr "" + +#: src/components/contacts/phone-number.ts:33 +#: src/components/contacts/screens/PhoneInput.tsx:142 +msgid "Invalid phone number" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:100 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:200 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:86 +msgid "Invalid Verification Code" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:587 +msgid "Invite" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:567 +msgid "Invite {name} to join Bluesky" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:193 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:347 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:42 +#: src/components/contacts/components/InviteInfo.tsx:44 +msgid "Invite Friends" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:301 +msgid "Invite friends <0/>" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:193 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +#: src/screens/Messages/components/InviteLinkDialog.tsx:335 +#: src/screens/Messages/components/InviteLinkDialog.tsx:514 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 +#: src/screens/Messages/ConversationSettings/index.tsx:557 +msgid "Invite link" +msgstr "" + +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:214 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:127 +msgid "Invite link copied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:120 +msgid "Invite link created" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:138 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +msgid "Invite link disabled" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:126 +msgid "Invite link edited" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:132 +msgid "Invite link enabled" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:83 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:37 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Invited" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invites, but personal" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:47 +msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:373 +msgid "It's correct" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:483 +msgid "It's just <0>{0} right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:478 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#. placeholder {0}: videoState.jobId +#: src/view/com/composer/Composer.tsx:2617 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:181 +msgid "Jobs" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +msgid "Join" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:488 +msgid "Join Bluesky" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:72 +#: src/components/intents/GroupChatJoinDialog.tsx:464 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:189 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:72 +#: src/view/shell/NavSignupCard.tsx:41 +msgid "Join the conversation" +msgstr "" + +#: src/lib/interests.ts:63 +msgid "Journalism" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 +#: src/view/com/composer/drafts/DraftsButton.tsx:135 +msgid "Keep editing" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:230 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 +msgid "KWS website" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName(desc.source!) +#: src/components/moderation/ContentHider.tsx:245 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:243 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:70 +#: src/view/screens/Profile.tsx:234 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:68 +msgid "Labels added" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "Labels applied to this post" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:195 +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:76 +msgid "Labels on your account" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 +msgid "Language" +msgstr "" + +#: src/Navigation.tsx:220 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +#: src/screens/Settings/Settings.tsx:240 +#: src/screens/Settings/Settings.tsx:243 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:158 +msgid "Larger" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:443 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:179 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:441 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:177 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:97 +#: src/screens/Search/SearchResults.tsx:95 +#: src/screens/Topic.tsx:64 +msgid "Latest" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:168 +#: src/components/verification/VerifierDialog.tsx:136 +#: src/screens/Moderation/VerificationSettings.tsx:50 +#: src/screens/Profile/Header/EditProfileDialog.tsx:346 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:215 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:279 +msgctxt "english-only-resource" +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:143 +msgid "Learn More" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:273 +msgctxt "english-only-resource" +msgid "Learn more about <0>how to use advanced search." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:169 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:33 +msgid "Learn more about how inviting friends works" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:303 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 +#: src/screens/Settings/FindContactsSettings.tsx:140 +msgctxt "english-only-resource" +msgid "Learn more about importing contacts" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:220 +#: src/screens/Login/components/HostingProviderDialog.tsx:241 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:150 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:90 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:116 +#: src/components/moderation/ScreenHider.tsx:132 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:153 +#: src/components/verification/VerifierDialog.tsx:122 +msgctxt "english-only-resource" +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:212 +msgid "Learn more about your Germ DM link" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:222 +#: src/components/moderation/ContentHider.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:243 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:591 +msgid "Leave" +msgstr "" + +#. Leave a conversation (reject a chat invitation) +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 +msgctxt "Button" +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:109 +#: src/components/dms/MessagesListBlockedFooter.tsx:116 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 +#: src/screens/Messages/components/ChatEnded.tsx:66 +#: src/screens/Messages/components/ChatLocked.tsx:112 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:229 +#: src/components/dms/AfterReportConversationDialog.tsx:233 +#: src/components/dms/ConvoMenu.tsx:236 +#: src/components/dms/ConvoMenu.tsx:240 +#: src/components/dms/ConvoMenu.tsx:308 +#: src/components/dms/ConvoMenu.tsx:312 +#: src/components/dms/LeaveConvoPrompt.tsx:53 +msgid "Leave conversation" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:130 +#: src/screens/Messages/ConversationSettings/prompts.tsx:154 +msgid "Leave group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:590 +msgid "Leave this group chat" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:83 +#: src/components/dialogs/LinkWarning.tsx:91 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:153 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:274 +msgid "Left group chat." +msgstr "" + +#: src/screens/SignupQueued.tsx:158 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:177 +#: src/screens/Login/index.tsx:193 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:337 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:159 +#: src/components/dialogs/Embed.tsx:161 +#: src/screens/Settings/AppearanceSettings.tsx:87 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:284 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:108 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:217 +#: src/state/shell/progress-guide.tsx:222 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:149 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:31 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:22 +#: src/view/screens/ProfileFeedLikedBy.tsx:22 +msgid "Liked By" +msgstr "" + +#. placeholder {0}: count || 0 +#. placeholder {0}: feed.likeCount || 0 +#: src/components/FeedCard.tsx:249 +#: src/view/com/feeds/FeedSourceCard.tsx:173 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:158 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:200 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 +msgid "Likes of your reposts" +msgstr "" + +#: src/screens/PostThread/components/LikesStat.tsx:39 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:49 +#: src/screens/PostThread/components/HeaderDropdown.tsx:54 +msgid "Linear" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:300 +msgid "Link copied to clipboard" +msgstr "" + +#: src/Navigation.tsx:253 +msgid "List" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:397 +msgid "List avatar" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:48 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#: src/components/ListCard.tsx:153 +#: src/view/com/feeds/FeedSourceCard.tsx:153 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:145 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:143 +msgid "List by you" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:127 +msgid "List created, but failed to add some members" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:155 +msgid "List creator" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:446 +msgid "List description" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:466 +msgid "List description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:133 +msgid "List has been hidden" +msgstr "" + +#: src/screens/ProfileList/index.tsx:175 +msgid "List Hidden" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:438 +msgid "List must have a name." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:33 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:410 +msgid "List name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:430 +msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:115 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:130 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:101 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:116 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:174 +#: src/view/screens/Lists.tsx:60 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 +msgid "Lists" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Lists allow you to see content from your favorite people." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:38 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/features/liveNow/components/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#. placeholder {0}: feed.title +#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:54 +msgid "Live event happening now: {0}" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 +msgid "Live event hidden" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 +msgid "Live event unhidden" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 +msgid "Live feature is in beta" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:142 +#: src/features/liveNow/components/EditLiveDialog.tsx:146 +#: src/features/liveNow/components/GoLiveDialog.tsx:137 +#: src/features/liveNow/components/GoLiveDialog.tsx:141 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:87 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:271 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 +#: src/screens/ProfileList/FeedSection.tsx:113 +#: src/view/com/feeds/FeedPage.tsx:168 +msgid "Load new posts" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:254 +msgctxt "placeholder" +msgid "Loading chat…" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 +msgid "Loading lists..." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:279 +msgid "Loading post interaction settings..." +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +msgid "Loading..." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Lock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:107 +msgid "Lock group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:105 +msgid "Lock group chat?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:569 +msgid "Lock this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Locked" +msgstr "" + +#: src/Navigation.tsx:328 +msgid "Log" +msgstr "" + +#: src/components/AccountList.tsx:189 +msgid "Logged out" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:142 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:139 +#: src/view/shell/Drawer.tsx:768 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:55 +msgid "Long press to open tag menu for {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:114 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:44 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:84 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:36 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection. +#: src/features/gifPicker/components/GifCategoryPills.tsx:55 +msgid "Love GIFs" +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:39 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:101 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:65 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:339 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:111 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:173 +#: src/screens/Login/components/HostingProviderDialog.tsx:174 +msgid "Manual" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:312 +#: src/screens/Messages/Inbox.tsx:318 +msgid "Mark all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 +#: src/view/shell/bottom-bar/BottomBar.tsx:465 +#: src/view/shell/bottom-bar/BottomBar.tsx:469 +msgid "Mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 +#: src/view/shell/bottom-bar/BottomBar.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:477 +msgid "Mark all requests as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:299 +msgid "Marked all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:633 +#: src/view/shell/bottom-bar/BottomBar.tsx:444 +msgid "Marked all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:642 +#: src/view/shell/bottom-bar/BottomBar.tsx:453 +msgid "Marked all requests as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +msgid "Maybe later" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 +#: src/view/screens/Profile.tsx:238 +msgid "Media" +msgstr "" + +#. Example: "Media stored on John's iPhone" +#. placeholder {0}: draft.draft.deviceName +#: src/view/com/composer/drafts/DraftItem.tsx:119 +msgid "Media stored on {0}" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:117 +msgid "Media stored on another device" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:206 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:300 +msgid "Member removed from group chat." +msgstr "" + +#. The heading above the list of chat members. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +msgid "Members" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:106 +msgid "Members can still read chat history but can’t send new messages." +msgstr "" + +#: src/components/WhoCanReply.tsx:320 +msgid "mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:179 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 +#: src/view/screens/Notifications.tsx:99 +msgid "Mentions" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 +msgid "Mentions of these people" +msgstr "" + +#: src/components/Menu/index.tsx:119 +msgid "Menu" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 +msgctxt "action" +msgid "Message" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:255 +msgctxt "description" +msgid "Message" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/components/dms/MessageProfileButton.tsx:99 +msgid "Message {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +msgid "Message {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:322 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:111 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageItem.tsx:637 +msgid "Message failed to send." +msgstr "" + +#. placeholder {0}: sender?.handle ?? 'unknown' +#. placeholder {1}: message.text +#: src/components/dms/MessageContextMenu.tsx:166 +msgid "Message from @{0}: {1}" +msgstr "" + +#. placeholder {0}: rawError.message +#: src/view/com/posts/PostFeedErrorMessage.tsx:209 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:251 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:116 +msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:165 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:779 +msgid "Messages" +msgstr "" + +#: src/components/dms/MessageItem.tsx:736 +msgid "Messages from this person are hidden while they are blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:731 +msgid "Messages from this person are hidden while you are blocking them." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:177 +msgid "Minor harassment or bullying" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 +msgid "Misleading" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:131 +msgid "Missing media" +msgstr "" + +#: src/Navigation.tsx:179 +#: src/screens/Moderation/index.tsx:100 +msgid "Moderation" +msgstr "" + +#: src/screens/Settings/Settings.tsx:190 +#: src/screens/Settings/Settings.tsx:193 +msgid "Moderation and content filters" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:175 +msgid "Moderation details" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:311 +#: src/components/ListCard.tsx:152 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:309 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +msgid "Moderation list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:256 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:242 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:299 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:184 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:257 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:313 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:253 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:48 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:106 +#: src/view/shell/desktop/Feeds.tsx:153 +msgid "More feeds" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:125 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:128 +msgid "More languages..." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 +#: src/view/com/composer/drafts/DraftItem.tsx:190 +#: src/view/com/profile/ProfileMenu.tsx:251 +#: src/view/com/profile/ProfileMenu.tsx:258 +msgid "More options" +msgstr "" + +#: src/screens/SavedFeeds.tsx:488 +msgid "Move feed down" +msgstr "" + +#: src/screens/SavedFeeds.tsx:478 +msgid "Move feed up" +msgstr "" + +#: src/lib/interests.ts:64 +msgid "Movies" +msgstr "" + +#: src/lib/interests.ts:65 +msgid "Music" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Mute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:184 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97 +msgctxt "video" +msgid "Mute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:154 +#: src/components/RichTextTag.tsx:170 +msgid "Mute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 +#: src/view/com/profile/ProfileMenu.tsx:443 +#: src/view/com/profile/ProfileMenu.tsx:450 +msgid "Mute account" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:83 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:86 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:262 +msgid "Mute in:" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:109 +msgid "Mute list" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:104 +msgid "Mute these accounts?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:534 +msgid "Mute this group chat" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:194 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:233 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:218 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:267 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:283 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:179 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 +msgid "Mute words & tags" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Muted" +msgstr "" + +#: src/screens/Moderation/index.tsx:314 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:189 +#: src/view/screens/ModerationMutedAccounts.tsx:107 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:193 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:284 +msgid "Muted words & tags" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:106 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:54 +#: src/components/dialogs/BirthDateSettings.tsx:58 +msgid "My birthdate" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:77 +msgid "My favorite feeds and people - join me!" +msgstr "" + +#: src/view/screens/Feeds.tsx:697 +msgid "My Feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "My starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:416 +msgid "Name" +msgstr "" + +#: src/lib/interests.ts:66 +msgid "Nature" +msgstr "" + +#. placeholder {0}: record.name +#. placeholder {0}: view.record.name +#: src/components/StarterPack/StarterPackCard.tsx:134 +#: src/components/StarterPack/StarterPackCard.tsx:169 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:135 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:144 +#: src/screens/Login/ForgotPasswordForm.tsx:169 +#: src/screens/Login/LoginForm.tsx:555 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:92 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:342 +#: src/components/moderation/ReportDialog/index.tsx:358 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:585 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:398 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:71 +#: src/view/screens/ModerationModlists.tsx:72 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 +msgctxt "nux-description" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:569 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:552 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 +#: src/screens/Messages/ChatList.tsx:232 +#: src/screens/Messages/ChatList.tsx:455 +#: src/screens/Messages/ChatList.tsx:456 +#: src/screens/Messages/ChatList.tsx:580 +msgid "New chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +msgid "New chat with {0}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +msgid "New chat with {0} and {1}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73 +msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:75 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:74 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:85 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:65 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:129 +msgid "New Feature" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:193 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 +msgid "New followers" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 +msgid "New group chat" +msgstr "" + +#. Button used to create a new group chat. +#. Button used to create a new group chat. +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:332 +msgid "New group chat with:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:228 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:236 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:387 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:64 +#: src/view/screens/ModerationModlists.tsx:64 +msgid "New list" +msgstr "" + +#: src/screens/Messages/Settings.tsx:289 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:281 +msgid "New message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:268 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 +#: src/screens/Settings/NotificationSettings/index.tsx:264 +msgid "New messages" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:130 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:204 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:208 +msgid "New password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:218 +#: src/screens/ProfileList/index.tsx:237 +#: src/screens/ProfileList/index.tsx:280 +#: src/view/screens/Feeds.tsx:545 +#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Profile.tsx:607 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:179 +#: src/view/shell/desktop/LeftNav.tsx:598 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:558 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:543 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:202 +msgid "New starter pack" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:569 +msgid "New to Bluesky? <0>Sign up" +msgstr "" + +#: src/components/NewskieDialog.tsx:122 +msgid "New user info dialog" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:95 +#: src/screens/PostThread/components/HeaderDropdown.tsx:100 +#: src/screens/Settings/ThreadPreferences.tsx:73 +#: src/screens/Settings/ThreadPreferences.tsx:76 +msgid "Newest replies first" +msgstr "" + +#: src/lib/interests.ts:67 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 +msgid "News" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:410 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:599 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/ForgotPasswordForm.tsx:150 +#: src/screens/Login/SetNewPasswordForm.tsx:171 +#: src/screens/Login/SetNewPasswordForm.tsx:177 +#: src/screens/Onboarding/StepFinished/index.tsx:330 +#: src/screens/Onboarding/StepFinished/index.tsx:339 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:198 +#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:384 +#: src/screens/StarterPack/Wizard/index.tsx:391 +msgid "Next" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:218 +msgid "Next image" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:33 +msgid "Night" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 +msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:177 +msgid "No beta features at the moment." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:681 +msgid "No contacts found" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:659 +msgid "No contacts with the name “{query}” found" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:161 +msgid "No custom feeds yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:410 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:412 +msgid "No DNS Panel" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:143 +msgid "No drafts yet" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:134 +msgid "No expiry set" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:122 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:216 +msgid "No followers yet" +msgstr "" + +#. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the user’s search query. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25 +msgid "No GIFs found for \"{query}\"." +msgstr "" + +#. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue). +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36 +msgid "No GIFs to show right now. Try again in a moment." +msgstr "" + +#: src/features/liveNow/components/LinkPreview.tsx:64 +msgid "No image" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +#: src/view/screens/Profile.tsx:539 +msgid "No likes yet" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:160 +msgid "No lists" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:523 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/notifications/NotificationFeedItem.tsx:813 +msgid "No longer following {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:485 +msgid "No media yet" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:310 +msgid "No messages yet" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 +msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:563 +msgid "No name" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:125 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:104 +msgctxt "allow group chat invites from" +msgid "No one" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +msgctxt "allow messages from" +msgid "No one" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:130 +#: src/screens/Settings/ActivityPrivacySettings.tsx:135 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgctxt "enable for" +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "No one can send messages" +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:43 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 +msgid "No posts yet" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:114 +msgid "No quotes yet" +msgstr "" + +#. Empty-state message shown in the GIF picker’s Recents tab before the user has selected any GIFs. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:31 +msgid "No recent GIFs yet. Pick one to see it here." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "No replies" +msgstr "" + +#: src/view/screens/Profile.tsx:470 +msgid "No replies yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:192 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:250 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:469 +#: src/components/ProgressGuide/FollowDialog.tsx:221 +msgid "No results" +msgstr "" + +#. placeholder {0}: interestsDisplayNames[selectedInterest] +#: src/screens/Search/Explore.tsx:817 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:466 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:233 +msgid "No results found for “<0>{query}” with advanced search filters applied." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:245 +msgid "No results found for “<0>{query}”." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:239 +msgid "No results found for your query with advanced search filters applied." +msgstr "" + +#: src/screens/Search/Explore.tsx:821 +msgid "No results." +msgstr "" + +#: src/view/screens/Profile.tsx:571 +msgid "No Starter Packs yet" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +#: src/components/dialogs/EmbedConsent.tsx:107 +msgid "No thanks" +msgstr "" + +#: src/lib/translation/index.tsx:308 +msgid "No translation received from your device." +msgstr "" + +#: src/view/screens/Profile.tsx:512 +msgid "No video posts yet" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:471 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:116 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:107 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:80 +msgid "Non-consensual intimate imagery" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 +msgid "None of these words" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:62 +#: src/screens/Settings/FindContactsSettings.tsx:106 +msgid "Not available on this platform." +msgstr "" + +#: src/components/KnownFollowers.tsx:254 +msgid "Not followed by anyone you’re following" +msgstr "" + +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 +msgid "Not Found" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131 +msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:546 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:292 +msgid "Nothing saved yet" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:72 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 +#: src/view/screens/Notifications.tsx:134 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:305 +#: src/screens/Messages/Settings.tsx:318 +msgid "Notification sounds" +msgstr "" + +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 +#: src/screens/Messages/Settings.tsx:255 +#: src/screens/Notifications/ActivityList.tsx:31 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 +#: src/screens/Settings/Settings.tsx:198 +#: src/screens/Settings/Settings.tsx:201 +#: src/view/screens/Notifications.tsx:128 +#: src/view/shell/bottom-bar/BottomBar.tsx:279 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 +msgid "Notifications" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 +msgid "Nudity" +msgstr "" + +#: src/components/contacts/phone-number.ts:43 +msgid "Number should be a mobile number" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:14 +#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:34 +msgid "Off" +msgstr "" + +#. Title of the error screen shown when the GIF picker crashes unexpectedly. +#: src/components/dialogs/LanguageSelectDialog.tsx:347 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:22 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#. Confirm button text. +#: src/components/contacts/screens/GetContacts.tsx:317 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:46 +#: src/screens/Settings/AppIconSettings/index.tsx:232 +msgid "OK" +msgstr "" + +#: src/components/BotAccountAlert.tsx:52 +#: src/components/BotAccountAlert.tsx:57 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 +#: src/screens/Login/PasswordUpdatedForm.tsx:35 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:85 +#: src/screens/PostThread/components/HeaderDropdown.tsx:90 +#: src/screens/Settings/ThreadPreferences.tsx:65 +#: src/screens/Settings/ThreadPreferences.tsx:68 +msgid "Oldest replies first" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:162 +msgid "On" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:86 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:405 +msgid "Onboarding reset" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:939 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:936 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "One or more of your selected files are not supported." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:446 +msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." +msgstr "" + +#: src/view/com/composer/Composer.tsx:742 +msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" +msgstr "" + +#: src/view/com/composer/Composer.tsx:946 +msgid "One or more videos is missing alt text." +msgstr "" + +#. placeholder {0}: settings.map((rule, i) => ( )) +#: src/components/WhoCanReply.tsx:283 +msgid "Only {0} can reply." +msgstr "" + +#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept +#. placeholder {0}: result.accepted.length +#. placeholder {1}: next.length +#. placeholder {2}: next.length +#: src/view/com/composer/Composer.tsx:235 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can reject join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:155 +msgid "Only followers can join this group chat." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:121 +#: src/screens/Settings/ActivityPrivacySettings.tsx:126 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:34 +msgid "Only image files are supported" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:218 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:306 +msgid "Only people the chat owner follows can join" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 +msgid "Only posts with media" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 +msgid "Only posts with videos" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 +msgid "Only replies" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:99 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +msgid "Oops, this profile doesn't exist. Try scanning another one." +msgstr "" + +#: src/components/Lists.tsx:184 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:108 +#: src/view/screens/Profile.tsx:133 +msgid "Oops!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 +msgid "Open advanced search options" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:308 +msgid "Open avatar creator" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:201 +msgid "Open camera" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 +msgid "Open chat member options for {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:490 +#: src/screens/Messages/components/ChatListItem.tsx:494 +msgid "Open conversation options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:69 +msgid "Open draft" +msgstr "" + +#: src/components/Layout/Header/index.tsx:168 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:213 +#: src/view/com/composer/Composer.tsx:2250 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:28 +msgid "Open full emoji list" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:75 +msgid "Open Germ DM" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:446 +msgid "Open group chat" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 +msgid "Open group chat settings" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:147 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:40 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:470 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:280 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:128 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:67 +msgid "Open post options menu" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 +msgid "Open profile" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "" + +#: src/components/BotAccountAlert.tsx:62 +#: src/components/BotAccountAlert.tsx:71 +msgid "Open settings" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:98 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:463 +#: src/screens/Settings/Settings.tsx:477 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:456 +msgid "Open system log" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Open this group chat" +msgstr "" + +#. placeholder {0}: feedInfo.displayName +#: src/view/shell/desktop/Feeds.tsx:185 +msgid "Opens {0} feed" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:645 +msgid "Opens a dialog to change the hosting provider you sign in to" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 +msgid "Opens a dialog to choose who can interact with this post" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:40 +msgid "Opens a list of color themes for the QR card" +msgstr "" + +#: src/screens/Log.tsx:74 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:45 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:134 +msgid "Opens change handle dialog" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:64 +msgid "Opens composer" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:202 +msgid "Opens device camera" +msgstr "" + +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:517 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:305 +#: src/view/com/auth/SplashScreen.tsx:91 +#: src/view/com/auth/SplashScreen.web.tsx:112 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:291 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/components/images/Gallery/index.tsx:458 +msgid "Opens full image" +msgstr "" + +#: src/screens/Settings/Settings.tsx:257 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:224 +msgid "Opens image picker" +msgstr "" + +#. placeholder {0}: link?.href ?? '' +#: src/components/dialogs/LinkWarning.tsx:113 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:603 +msgid "Opens live status dialog" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:200 +msgid "Opens post language settings" +msgstr "" + +#: src/components/dms/SystemMessageItem.tsx:61 +msgid "Opens profile" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "" + +#. Accessibility hint announced after the GIF picker button label, describing what activating it will do. +#: src/view/com/composer/photos/SelectGifBtn.tsx:45 +msgid "Opens the GIF picker dialog" +msgstr "" + +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:148 +msgid "Opens the post composer" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:70 +msgid "Opens this draft in the composer" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:621 +msgid "Opens this profile" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:308 +msgid "Options:" +msgstr "" + +#: src/screens/Deactivated.tsx:192 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:179 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:55 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:51 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:53 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:57 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242 +#: src/view/com/composer/labels/LabelsBtn.tsx:181 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:93 +msgid "Other account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:181 +msgid "Other child safety issue" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:208 +msgid "Other dangerous content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:119 +msgid "Other harassing or hateful content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +msgid "Other misleading content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:231 +msgid "Other network rule-breaking" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:92 +msgid "Other sexual violence content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:154 +msgid "Other violent content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:51 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:86 +#: src/components/dms/AfterReportConversationDialog.tsx:213 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:54 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:384 +msgid "Owner" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" + +#: src/components/Lists.tsx:204 +#: src/components/Lists.tsx:219 +#: src/view/screens/NotFound.tsx:34 +#: src/view/screens/NotFound.tsx:41 +msgid "Page not found" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:85 +msgid "Party GIFs" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:365 +#: src/screens/Login/LoginForm.tsx:372 +#: src/screens/Settings/AccountSettings.tsx:124 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:284 +#: src/screens/Signup/StepInfo/index.tsx:258 +msgid "Password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:70 +msgid "Password changed" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:125 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:206 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:22 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Pause GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 +msgid "Pause video" +msgstr "" + +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Search/SearchResults.tsx:107 +#: src/screens/StarterPack/StarterPackScreen.tsx:195 +msgid "People" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 +msgid "People {ownerName} follows can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 +msgid "People {ownerName} follows can request to join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:240 +msgid "People followed by @{0}" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:233 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:97 +msgctxt "allow group chat invites from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:82 +msgctxt "allow messages from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 +msgid "People I follow can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 +msgid "People I follow can request to join" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 +msgid "People you follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:524 +msgid "People you mention" +msgstr "" + +#: src/lib/media/save-image.ts:59 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Person toggle" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:60 +msgid "Personalize the message" +msgstr "" + +#: src/lib/interests.ts:68 +msgid "Pets" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:192 +#: src/components/contacts/screens/PhoneInput.tsx:204 +msgid "Phone number" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:304 +msgid "Phone number verified" +msgstr "" + +#: src/lib/interests.ts:69 +msgid "Photography" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:39 +msgid "Pick a color theme" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:165 +msgid "Pictures meant for adults." +msgstr "" + +#: src/components/FeedCard.tsx:364 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 +#: src/screens/SavedFeeds.tsx:559 +msgid "Pin feed" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:116 +msgid "Pinned" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/screens/SavedFeeds.tsx:146 +#: src/screens/SavedFeeds.tsx:337 +msgid "Pinned Feeds" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:77 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 +msgid "Play" +msgstr "" + +#. placeholder {0}: link.title +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Play GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:33 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:109 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:111 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:294 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/StepInfo/index.tsx:149 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:309 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/view/com/composer/state/video.ts:471 +msgid "Please confirm your email address to upload videos." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:102 +#: src/screens/Signup/StepInfo/index.tsx:139 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:56 +msgid "Please enter a password." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:120 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:134 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:89 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:145 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:66 +msgid "Please enter the code you received and the new password you would like to use." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/StepInfo/index.tsx:122 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:115 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:196 +msgid "Please enter your password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:190 +msgid "Please enter your username" +msgstr "" + +#. placeholder {0}: labeler ? sanitizeHandle(labeler.creator.handle, '@') : label.src +#: src/components/moderation/AppealForm.tsx:120 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:124 +msgid "Please explain why you think your Go Live access was incorrectly disabled." +msgstr "" + +#: src/components/FocusScope/index.tsx:91 +#: src/components/FocusScope/index.tsx:115 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:102 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:304 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:32 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:29 +msgid "Please select a reason for this report" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:54 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:107 +msgid "Please use the native app to import your contacts." +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:63 +msgid "Please use the native app to sync your contacts." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:29 +msgid "Please write your message below:" +msgstr "" + +#: src/lib/interests.ts:70 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +msgid "Porn" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1895 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/screens/PostThread/index.tsx:560 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 +msgid "Post a photo" +msgstr "" + +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 +msgid "Post a video" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1893 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1554 +msgid "Post anyway" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:189 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:116 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109 +#: src/screens/VideoFeed/index.tsx:551 +msgid "Post has been deleted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:127 +#: src/lib/moderation/useModerationCauseDescription.ts:107 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:130 +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:685 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:200 +#: src/screens/ModerationInteractionSettings/index.tsx:35 +msgid "Post Interaction Settings" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "" + +#. Accessibility label for button that opens dialog to choose post language settings +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:195 +msgid "Post language selection" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 +msgid "Post link" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:33 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 +#: src/screens/StarterPack/StarterPackScreen.tsx:197 +#: src/view/screens/Profile.tsx:236 +msgid "Posts" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +msgid "Posts and replies" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:123 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:76 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:89 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:82 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:292 +msgid "Preferred language" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:56 +#: src/components/Lists.tsx:104 +#: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:355 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:125 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 +msgid "Preview" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:197 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:141 +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Primary language" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:118 +#: src/view/shell/desktop/RightNav.tsx:119 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 +#: src/screens/Settings/ActivityPrivacySettings.tsx:41 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 +#: src/view/screens/Storybook/Admonitions.tsx:94 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 +#: src/Navigation.tsx:338 +#: src/screens/Settings/AboutSettings.tsx:102 +#: src/screens/Settings/AboutSettings.tsx:105 +#: src/view/screens/PrivacyPolicy.tsx:25 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 +msgid "Privacy Policy" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:173 +msgid "Privacy violation of a minor" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2691 +msgid "Processing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2693 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:62 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:956 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:322 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:164 +msgid "Profile banner placeholder" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 +#: src/lib/strings/errors.ts:39 +msgid "Profile not found" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:186 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:223 +msgid "Promoting or selling prohibited items or services" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:161 +msgid "Psst! You can edit who can interact with this post." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1879 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1874 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:1863 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1868 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:31 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:22 +msgid "Push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:26 +msgid "Push, people you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:143 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:121 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:101 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:176 +#: src/components/PostControls/RepostButton.tsx:199 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +#: src/view/com/composer/drafts/DraftItem.tsx:137 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:175 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:186 +#: src/screens/Post/PostQuotes.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:618 +msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:109 +msgid "Rate limit exceeded. Please try again later." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 +msgid "Re-attach quote" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 +msgid "Re-enable invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 +msgid "Re-enable link" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:80 +msgid "React with {emoji}" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:70 +#: src/components/dms/ReactionsDialog.tsx:98 +msgid "Reactions" +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "Reactivate your account" +msgstr "" + +#. placeholder {0}: item.moreReplies +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:93 +msgid "Read {0, plural, one {# more reply} other {# more replies}}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:276 +msgctxt "english-only-resource" +msgid "Read about how to use advanced search filters" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:72 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:113 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:174 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:53 +#: src/screens/Signup/StepInfo/Policies.tsx:79 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:46 +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/components/WelcomeModal.tsx:146 +msgid "Real conversations." +msgstr "" + +#: src/components/WelcomeModal.tsx:144 +msgid "Real people." +msgstr "" + +#: src/screens/Takendown.tsx:158 +#: src/screens/Takendown.tsx:166 +msgid "Reason for appeal" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +msgid "Receive push notifications" +msgstr "" + +#. Accessibility label for the icon-only pill that shows previously selected GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:35 +msgid "Recent GIFs" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:52 +msgid "Recent searches" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:249 +msgid "Recently used" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:136 +msgid "Reject" +msgstr "" + +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:424 +#: src/screens/Messages/Inbox.tsx:206 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:193 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:457 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:386 +#: src/components/FeedCard.tsx:376 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:106 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:113 +#: src/screens/Bookmarks.tsx:258 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:178 +#: src/screens/Moderation/index.tsx:477 +#: src/screens/Settings/Settings.tsx:683 +#: src/view/com/posts/PostFeedErrorMessage.tsx:221 +msgid "Remove" +msgstr "" + +#: src/components/dms/ChatProfileTabs.tsx:153 +msgid "Remove {displayName} from group chat" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:62 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 +msgid "Remove {displayName} from this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:176 +msgid "Remove {displayName}?" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:182 +msgid "Remove {q}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 +msgid "Remove account" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 +msgid "Remove all contacts" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 +msgid "Remove Banner" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:286 +msgid "Remove caption file" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:234 +#: src/screens/Messages/components/MessageInputEmbed.tsx:289 +#: src/screens/Messages/components/MessageInputEmbed.tsx:344 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:121 +#: src/view/com/posts/FeedShutdownMsg.tsx:125 +#: src/view/com/posts/PostFeedErrorMessage.tsx:177 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:218 +msgid "Remove feed?" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 +msgid "Remove filter" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 +msgid "Remove from chat" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 +#: src/screens/SavedFeeds.tsx:549 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:677 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:174 +#: src/screens/List/ListHiddenScreen.tsx:178 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:120 +#: src/screens/Bookmarks.tsx:252 +msgid "Remove from saved posts" +msgstr "" + +#: src/components/FeedCard.tsx:373 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:227 +msgid "Remove image" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:221 +#: src/features/liveNow/components/EditLiveDialog.tsx:228 +msgid "Remove live status" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 +msgid "Remove member" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:613 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:243 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:153 +#: src/components/PostControls/RepostButton.tsx:163 +msgid "Remove repost" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:500 +#: src/screens/Settings/FindContactsSettings.tsx:349 +msgid "Remove suggestion" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:219 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:473 +msgid "Remove unavailable moderation services" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:48 +#: src/components/verification/VerificationsDialog.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:416 +#: src/view/com/profile/ProfileMenu.tsx:419 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:240 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:238 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:136 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:246 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:98 +msgid "Removed from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:88 +#: src/screens/Bookmarks.tsx:211 +msgid "Removed from saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:287 +msgid "Removed from starter pack" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 +#: src/view/com/posts/FeedShutdownMsg.tsx:45 +msgid "Removed from your feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:187 +msgid "Removed unavailable services" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:541 +msgid "Renew" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:547 +msgid "Renew duration" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:531 +msgid "Renew mute word" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:134 +#: src/view/com/posts/FeedShutdownMsg.tsx:138 +msgid "Replace with Discover" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:39 +msgctxt "description" +msgid "Replied to <0><1/>" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:28 +msgctxt "description" +msgid "Replied to a blocked post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:30 +msgctxt "description" +msgid "Replied to a post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:36 +msgctxt "description" +msgid "Replied to you" +msgstr "" + +#: src/components/dms/MessageItem.tsx:926 +msgid "Replied-to message from {senderName}, tap to scroll to it" +msgstr "" + +#: src/components/dms/MessageItem.tsx:924 +msgid "Replied-to message was sent before you joined" +msgstr "" + +#: src/components/dms/MessageItem.tsx:927 +msgid "Replied-to message, tap to scroll to it" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 +#: src/lib/hooks/useNotificationHandler.ts:172 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:87 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:281 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:182 +#: src/components/dms/MessageContextMenu.tsx:185 +msgid "Reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1891 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#. placeholder {0}: post.replyCount || 0 +#: src/components/PostControls/index.tsx:240 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:136 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:135 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:71 +msgid "Reply sorting" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:220 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:583 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:483 +#: src/view/com/profile/ProfileMenu.tsx:486 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:295 +#: src/components/dms/ConvoMenu.tsx:299 +#: src/screens/Messages/components/RequestButtons.tsx:161 +#: src/screens/Messages/components/RequestButtons.tsx:164 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 +msgid "Report feed" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:210 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:213 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:217 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 +msgid "Report post" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:47 +msgid "Report sent" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:83 +#: src/components/dms/AfterReportConversationDialog.tsx:210 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 +msgid "Report submitted" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:51 +#: src/components/moderation/ReportDialog/copy.ts:65 +msgid "Report this conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +msgid "Report this feed" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:582 +msgid "Report this group chat" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +msgid "Report this list" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 +msgid "Report this livestream" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:57 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:43 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:154 +#: src/components/PostControls/RepostButton.tsx:165 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:78 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:146 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:577 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:31 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:97 +msgid "Reposted by {reposter}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:95 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:165 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:207 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 +msgid "Reposts of your reposts" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:463 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:226 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:232 +msgid "Request code" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request rejected." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:295 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + +#. Incoming message requests +#: src/screens/Messages/components/InboxRequests.tsx:25 +msgid "Requests" +msgstr "" + +#: src/Navigation.tsx:519 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:59 +#: src/screens/Settings/AccessibilitySettings.tsx:64 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:207 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:310 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:115 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:117 +msgid "Rescind request" +msgstr "" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 +msgid "Resend" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:365 +#: src/components/contacts/screens/VerifyNumber.tsx:382 +msgid "Resend code" +msgstr "" + +#. placeholder {0}: String( clamp(Math.round(timeUntilCanResend / 1000), 0, 30), ).padStart(2, '0') +#: src/components/contacts/screens/VerifyNumber.tsx:372 +msgid "Resend code in <0>00:{0}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:174 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:177 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:124 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:117 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:499 +#: src/screens/Settings/Settings.tsx:501 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "Reset code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:484 +#: src/screens/Settings/Settings.tsx:486 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:77 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:422 +msgid "Reset your password by sending a code to your email" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 +msgid "Resync contacts" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:532 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:56 +#: src/view/com/util/error/ErrorScreen.tsx:93 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:28 +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 +#: src/components/contacts/screens/VerifyNumber.tsx:350 +#: src/components/contacts/screens/VerifyNumber.tsx:355 +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:115 +#: src/components/moderation/ReportDialog/index.tsx:297 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 +#: src/screens/Login/LoginForm.tsx:531 +#: src/screens/Login/LoginForm.tsx:537 +#: src/screens/Messages/ChatList.tsx:429 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/JoinRequests.tsx:361 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:95 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/PostThread/components/ThreadError.tsx:87 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:91 +#: src/view/screens/Storybook/Admonitions.tsx:64 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:294 +#: src/view/screens/Storybook/Admonitions.tsx:61 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:68 +#: src/screens/List/ListHiddenScreen.tsx:223 +#: src/screens/StarterPack/StarterPackScreen.tsx:801 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to home page" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:36 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:577 +#: src/screens/VideoFeed/index.tsx:1240 +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:316 +msgid "Returns to the previous step" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Reveal password" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:75 +msgid "Sad GIFs" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:309 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 +#: src/components/StarterPack/QrCodeDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:197 +#: src/features/liveNow/components/EditLiveDialog.tsx:204 +#: src/screens/Messages/ConversationSettings/prompts.tsx:82 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Profile/Header/EditProfileDialog.tsx:247 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:315 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:269 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/GifAltText.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:63 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:76 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:173 +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:193 +msgid "Save birthdate" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:198 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:207 +#: src/screens/SavedFeeds.tsx:120 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:311 +#: src/screens/SavedFeeds.tsx:315 +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save changes" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1507 +#: src/view/com/composer/drafts/DraftsButton.tsx:93 +msgid "Save changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save draft" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1509 +#: src/view/com/composer/drafts/DraftsButton.tsx:95 +msgid "Save draft?" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/MediaPreview.tsx:231 +#: src/components/Post/Embed/ImageContextMenu.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:144 +#: src/components/StarterPack/ShareDialog.tsx:150 +msgid "Save image" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:255 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:202 +msgid "Save QR code" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:655 +msgid "Save these options for next time" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 +msgid "Save to my feeds" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 +msgctxt "link to bookmarks screen" +msgid "Saved" +msgstr "" + +#: src/screens/SavedFeeds.tsx:198 +#: src/screens/SavedFeeds.tsx:375 +msgid "Saved Feeds" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:579 +#: src/screens/Bookmarks.tsx:59 +msgid "Saved Posts" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/screens/ProfileList/components/Header.tsx:88 +msgid "Saved to your feeds" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +#: src/view/com/notifications/NotificationFeedItem.tsx:895 +#: src/view/com/notifications/NotificationFeedItem.tsx:920 +msgid "Say hello!" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 +msgid "Say hi to someone" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:43 +msgid "Scam" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:318 +msgid "Scan QR code" +msgstr "" + +#: src/lib/interests.ts:71 +msgid "Science" +msgstr "" + +#: src/components/InterestTabs.tsx:258 +msgid "Scroll left" +msgstr "" + +#: src/components/InterestTabs.tsx:292 +msgid "Scroll right" +msgstr "" + +#: src/components/dms/MessageItem.tsx:820 +msgid "Scroll to the message this is replying to" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:132 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:667 +#: src/components/forms/SearchInput.tsx:51 +#: src/components/forms/SearchInput.tsx:53 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 +#: src/screens/Search/Shell.tsx:753 +#: src/view/shell/bottom-bar/BottomBar.tsx:216 +msgid "Search" +msgstr "" + +#. placeholder {0}: profile.handle +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:259 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:708 +msgid "Search by name or interest" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:356 +msgid "Search contacts" +msgstr "" + +#: src/view/screens/Feeds.tsx:437 +msgid "Search feeds" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected. +#: src/components/ProgressGuide/FollowDialog.tsx:505 +msgid "Search for \"{interestsDisplayName}\"" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected. +#: src/components/ProgressGuide/FollowDialog.tsx:500 +msgid "Search for \"{interestsDisplayName}\" (active)" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:49 +msgid "Search for “{searchText}”" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:136 +msgid "Search for {q}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:452 +msgid "Search for more feeds" +msgstr "" + +#: src/components/dms/components/UserSearchInput.tsx:43 +msgid "Search for people" +msgstr "" + +#. Accessibility label for the GIF search input inside the GIF picker dialog. +#: src/features/gifPicker/components/GifPickerHeader.tsx:40 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Hashtag.tsx:228 +#: src/screens/Search/SearchResults.tsx:410 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#. Placeholder text inside the GIF search input. KLIPY is the third-party GIF provider; keep the brand name as-is. +#: src/features/gifPicker/components/GifPickerHeader.tsx:45 +msgid "Search KLIPY" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:232 +#: src/components/dialogs/LanguageSelectDialog.tsx:233 +msgid "Search languages" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:301 +#: src/view/com/profile/ProfileMenu.tsx:304 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:687 +#: src/components/dms/components/UserSearchInput.tsx:63 +#: src/components/ProgressGuide/FollowDialog.tsx:727 +msgid "Search profiles" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 +msgid "Search query" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:688 +#: src/components/dms/components/UserSearchInput.tsx:64 +#: src/components/ProgressGuide/FollowDialog.tsx:728 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 +msgid "Security step required" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:114 +msgid "See {0} posts" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:131 +msgid "See {0} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:122 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:142 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:179 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:491 +#: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:472 +msgid "See more suggested profiles" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 +msgid "See suggested accounts" +msgstr "" + +#: src/screens/SavedFeeds.tsx:232 +#: src/screens/SavedFeeds.tsx:403 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:196 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. +#: src/components/InterestTabs.tsx:340 +msgid "Select \"{interestsDisplayName}\" category" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#. Accessibility label for a username suggestion in the account creation flow +#. placeholder {0}: item.handle +#. placeholder {0}: suggestion.handle +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:40 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:72 +msgid "Select {0}" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:110 +msgid "Select {langName}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:380 +msgid "Select a reason" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:79 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:63 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:199 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:118 +msgid "Select app language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +msgid "Select caption file (.vtt)" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 +msgid "Select chat \"{name}\"" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:195 +#: src/screens/Settings/LanguageSettings.tsx:233 +msgid "Select content languages" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:186 +msgid "Select duration" +msgstr "" + +#. placeholder {0}: labels[filter.field].title +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 +msgid "Select filter type (currently: {0})" +msgstr "" + +#: src/screens/Login/index.tsx:166 +msgid "Select from an existing account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:553 +msgid "Select from your lists" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:555 +msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}" +msgstr "" + +#. Accessibility label for the button in the post composer that opens the GIF picker dialog. +#: src/view/com/composer/photos/SelectGifBtn.tsx:38 +msgid "Select GIF" +msgstr "" + +#. Accessibility label for an individual GIF tile in the picker grid. The placeholder is the GIF’s title from the provider. +#. placeholder {0}: gif.title +#: src/features/gifPicker/components/GifPickerItem.tsx:31 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:830 +msgid "Select group chat members" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:151 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:71 +#: src/components/LanguageSelect.tsx:41 +#: src/components/LanguageSelect.tsx:42 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:273 +msgid "Select language..." +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:267 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:430 +msgid "Select moderation service" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:91 +msgid "Select post language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:152 +msgid "Select primary language" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:68 +msgid "Select telephone code" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/Post/Translated/index.tsx:446 +msgid "Select the source language" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:77 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:137 +msgid "Select up to 3 languages used in this post" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:251 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:111 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:181 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:300 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:69 +#: src/screens/Settings/InterestsSettings.tsx:178 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:145 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:426 +msgid "Selecting multiple media types is not supported." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:188 +msgid "Self-harm or dangerous behaviors" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:255 +#: src/components/contacts/screens/PhoneInput.tsx:260 +msgid "Send code" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:199 +msgid "Send email" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:60 +#: src/components/SendErrorReportDialog.tsx:64 +#: src/screens/Settings/AboutSettings.tsx:125 +#: src/screens/Settings/AboutSettings.tsx:128 +msgid "Send error report" +msgstr "" + +#: src/view/shell/Drawer.tsx:420 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:324 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:146 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 +msgid "Send post to..." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:818 +msgid "Send report to {title}" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:63 +msgid "Send the message from your phone" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) +#: src/components/dms/MessageContextMenu.tsx:175 +msgid "Sent at {0}" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:283 +msgid "Sent to our phone number verification provider Plivo" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:174 +#: src/screens/Login/components/HostingProviderDialog.tsx:200 +msgid "Server address" +msgstr "" + +#. placeholder {0}: icon.name +#: src/screens/Settings/AppIconSettings/index.tsx:176 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:99 +msgid "Set new password" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:481 +msgid "Set precisely which groups of people can reply to your post" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:431 +msgid "Set who can reply to your post" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:286 +msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:352 +msgid "set your hosting provider manually" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:486 +msgid "Set your hosting provider manually" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:104 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:215 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:220 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:293 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:233 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Messages/Settings.tsx:280 +#: src/screens/Settings/NotificationSettings/index.tsx:276 +msgid "Settings for notifications for new message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:259 +#: src/screens/Settings/NotificationSettings/index.tsx:259 +msgid "Settings for notifications for new messages" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:246 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:198 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:209 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:103 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/Link.tsx:428 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/screens/Hashtag.tsx:130 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/StarterPack/StarterPackScreen.tsx:447 +#: src/screens/Topic.tsx:89 +msgid "Share" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:62 +msgid "Share age range" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:549 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 +msgid "Share author DID" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:158 +#: src/screens/Settings/BetaFeaturesSettings.tsx:165 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 +msgid "Share feedback" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 +msgid "Share image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:120 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/features/inviteFriends/components/ActionButtons.tsx:28 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:74 +msgid "Share link dialog" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 +msgid "Share post at:// URI" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:141 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:156 +msgid "Share Profile" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:129 +#: src/components/StarterPack/ShareDialog.tsx:139 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 +msgid "Share this feed" +msgstr "" + +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 +msgid "Share this search" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:440 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:86 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 +#: src/screens/StarterPack/StarterPackScreen.tsx:646 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:292 +msgid "Share via..." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:232 +msgid "Share your contacts to find friends" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 +msgid "Share your thoughts…" +msgstr "" + +#: src/Navigation.tsx:323 +msgid "Shared Preferences Tester" +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 +msgid "Sharing your age range reveals only the range associated with your Apple Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 +msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:140 +msgid "Show" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:48 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 +#: src/features/liveNow/components/LiveStatusDialog.tsx:318 +#: src/features/liveNow/components/LiveStatusDialog.tsx:322 +#: src/screens/List/ListHiddenScreen.tsx:194 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 +msgid "Show anyway" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 +msgid "Show automation label" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:64 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:125 +msgid "Show customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Show group chat updates" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:190 +msgid "Show list anyway" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:534 +msgid "Show lists of users to select from" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15 +msgid "Show more replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:99 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:108 +#: src/screens/Settings/FollowingFeedPreferences.tsx:118 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:72 +#: src/screens/Settings/FollowingFeedPreferences.tsx:82 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:45 +msgid "Show replies as" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:90 +#: src/screens/Settings/FollowingFeedPreferences.tsx:100 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:133 +#: src/screens/Settings/FollowingFeedPreferences.tsx:143 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:59 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 +msgid "Show when you’re live" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:124 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:169 +#: src/components/moderation/PostHider.tsx:94 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:98 +#: src/components/dialogs/Signin.tsx:100 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 +#: src/screens/Hashtag.tsx:231 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/index.tsx:165 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Login/LoginForm.tsx:554 +#: src/screens/Login/LoginForm.tsx:560 +#: src/screens/Messages/JoinRequest.tsx:290 +#: src/screens/Messages/JoinRequest.tsx:296 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBar.tsx:364 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255 +#: src/view/shell/NavSignupCard.tsx:58 +#: src/view/shell/NavSignupCard.tsx:63 +msgid "Sign in" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:135 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:84 +msgid "Sign in as…" +msgstr "" + +#: src/screens/Deactivated.tsx:195 +#: src/screens/Deactivated.tsx:201 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:76 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:216 +msgid "Sign in to accept invite." +msgstr "" + +#: src/components/AccountList.tsx:70 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:47 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Sign in to request access to this group chat." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:274 +#: src/screens/Settings/Settings.tsx:276 +#: src/screens/Settings/Settings.tsx:308 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:97 +#: src/screens/Takendown.tsx:88 +#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:282 +#: src/view/shell/desktop/LeftNav.tsx:285 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:91 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:305 +#: src/view/shell/desktop/LeftNav.tsx:224 +msgid "Sign out?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:572 +msgid "Sign up" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:96 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:42 +#: src/screens/Login/ChooseAccountForm.tsx:54 +msgid "Signed in as @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 +msgid "Since" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:163 +#: src/components/contacts/screens/VerifyNumber.tsx:205 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:86 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:90 +#: src/screens/Onboarding/StepFinished/index.tsx:295 +#: src/screens/Onboarding/StepFinished/index.tsx:317 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:281 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:105 +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Skip" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:160 +#: src/components/contacts/screens/VerifyNumber.tsx:202 +msgid "Skip contact sharing and continue to the app" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1552 +msgid "Skip empty posts?" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:288 +#: src/screens/Onboarding/StepFinished/index.tsx:314 +msgid "Skip introduction and start using your account" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:278 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 +msgid "Skip to next step" +msgstr "" + +#: src/components/images/Gallery/index.tsx:441 +msgid "slide" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Snoozes the reminder" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:155 +msgid "So many thoughts, you should post one" +msgstr "" + +#: src/components/WelcomeModal.tsx:148 +msgid "Social media you control." +msgstr "" + +#. Name for a feature flag +#: src/analytics/features/index.ts:84 +msgid "Social proofing on posts" +msgstr "" + +#: src/lib/interests.ts:58 +msgid "Software Dev" +msgstr "" + +#: src/screens/Moderation/index.tsx:466 +msgid "Some moderation services in your list are no longer available." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:122 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:628 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:88 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:86 +msgid "Someone joined" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:87 +msgid "Someone joined the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:99 +msgid "Someone left" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:100 +msgid "Someone left the group" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:368 +msgid "Someone reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:67 +msgid "Someone reacted {0} to {target}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:813 +msgid "Someone replied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:60 +msgid "Someone was added" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:61 +msgid "Someone was added to the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:73 +msgid "Someone was removed" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:74 +msgid "Someone was removed from the group" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:103 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 +#: src/components/moderation/ReportDialog/index.tsx:289 +#: src/screens/Deactivated.tsx:86 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +#: src/view/screens/Storybook/Admonitions.tsx:56 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/screens/Moderation/index.tsx:112 +#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Settings/BetaFeaturesSettings.tsx:80 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:185 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:28 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:247 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:231 +msgid "Sorry, we're unable to load account suggestions at this time." +msgstr "" + +#: src/App.tsx:139 +#: src/App.web.tsx:118 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:45 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:52 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:49 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:197 +#: src/components/moderation/ModerationDetailsDialog.tsx:272 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36 +msgid "Spam or other inauthentic behavior or deception" +msgstr "" + +#: src/lib/interests.ts:72 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 +msgid "Sports" +msgstr "" + +#. Description of a feature flag (Social proofing on posts) +#: src/analytics/features/index.ts:90 +msgid "Spot posts your friends and follows have liked." +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:192 +msgid "Start a new chat" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:104 +#: src/screens/ProfileList/FeedSection.tsx:82 +msgid "Start adding people" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:110 +#: src/screens/ProfileList/FeedSection.tsx:88 +msgid "Start adding people!" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:831 +msgid "Start chat" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:428 +#: src/components/dms/InitiateChatFlow.tsx:1087 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 +#: src/screens/StarterPack/Wizard/index.tsx:197 +msgid "Starter Pack" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#: src/components/StarterPack/StarterPackCard.tsx:91 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:765 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:105 +msgid "Starter packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/view/screens/Profile.tsx:569 +msgid "Starter Packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/AboutSettings.tsx:113 +msgid "Status Page" +msgstr "" + +#. placeholder {0}: state.activeStep + 1 +#. placeholder {0}: state.activeStepIndex + 1 +#. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' +#. placeholder {1}: state.totalSteps +#: src/screens/Onboarding/Layout.tsx:226 +#: src/screens/Signup/index.tsx:189 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:410 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:294 +msgid "Stored as part of a secure code for matching with others" +msgstr "" + +#: src/Navigation.tsx:308 +#: src/screens/Settings/Settings.tsx:465 +msgid "Storybook" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182 +msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:122 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128 +#: src/components/moderation/AppealForm.tsx:154 +#: src/components/moderation/AppealForm.tsx:155 +#: src/components/SendErrorReportDialog.tsx:90 +#: src/components/SendErrorReportDialog.tsx:95 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:133 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:80 +msgid "Submit Appeal" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 +msgid "Submit feedback" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:508 +#: src/components/moderation/ReportDialog/index.tsx:569 +#: src/components/moderation/ReportDialog/index.tsx:576 +msgid "Submit report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:75 +msgid "Subscribe" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:447 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:476 +msgid "Subscribe on {0}" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:475 +msgid "Subscribe to {publicationTitle} on {0}" +msgstr "" + +#. placeholder {0}: labelerInfo.creator.handle +#: src/screens/Profile/Sections/Labels.tsx:232 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:252 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:322 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:63 +msgid "Subscribe to this list" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:252 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:160 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 +msgid "Success!" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:131 +msgid "Successfully joined the group chat!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:37 +msgid "Successfully verified" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:432 +msgid "Suggested" +msgstr "" + +#: src/screens/Search/Explore.tsx:369 +msgid "Suggested accounts" +msgstr "" + +#. Accounts suggested to the user for them to follow +#: src/components/FeedInterstitials.tsx:469 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:143 +msgid "Suggestive" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Sunlight" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:333 +#: src/view/screens/Support.tsx:25 +#: src/view/screens/Support.tsx:28 +msgid "Support" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:236 +msgid "Support for this feature in your country has not been enabled yet! Please check back later." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 +msgid "Suspended accounts cannot participate in chat." +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:47 +#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:135 +#: src/screens/Settings/Settings.tsx:624 +#: src/view/shell/desktop/LeftNav.tsx:262 +msgid "Switch account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:124 +msgid "Switch accounts" +msgstr "" + +#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) +#: src/view/shell/desktop/LeftNav.tsx:364 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/components/dialogs/Embed.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 +msgid "System" +msgstr "" + +#: src/screens/Log.tsx:49 +#: src/screens/Settings/AboutSettings.tsx:117 +#: src/screens/Settings/AboutSettings.tsx:120 +#: src/screens/Settings/Settings.tsx:458 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:291 +msgid "Tags only" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:110 +msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." +msgstr "" + +#: src/components/dms/MessageItem.tsx:682 +msgid "Tap for details" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:90 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:45 +msgid "Tap for more information" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:326 +msgid "Tap here to update your location with GPS." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:159 +msgid "Tap to dismiss" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:469 +msgid "Tap to join this group chat immediately" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:200 +msgid "Tap to remove" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/ReactionsDialog.tsx:216 +msgid "Tap to remove your {0} reaction" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:468 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:647 +msgid "Tap to retry" +msgstr "" + +#. placeholder {0}: tab.value +#: src/components/dms/ReactionsDialog.tsx:362 +msgid "Tap to show {0} reactions" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:361 +msgid "Tap to show all reactions" +msgstr "" + +#: src/components/dms/MessageItem.tsx:394 +msgid "Tap to view reactions" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +msgid "Targeted harassment" +msgstr "" + +#: src/state/shell/progress-guide.tsx:236 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:226 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:109 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/lib/interests.ts:73 +msgid "Tech" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:368 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:70 +msgid "Tell us a little more" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:214 +msgid "Temporarily deactivate your account" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:125 +#: src/view/shell/desktop/RightNav.tsx:126 +msgid "Terms" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:181 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 +#: src/Navigation.tsx:343 +#: src/screens/Settings/AboutSettings.tsx:94 +#: src/screens/Settings/AboutSettings.tsx:97 +#: src/view/screens/TermsOfService.tsx:25 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 +msgid "Terms of Service" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:275 +msgid "Text & tags" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:118 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 +msgid "Thanks for your feedback!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:77 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:233 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:224 +msgid "Thanks! You're all set." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:500 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:116 +#: src/screens/StarterPack/StarterPackScreen.tsx:160 +#: src/screens/StarterPack/StarterPackScreen.tsx:161 +#: src/screens/StarterPack/Wizard/index.tsx:116 +#: src/screens/StarterPack/Wizard/index.tsx:126 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:90 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:142 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1212 +msgid "That's everything!" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:422 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:139 +#: src/lib/moderation/useModerationCauseDescription.ts:129 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:169 +msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you." +msgstr "" + +#: src/screens/Moderation/index.tsx:415 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:32 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:29 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:107 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:227 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:70 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:64 +msgid "The following labels were applied to this post." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:63 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:168 +msgid "The following services are enabled for your account: {allowedServices}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:43 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:23 +msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 +msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:29 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:468 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:41 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:775 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:507 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:31 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:29 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:89 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:115 +#: src/components/contacts/screens/VerifyNumber.tsx:113 +#: src/components/contacts/screens/VerifyNumber.tsx:165 +msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:137 +msgid "Theme" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:106 +msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 +msgid "There is no invite link for this group chat." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#. Body message of the error screen shown when the GIF provider request fails. Encourages the user to retry. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:56 +msgid "There was a problem loading GIFs. Check your connection and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:149 +#: src/components/intents/GroupChatJoinDialog.tsx:195 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 +msgid "There was a problem with your internet connection, please try again" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 +#: src/screens/ProfileList/components/Header.tsx:91 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 +#: src/screens/SavedFeeds.tsx:99 +#: src/screens/SavedFeeds.tsx:278 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:133 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:185 +#: src/view/com/lists/ProfileLists.tsx:184 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:109 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:153 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 +#: src/view/com/posts/FeedShutdownMsg.tsx:53 +#: src/view/com/posts/FeedShutdownMsg.tsx:74 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: e.toString() +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:475 +#: src/screens/Messages/ConversationSettings/Member.tsx:71 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:114 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:127 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:92 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:257 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:157 +#: src/view/com/profile/ProfileMenu.tsx:174 +#: src/view/com/profile/ProfileMenu.tsx:187 +#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:218 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:241 +#: src/screens/List/ListHiddenScreen.tsx:67 +#: src/screens/List/ListHiddenScreen.tsx:81 +#: src/screens/List/ListHiddenScreen.tsx:103 +#: src/screens/ProfileList/components/Header.tsx:106 +#: src/screens/ProfileList/components/Header.tsx:120 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:121 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:135 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:38 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:53 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#. Body of the error screen shown when the GIF picker crashes unexpectedly. Encourages the user to report the issue. +#: src/components/dialogs/LanguageSelectDialog.tsx:349 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:27 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:133 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:660 +msgid "These are your default settings" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 +msgid "These domains" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 +msgid "These hashtags" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:66 +msgid "These settings only apply to the Following feed." +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 +msgid "These URLs" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:353 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:177 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:116 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:89 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/BotAccountAlert.tsx:27 +msgid "This account has been marked as automated by its owner." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:94 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:33 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:56 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:96 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 +#: src/screens/Messages/components/ChatDisabled.tsx:138 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "This author has chosen to make their posts visible only to people who are signed in." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:244 +msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below." +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:48 +msgid "This chat has ended" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:301 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:376 +#: src/screens/Messages/components/ChatLocked.tsx:69 +msgid "This chat is locked" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:437 +msgid "This chat is locked by a moderation action" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:17 +msgid "This chat was disconnected" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:106 +msgid "This code is invalid. Resend to get a new code." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:145 +msgid "This confirmation code is not valid. Please try again." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:85 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:122 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This conversation is locked." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:156 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:240 +msgid "This draft will be permanently deleted." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:280 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:283 +msgid "This exact phrase" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:56 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:166 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:61 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:30 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:128 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:60 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:41 +#: src/screens/Profile/ProfileFeed/index.tsx:170 +#: src/screens/ProfileList/FeedSection.tsx:78 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:104 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:72 +msgid "This group is locked by a moderation action on the owner" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:611 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:140 +msgid "This image could not be used. Try a different format like .jpg or .png." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:62 +msgid "This information is private and not shared with other users." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:161 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:236 +msgid "This invite link is invalid" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 +msgid "This is just a one-time security check, since we haven't seen this account on this device before." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:171 +#: src/features/liveNow/components/GoLiveDialog.tsx:161 +msgid "This is not a valid link" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:173 +msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:254 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:184 +msgid "This label was applied by you." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/ModerationDetailsDialog.tsx:231 +msgid "This label was applied to the entire user account and will appear on all posts." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:219 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:95 +msgid "This link is taking you to the following website:" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/screens/List/ListHiddenScreen.tsx:155 +msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:150 +msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:100 +msgid "This list is empty." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:335 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 +msgid "This message is hidden because this user is blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 +msgid "This message is hidden because you are blocking this user." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:41 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "This person is blocking you" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt) +#. placeholder {1}: niceDate(i18n, indexedAt) +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:274 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:248 +msgid "This post was deleted by its author" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1127 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:547 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 +msgid "This screen is only available for group conversations." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/features/liveNow/index.tsx:203 +msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:469 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:214 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:94 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:217 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:99 +#: src/lib/moderation/useModerationCauseDescription.ts:76 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 +msgid "This user has disabled chat and cannot be messaged." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:49 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:196 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 +msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:65 +msgid "This video can’t be previewed in your browser. It will still be uploaded." +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 +msgid "This will create a new list with the same name, description, and members as this starter pack." +msgstr "" + +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:454 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:330 +msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Settings/Settings.tsx:678 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:25 +#: src/screens/PostThread/components/HeaderDropdown.tsx:28 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:70 +#: src/screens/Settings/ContentAndMediaSettings.tsx:73 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:35 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:59 +#: src/screens/PostThread/components/HeaderDropdown.tsx:64 +msgid "Threaded" +msgstr "" + +#: src/Navigation.tsx:376 +msgid "Threads Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134 +msgid "Threats or incitement" +msgstr "" + +#. placeholder {0}: Number(time) || 0 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:68 +msgid "Title" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:71 +msgid "Title (100 characters max)" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:100 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:315 +msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." +msgstr "" + +#: src/components/dms/DateDivider.tsx:27 +msgid "Today" +msgstr "" + +#: src/screens/Moderation/index.tsx:392 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:186 +msgid "Toggles the sound" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:123 +msgid "Too many attempts. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:176 +msgid "Too many codes sent. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:156 +msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends" +msgstr "" + +#: src/screens/Hashtag.tsx:86 +#: src/screens/Search/SearchResults.tsx:83 +#: src/screens/Topic.tsx:58 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:75 +#: src/screens/PostThread/components/HeaderDropdown.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:57 +#: src/screens/Settings/ThreadPreferences.tsx:60 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:503 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:191 +#: src/components/dms/MessageContextMenu.tsx:194 +#: src/components/Post/Translated/index.tsx:150 +#: src/components/Post/Translated/index.tsx:157 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 +msgid "Translate" +msgstr "" + +#: src/components/Post/Translated/index.tsx:326 +msgid "Translated" +msgstr "" + +#: src/components/Post/Translated/index.tsx:113 +msgid "Translating" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 +msgid "Translating…" +msgstr "" + +#: src/lib/translation/index.tsx:305 +msgid "Translation to the same language is unavailable on your device." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:87 +#: src/screens/Settings/ThreadPreferences.tsx:92 +msgid "Tree view" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 +msgid "Trending" +msgstr "" + +#. Accessibility label for the icon-only pill that shows currently trending/featured GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:45 +msgid "Trending GIFs" +msgstr "" + +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 +msgid "Trending options" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:87 +msgid "Trending Videos" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 +msgid "Trolling" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 +msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:260 +msgid "Try a different search term or remove some filters." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:262 +msgid "Try a different search term." +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:171 +msgid "Try again in a moment." +msgstr "" + +#: src/components/Post/Translated/index.tsx:229 +#: src/components/Post/Translated/index.tsx:242 +msgid "Try Google Translate" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "" + +#: src/lib/interests.ts:74 +msgid "TV" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:32 +msgid "Twilight" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Type:" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:86 +msgid "Unable to access location. You'll need to visit your system settings to enable location services for Bluesky." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:30 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:96 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:141 +msgid "Unable to contact your service. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:66 +#: src/screens/Login/index.tsx:100 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:77 +#: src/screens/Signup/index.tsx:89 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:700 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 +msgid "Unable to find the selected recipient." +msgstr "" + +#: src/lib/strings/errors.ts:42 +msgid "Unable to resolve handle" +msgstr "" + +#: src/screens/Settings/Settings.tsx:524 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:526 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:43 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:127 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessageItem.tsx:747 +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:427 +#: src/screens/ProfileList/components/Header.tsx:166 +#: src/screens/ProfileList/components/Header.tsx:173 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 +msgid "Unblock {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:463 +#: src/view/com/profile/ProfileMenu.tsx:469 +msgid "Unblock account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +msgid "Unblock Account?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:242 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:245 +msgid "Unblock list" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 +#: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 +msgid "Undo" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:43 +msgctxt "Button label to undo saving/removing a post from saved posts." +msgid "Undo" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:68 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:396 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:329 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:919 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:492 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:263 +msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:247 +msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:209 +msgid "Unknown verifier" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +msgid "Unlabeled adult content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +msgid "Unlabeled, abusive, or non-consensual adult content" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:276 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:91 +msgid "Unlock chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:568 +msgid "Unlock this group chat" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:180 +#: src/screens/ProfileList/components/Header.tsx:187 +msgid "Unmute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:183 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:153 +#: src/components/RichTextTag.tsx:169 +msgid "Unmute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 +#: src/view/com/profile/ProfileMenu.tsx:442 +#: src/view/com/profile/ProfileMenu.tsx:448 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:272 +msgid "Unmute conversation" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:252 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:255 +msgid "Unmute list" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:533 +msgid "Unmute this group chat" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 +msgid "Unmute video" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Unpin" +msgstr "" + +#: src/components/FeedCard.tsx:355 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 +#: src/screens/SavedFeeds.tsx:467 +msgid "Unpin feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Unpin from profile" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:225 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:228 +msgid "Unpin moderation list" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:78 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:105 +msgid "Unpinned list" +msgstr "" + +#: src/screens/Settings/Settings.tsx:491 +#: src/screens/Settings/Settings.tsx:493 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:354 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:202 +#: src/screens/List/ListHiddenScreen.tsx:212 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:321 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:90 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.tsx:127 +msgid "Unsupported clipboard content" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1644 +msgid "Unsupported video type: {mimeType}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 +msgid "Until" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +#: src/screens/Settings/components/OTAInfo.tsx:77 +msgid "Update" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(profile, true) +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:138 +msgid "Update {0} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 +#: src/screens/Settings/AccountSettings.tsx:110 +#: src/screens/Settings/AccountSettings.tsx:118 +msgid "Update email" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:142 +msgid "Update in Lists" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:275 +#: src/screens/Messages/components/InviteLinkDialog.tsx:303 +msgid "Update invite link" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:544 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:565 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 +msgid "Update your email" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:208 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:252 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 +msgid "Update your location" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:312 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:485 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:494 +#: src/view/com/util/UserAvatar.tsx:497 +#: src/view/com/util/UserBanner.tsx:164 +#: src/view/com/util/UserBanner.tsx:167 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:505 +#: src/view/com/util/UserAvatar.tsx:509 +#: src/view/com/util/UserBanner.tsx:175 +#: src/view/com/util/UserBanner.tsx:179 +msgid "Upload from Library" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2684 +msgid "Uploading GIF..." +msgstr "" + +#: src/lib/api/index.ts:327 +#: src/lib/api/index.ts:354 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:426 +#: src/lib/api/index.ts:450 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2686 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:576 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:78 +#: src/components/dialogs/InAppBrowserConsent.tsx:84 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:104 +#: src/screens/Settings/ContentAndMediaSettings.tsx:110 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:88 +#: src/components/dialogs/InAppBrowserConsent.tsx:94 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:57 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:278 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/screens/Profile.tsx:396 +msgid "user" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +#: src/lib/moderation/useModerationCauseDescription.ts:64 +msgid "User Blocked" +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:56 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:74 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:97 +msgid "User Blocks You" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:303 +msgid "User list by {0}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/state/queries/feed.ts:171 +msgid "User List by {0}" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:301 +msgid "User list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:255 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:241 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:257 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:241 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:245 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:305 +msgid "Username or email" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:315 +msgid "Username or email address" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:337 +msgid "users followed by <0>@{0}" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:324 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:451 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:40 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:344 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:208 +#: src/screens/Moderation/VerificationSettings.tsx:34 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:43 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:105 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:85 +#: src/components/verification/VerificationCreatePrompt.tsx:87 +#: src/view/com/profile/ProfileMenu.tsx:426 +#: src/view/com/profile/ProfileMenu.tsx:429 +msgid "Verify account" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:64 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:546 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:62 +msgid "Verify email dialog" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:65 +msgid "Verify now" +msgstr "" + +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 +msgid "Verify now using KWS" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:175 +#: src/components/contacts/screens/VerifyNumber.tsx:217 +msgid "Verify phone number" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:569 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:52 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 +#: src/screens/Settings/AccountSettings.tsx:84 +#: src/screens/Settings/AccountSettings.tsx:104 +msgid "Verify your email" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Verifying" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:165 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:75 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:307 +msgid "Verifying..." +msgstr "" + +#. placeholder {0}: env.APP_VERSION +#: src/screens/Settings/AboutSettings.tsx:144 +#: src/screens/Settings/AboutSettings.tsx:173 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:162 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:390 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:571 +msgid "Video Feed" +msgstr "" + +#. placeholder {0}: author.handle +#: src/components/VideoPostCard.tsx:122 +msgid "Video from {0}: {text}" +msgstr "" + +#. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) +#: src/screens/VideoFeed/index.tsx:1174 +msgid "Video from {0}. Tap to play or pause the video" +msgstr "" + +#: src/lib/interests.ts:62 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2704 +msgid "Video uploaded" +msgstr "" + +#. placeholder {0}: embed.alt +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:239 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 +#: src/view/com/composer/SelectMediaButton.tsx:440 +msgid "Videos must be less than 3 minutes long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1234 +msgctxt "Action to view the post the user just created" +msgid "View" +msgstr "" + +#. placeholder {0}: view.source.title +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View {0}" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/Shell.tsx:256 +msgid "View {0}'s avatar" +msgstr "" + +#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle +#. placeholder {0}: info.creatorHandle +#. placeholder {0}: profile.handle +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +#: src/screens/Search/components/SearchProfileCard.tsx:37 +#: src/screens/VideoFeed/index.tsx:880 +#: src/view/com/notifications/NotificationFeedItem.tsx:619 +msgid "View {0}'s profile" +msgstr "" + +#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle) +#: src/components/ProfileCard.tsx:150 +msgid "View {0}’s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 +msgid "View {displayName}’s profile" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:478 +msgid "View {publicationTitle}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:479 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:170 +msgid "View blogpost for more details" +msgstr "" + +#: src/screens/Log.tsx:72 +msgid "View debug entry" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 +msgid "View details" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:31 +#: src/view/com/posts/ViewFullThread.tsx:65 +msgid "View full thread" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +msgid "View incoming group chat requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:51 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:200 +#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 +msgid "View more" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:228 +msgid "View more trending videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1229 +msgid "View post" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:465 +#: src/components/ProfileHoverCard/index.web.tsx:485 +#: src/components/ProfileHoverCard/index.web.tsx:512 +#: src/view/com/posts/PostFeedErrorMessage.tsx:183 +#: src/view/com/util/PostMeta.tsx:92 +#: src/view/com/util/PostMeta.tsx:120 +msgid "View profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:163 +msgid "View profile banner" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:448 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:479 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View publication" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:108 +msgid "View the avatar" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:555 +msgid "View the invite link for this group chat" +msgstr "" + +#. placeholder {0}: labeler.creator.handle +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:103 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:401 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:324 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:264 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:294 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:309 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:102 +msgid "View your verifications" +msgstr "" + +#: src/components/images/AutoSizedImage.tsx:222 +#: src/components/images/AutoSizedImage.tsx:254 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:121 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126 +msgid "Violence" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127 +msgid "Violent or threatening content" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:122 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:296 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:49 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 +msgid "Watch now" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:253 +msgid "We apply the highest privacy standards, and never share or sell your contact information." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:141 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:147 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:348 +msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." +msgstr "" + +#: src/screens/Hashtag.tsx:260 +msgid "We couldn't find any results for that tag." +msgstr "" + +#: src/screens/Topic.tsx:166 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:134 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 +msgid "We couldn’t load this conversation’s settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:482 +msgid "We couldn’t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:244 +msgid "We delete hashes after matches are made" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:67 +msgid "We don't store your friends' phone numbers or send any messages" +msgstr "" + +#: src/screens/SignupQueued.tsx:163 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:197 +msgid "We have partnered with <0>KWS to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you won’t need to do it again. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/intents/VerifyEmailIntentDialog.tsx:102 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:184 +msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:241 +msgid "We never keep plain phone numbers" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:247 +msgid "We only suggest follows if both people consent" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:171 +msgid "We recommend selecting at least two interests." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:451 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:19 +msgid "We were unable to load the age assurance configuration for your region, probably due to a network error. Some content and features may be unavailable temporarily. Please try again later." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "We were unable to load your birthdate preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:492 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:305 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:217 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/SignupQueued.tsx:167 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:531 +msgid "We will notify you when we find your friends." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 +msgid "We’d love to hear about your experience testing beta features!" +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:62 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:140 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:83 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:311 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:223 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:151 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:127 +#: src/components/ProgressGuide/FollowDialog.tsx:195 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:321 +msgid "We’re having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 +msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:140 +msgid "We’re so excited to have you join us!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:117 +msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:227 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 +msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance." +msgstr "" + +#: src/screens/ProfileList/index.tsx:88 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:387 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 +msgid "We’re sorry, but your search could not be completed." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 +msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:62 +msgid "We're sorry, you cannot access this screen at this time." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1125 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:223 +#: src/view/screens/NotFound.tsx:44 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:220 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:123 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:64 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:77 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:62 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:257 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:165 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:117 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:59 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:44 +msgid "What do you want to call your starter pack?" +msgstr "" + +#. Advanced search: Example of an “exact phrase” search +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:285 +msgid "what’s up" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 +#: src/view/com/feeds/ComposerPrompt.tsx:192 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 +msgid "When you tap on a check, you’ll see which organizations have granted verification." +msgstr "" + +#: src/components/WhoCanReply.tsx:226 +msgid "Who can interact with this post?" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 +msgid "Who can join this group chat and how" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +#: src/components/WhoCanReply.tsx:116 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:80 +#: src/screens/Messages/ChatList.tsx:409 +#: src/screens/Messages/Inbox.tsx:191 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:126 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:169 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:52 +#: src/components/moderation/ReportDialog/copy.ts:66 +msgid "Why should this conversation be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +msgid "Why should this livestream be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:58 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:51 +msgid "Would you like to block this user and/or delete this conversation?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:47 +msgid "Would you like to block this user and/or leave this conversation?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:110 +msgid "Would you like to save this as a draft before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1523 +msgid "Would you like to save this as a draft to edit later?" +msgstr "" + +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 +msgid "Write a post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1704 +msgid "Write post" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 +#: src/view/com/composer/Composer.tsx:1606 +msgid "Write your reply" +msgstr "" + +#: src/lib/interests.ts:75 +msgid "Writers" +msgstr "" + +#. placeholder {0}: verifyError.did +#: src/screens/Settings/components/ChangeHandleDialog.tsx:368 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 +msgid "Wrong kind of conversation" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:147 +#: src/features/liveNow/components/GoLiveDialog.tsx:142 +msgid "www.mylivestream.tv" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to affirmation/agreement GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:95 +msgid "Yes GIFs" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:105 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:107 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:348 +msgid "Yes, delete my account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:712 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:139 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:29 +msgid "Yesterday" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:61 +msgid "You are a trusted verifier" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:174 +msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:720 +msgid "You are blocking {0}" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "You are blocking the chat owner" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:83 +msgid "You are blocking this person" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "You are creating an account on" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:108 +msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:400 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "You are in line." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:113 +#: src/features/liveNow/components/EditLiveDialog.tsx:118 +msgid "You are Live" +msgstr "" + +#: src/features/liveNow/index.tsx:371 +msgid "You are no longer live" +msgstr "" + +#: src/view/com/composer/state/video.ts:444 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:195 +msgid "You are not following anyone yet" +msgstr "" + +#: src/features/liveNow/index.tsx:315 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:66 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:341 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:210 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:211 +msgid "You can also <0>temporarily deactivate your account instead. Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:60 +#: src/view/com/posts/FollowingEndOfFeed.tsx:61 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:139 +msgid "You can also download your chat data as a \"JSONL\" file. This file only includes chat messages that you have sent and does not include chat messages that you have received." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:250 +msgid "You can always opt out and delete your data" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:134 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:165 +#: src/screens/Messages/Settings.tsx:216 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:154 +msgid "You can now invite friends with a link or QR code. Share the link anywhere, or let them scan the code to join you on Bluesky." +msgstr "" + +#: src/screens/Login/index.tsx:207 +#: src/screens/Login/PasswordUpdatedForm.tsx:25 +msgid "You can now sign in with your new password." +msgstr "" + +#. Toast shown when the user tries to add more images but the post gallery is already at the cap +#: src/view/com/composer/Composer.tsx:222 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1528 +msgid "You can only save drafts up to 1000 characters." +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:116 +msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:443 +msgid "You can only select one GIF at a time." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:437 +msgid "You can only select one video at a time." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:93 +msgid "You can read chat history but can’t send new messages." +msgstr "" + +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:429 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." +msgstr "" + +#: src/components/interstitials/Trending.tsx:142 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 +msgid "You can update this later from your settings." +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:81 +#: src/components/dms/MessageContextMenu.tsx:129 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 +msgid "You cannot create a group chat yet." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:54 +#: src/lib/strings/errors.ts:27 +msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:103 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:589 +msgid "You don't have any lists yet." +msgstr "" + +#: src/screens/SavedFeeds.tsx:153 +#: src/screens/SavedFeeds.tsx:343 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/screens/SavedFeeds.tsx:205 +#: src/screens/SavedFeeds.tsx:381 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:312 +msgid "You got here first" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:93 +#: src/lib/moderation/useModerationCauseDescription.ts:58 +#: src/lib/moderation/useModerationCauseDescription.ts:66 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "You have completed the Age Assurance process, but based on the results, we cannot be sure that you are 18 years of age or older. Due to laws in your region, certain features on Bluesky must remain restricted until you're able to verify you're an adult." +msgstr "" + +#: src/view/screens/Notifications.tsx:291 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:89 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:113 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:117 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:131 +msgid "You have hidden this post." +msgstr "" + +#: src/components/BotAccountAlert.tsx:26 +msgid "You have marked this account as automated. You can remove it at any time from your account settings." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:124 +#: src/lib/moderation/useModerationCauseDescription.ts:100 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:94 +msgid "You have muted this user" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:71 +#: src/view/com/lists/MyLists.tsx:81 +msgid "You have no lists." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:102 +msgid "You have no starter packs." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:155 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:168 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:62 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:188 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1518 +msgid "You have unsaved changes to this draft, would you like to save them?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:105 +msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:159 +msgid "You haven't created any lists yet." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:160 +msgid "You haven't made any custom feeds yet." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:407 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "You hid this reply." +msgstr "" + +#. placeholder {0}: getTimeAgo(lastInitiatedAt, new Date(), {format: 'long'}) +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:240 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/NewskieDialog.tsx:107 +msgid "You joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:104 +msgid "You joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:88 +#: src/components/moderation/ModerationDetailsDialog.tsx:210 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:80 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:101 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:318 +msgid "You must be a chat owner to remove a member." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:177 +msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:89 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:472 +msgid "You need to allow access to your media library." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:349 +msgid "You own this chat" +msgstr "" + +#. placeholder {0}: currentAccount?.handle +#: src/screens/Deactivated.tsx:120 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:421 +msgid "You probably want to restart the app now." +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:361 +msgid "You reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:63 +msgid "You reacted {0} to {target}" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:92 +#: src/components/dialogs/BirthDateSettings.tsx:102 +msgid "You recently changed your birthdate" +msgstr "" + +#: src/components/dms/MessageItem.tsx:806 +msgid "You replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:805 +msgid "You replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:803 +msgid "You replied to yourself" +msgstr "" + +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:105 +msgid "You requested to join" +msgstr "" + +#: src/screens/Settings/Settings.tsx:306 +#: src/view/shell/desktop/LeftNav.tsx:225 +msgid "You will be signed out of all your accounts." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:140 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:101 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:129 +msgid "You won’t be able to rejoin unless you’re invited." +msgstr "" + +#. When the last message in a chat was made by you. +#: src/components/dms/getMessageInfo.ts:82 +msgid "You: {message}" +msgstr "" + +#: src/screens/Signup/index.tsx:158 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#. placeholder {0}: listItemsCount - 8 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:314 +msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:172 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:281 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:133 +msgid "You're all set!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:127 +msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "You're in line" +msgstr "" + +#: src/screens/Deactivated.tsx:81 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:73 +msgid "You've already appealed this label and it's being reviewed by our moderation team." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:128 +#: src/lib/moderation/useModerationCauseDescription.ts:109 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:313 +msgid "You've denied access to your contacts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:237 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:112 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:42 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/view/com/composer/Composer.tsx:729 +msgid "You've reached the maximum number of drafts" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:68 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 +msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." +msgstr "" + +#: src/components/FocusScope/index.tsx:88 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:455 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:459 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1221 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:199 +msgid "Your account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:128 +msgid "Your account has been deleted, see ya! ✌️" +msgstr "" + +#: src/screens/Takendown.tsx:142 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:463 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:836 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:837 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:107 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:210 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:150 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:287 +msgid "Your birth date" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:45 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:70 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:380 +msgid "Your contact {firstAuthorLink} is on Bluesky" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:378 +msgid "Your contact {firstAuthorName} is on Bluesky" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:454 +msgid "Your contact {name}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(currentAccount?.handle || '', '@') +#: src/screens/Settings/components/ChangeHandleDialog.tsx:531 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/screens/Moderation/index.tsx:231 +msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:252 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:82 +#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/StepInfo/index.tsx:129 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:216 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:496 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:41 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#. placeholder {0}: createFullHandle(subdomain, host) +#: src/screens/Settings/components/ChangeHandleDialog.tsx:247 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:182 +msgid "Your hosting provider can’t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:188 +msgid "Your hosting provider is detected automatically from the username you enter." +msgstr "" + +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:94 +#: src/screens/Settings/ContentAndMediaSettings.tsx:97 +#: src/screens/Settings/InterestsSettings.tsx:49 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:138 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:356 +msgid "Your location has been updated." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "Your muted words" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:72 +msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:156 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1225 +msgid "Your post was sent" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1222 +msgid "Your posts were sent" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:289 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 +msgid "Your profile picture" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 +msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1224 +msgid "Your reply was sent" +msgstr "" + +#. placeholder {0}: state.selectedLabeler?.creator.displayName +#: src/components/moderation/ReportDialog/index.tsx:519 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:63 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1553 +msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 +msgid "Your username and password will be shared with <0>{host}. If you don’t recognize this provider, double-check your username." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 4f03316043..615d555121 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Catégorie « {interestsDisplayName} » (active)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(message bloqué masqué)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(avec un contenu intégré)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(message supprimé)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(lien d’invitation invalide à une discussion)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(message envoyé avant votre arrivée)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# heure} other {# heures}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# étiquette appliquée} other {# étiquettes appliquées}} à votre poste" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# étiquette appliquée} other {# étiquettes appliquées}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# compte} other {# comptes}} ont aimé" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membre} other {# membres}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nouvelle demande d’ajout} other {# nouvelles demand #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# personne a} other {# personnes ont}} réagi – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (compte)" @@ -251,36 +252,13 @@ msgstr "{0} ajouté·e à la discussion" msgid "{0} and {1} added to chat" msgstr "{0} et {1} ajouté·e·s à la discussion" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} et {1} aiment ça" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} et {others, plural, one {{1} autre} other {{2} autres}} aiment ça" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} et {othersLabel} aiment ça" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} abonnements" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} vous a bloqué·e" @@ -324,14 +302,6 @@ msgstr "{0} est parti·e" msgid "{0} left the group" msgstr "{0} a quitté le groupe" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} aime ça" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} sur 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} a réagi avec {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} et {memberCount, plural, one {# autre} other {# autres}} ajouté·e·s à la discussion" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} et {others, plural, one {{2} autre} other {{3} autres}} aiment ça" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1}, et {othersLabel} aiment ça" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} a vérifié votre compte" msgid "{following} following" msgstr "{following} abonnements" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} ne peut être ajouté·e" @@ -698,7 +660,7 @@ msgstr "{handle} ne peut être ajouté·e" msgid "{handle} can't be messaged" msgstr "{handle} ne peut être contacté par message" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} ne peut être contacté·e par message" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# élément non lu} other {# éléments msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {Un contact trouvé} other {# contacts trouvés}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} autre} other {{1} autres}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} a rejoint Bluesky il y a {timeAgoString}" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} a rejoint Bluesky à l’aide d’un kit de démarrage il y a {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, one {# caractère restant} other {# caractères restants}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} a répondu" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} a répondu à {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} vous a répondu" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# demande} other {# demandes}}" msgid "{requestCount}+ requests" msgstr "+ de {requestCount} demandes" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "il y a {type} h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} est un vérificateur de confiance" @@ -842,13 +795,13 @@ msgstr "Vérifications de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+ {0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+ {computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {abonnement} other {abonnements}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citation} other {citations}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} other {reposts}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {conservé} other {conservés}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {mention} other {mentions}} « J’aime »" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> vous a ajouté·e" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Se connecter<1> ou <2>créer un compte<3><4> pour rechercher des actualités, du sport, de la politique, et tout ce qui se passe d’autre en ce moment sur Bluesky." @@ -971,7 +924,7 @@ msgstr "30 jours" msgid "7 days" msgstr "7 jours" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Une collection de fils d’actu populaires que vous pouvez trouver sur Bluesky, tels que News, Booksky, Game Dev, Blacksky et Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Une erreur réseau est survenue. Veuillez vérifier votre connexion Inte #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Un nouveau code a été envoyé" msgid "A new form of verification" msgstr "Une nouvelle forme de vérification" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Une réponse à un message envoyé avant votre arrivée" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Une capture d’écran d’une fenêtre de rédaction avec un nouveau bouton aux côtés du bouton de publication appelé « Brouillons », avec un effet d’arc-en-ciel. En dessous, on y lit le texte dans la fenêtre de rédaction (traduit depuis l’anglais) « Hey, t’as entendu la nouvelle ? Bluesky a des brouillons désormais !!! »" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Un des comptes destinataires n’est pas suivi par le compte expéditeur." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Accès demandé ! Le compte propriétaire du groupe examinera votre dem msgid "Accessibility" msgstr "Accessibilité" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Paramètres d’accessibilité" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Compte masqué par liste" msgid "Account options" msgstr "Options de compte" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Compte supprimé de l’accès rapide" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Les comptes avec une coche bleue émaillée <0><1/> peuvent en vérifier d’autres. Ces vérificateurs de confiance sont sélectionnés par Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Activité des autres" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Ajouter un texte alt (facultatif)" msgid "Add another account" msgstr "Ajouter un autre compte" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Ajouter un autre post" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Ajouter un autre post au fil de discussion" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Ajouter un autre filtre de recherche" @@ -1253,7 +1213,7 @@ msgstr "Ajouter une étiquette d’automatisation au compte" msgid "Add emoji reaction" msgstr "Ajouter une réaction émoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Ajouter un filtre" @@ -1338,7 +1298,7 @@ msgstr "Ajouter ce fil à vos fils d’actu" msgid "Add to lists" msgstr "Ajouter à des listes" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Ajouter aux posts conservés" @@ -1400,7 +1360,7 @@ msgstr "Adulte" msgid "Adult content" msgstr "Contenu pour adultes" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permet d’accéder à vos messages privés" msgid "Already have a code?" msgstr "Avez-vous déjà un code ?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Vous avez déjà un compte ?" @@ -1614,7 +1574,7 @@ msgstr "Un e-mail a été envoyé à {0}. Il comprend un code de confirmation qu msgid "An error has occurred" msgstr "Une erreur s’est produite" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Une erreur s’est produite" @@ -1631,7 +1591,7 @@ msgstr "Il y a eu un problème lors de la récupération des comptes suggérés. msgid "An error occurred while fetching the feed." msgstr "Une erreur s’est produite lors de la récupération du fil d’actu." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Une erreur s’est produite lors de la génération de votre kit de démarrage. Vous voulez réessayer ?" @@ -1640,11 +1600,11 @@ msgstr "Une erreur s’est produite lors de la génération de votre kit de dém msgid "An error occurred while hiding suggestion. {0}" msgstr "Une erreur s’est produite lors du masquage de la suggestion. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Une erreur s’est produite lors du chargement de la vidéo. Veuillez réessayer plus tard." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Une erreur s’est produite lors du chargement de la vidéo. Veuillez réessayer." @@ -1684,7 +1644,7 @@ msgstr "Une erreur s’est produite. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Une illustration qui montre des avatars d’utilisateur·ice·s qui s’envolent d’un carnet d’adresse vers l’app Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Une illustration de plusieurs posts de Bluesky à côté des icônes de repost, de « J’aime » et de commentaires" @@ -1705,17 +1665,15 @@ msgstr "Un lien d’invitation permet à des personnes de rejoindre cette discus msgid "An issue not included in these options" msgstr "Un problème qui ne fait pas partie de ces options" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Un problème est survenu lors de la création de la discussion de groupe, veuillez réessayer." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Un problème est survenu lors du démarrage de la discussion, veuillez réessayer." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Un problème est survenu lors de l’ouverture de la discussion" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "N’importe quelle date" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "N’importe qui" @@ -1802,7 +1760,7 @@ msgstr "Quiconque qui me suit" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Quiconque l’avait ne pourra plus rejoindre la discussion ou demander à la rejoindre. Vous pourrez toujours en créer un nouveau." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Les noms de mots de passe d’application doivent comporter au moins 4 c msgid "App passwords" msgstr "Mots de passe d’application" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Mots de passe d’application" @@ -1891,8 +1849,8 @@ msgstr "Faire appel de cette décision" msgid "Appeal this label" msgstr "Faire appel de cette étiquette" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Appliquer la pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archive datée du {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Post archivé" @@ -1980,7 +1938,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer cela de vos fils d’actu ?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Êtes-vous sûr de vouloir retirer votre demande à rejoindre {0} ?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Êtes-vous sûr de vouloir abandonner ce post ?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurores" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Compte automatisé" @@ -2033,7 +1991,7 @@ msgstr "Automatique" msgid "Automation label" msgstr "Étiquette d’automatisation" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Étiquette d’automatisation" @@ -2050,12 +2008,16 @@ msgstr "Lire automatiquement les vidéos et les GIFs" msgid "Available" msgstr "Disponible" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Veuillez vérifier votre e-mail avant de créer un post ou de répondre." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Veuillez vérifier votre e-mail avant de créer un kit de démarrage." @@ -2135,10 +2097,10 @@ msgstr "Avant de pouvoir recevoir des notifications pour les posts de {name}, vo #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Commencez la vérification d’âge en complétant les champs ci-dessous msgid "Beta Feature" msgstr "Fonction en bêta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Fonctionnalités bêta" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Date de naissance" msgid "Birthday" msgstr "Date de naissance" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Bloqué" msgid "Blocked accounts" msgstr "Comptes bloqués" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Comptes bloqués" @@ -2282,7 +2250,7 @@ msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous m 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 "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous. Vous ne verrez pas leur contenu et ils ne pourront pas voir le vôtre." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Le blocage n’empêche pas cet étiqueteur de placer des étiquettes sur votre compte." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ne peut pas confirmer l’authenticité de la date déclarée." @@ -2330,7 +2299,7 @@ msgstr "Bluesky est un réseau ouvert où vous pouvez choisir votre hébergeur. msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky est un réseau ouvert où vous pouvez choisir votre propre hébergeur. Si tout cela est nouveau pour vous, nous vous recommandons de rester sur le choix par défaut Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky est meilleur entre ami·e·s !" @@ -2358,7 +2327,7 @@ msgstr "Conditions générales de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky stocke vos contacts sous forme de données encodées qui seront supprimées immédiatement si vous décidez plus tard de retirer vos contacts." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky choisira un ensemble de comptes recommandés parmi les personnes de votre réseau." @@ -2425,24 +2394,25 @@ msgstr "Parcourir d’autres suggestions sur la page « Explorer »" msgid "Browse other feeds" msgstr "Parcourir d’autres fils d’actu" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Parcourir des posts qui parlent de {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Parcourir des posts avec le mot-clé {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Parcourir le kit de démarrage {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Parcourir le sujet {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Parcourir le sujet {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Bouton pour revenir à la page d’accueil" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Par {0}" @@ -2473,9 +2443,9 @@ msgstr "par @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Par <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "En créant un compte, vous acceptez les <0>Conditions générales et msgid "By creating an account you agree to the <0>Terms of Service." msgstr "En créant un compte, vous acceptez les <0>Conditions générales." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Par vous" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Caméra" @@ -2534,7 +2504,7 @@ msgstr "Accès à l’appareil photo nécessaire" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Accès à l’appareil photo nécessaire" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Annuler la réactivation et se déconnecter" msgid "Cancel reply" msgstr "Annuler la réponse" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Annuler la recherche" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Les changements ultérieurs dans ce kit de démarrage ne seront pas répercutés sur la liste après sa création. La liste sera une copie indépendante." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Discussion en sourdine" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Discussion introuvable." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Options de discussion" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Les propriétaires d’une discussion ne peuvent pas en partir." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Le compte destinataire de la discussion n’est pas suivi par le compte expéditeur." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Demandes de discussion en attente" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Demandes de discussion" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Paramètres de discussion" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Discussion sans sourdine" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Discussions" @@ -2837,7 +2808,7 @@ msgstr "Sélectionnez une méthode de vérification de domaine" msgid "Choose Feeds" msgstr "Choisissez des fils d’actu" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Choisir pour moi" @@ -2854,7 +2825,7 @@ msgstr "Choisissez des personnes" msgid "Choose post languages" msgstr "Choisir les langues du post" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Choisir cette couleur comme avatar" @@ -2879,7 +2850,7 @@ msgstr "Construisez votre propre page d’accueil ! Abonnez-vous à des fils d msgid "Choose your password" msgstr "Choisissez votre mot de passe" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Votre pseudo" @@ -2966,7 +2937,7 @@ msgstr "Cliquez ici pour voir le lien d’invitation pour cette discussion de gr msgid "Click to open tag menu for {0}" msgstr "Cliquez pour ouvrir le menu de mot-clé pour {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Cliquer pour réessayer l’envoi échoué du message" @@ -3003,7 +2974,7 @@ msgstr "Cliquer pour réessayer l’envoi échoué du message" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Cliquer pour réessayer l’envoi échoué du message" msgid "Close" msgstr "Fermer" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Fermer le dialogue actif" @@ -3047,7 +3018,7 @@ msgstr "Fermer la bannière" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Ferme l’aperçu d’image" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Fermer le menu" @@ -3090,7 +3061,7 @@ msgstr "Ferme la bannière des demandes entrantes" msgid "Close this dialog" msgstr "Fermer ce dialogue" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Fermer la fenêtre de bienvenue" @@ -3098,7 +3069,7 @@ msgstr "Fermer la fenêtre de bienvenue" msgid "Closes password update alert" msgstr "Ferme la notification de mise à jour du mot de passe" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Ferme la fenêtre de rédaction et abandonne le brouillon de post" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Couleur" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mode de couleur" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Bandes dessinées" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Règles de bonne conduite" @@ -3141,7 +3112,7 @@ msgstr "Règles de bonne conduite" msgid "Complete onboarding and start using your account" msgstr "Terminez le didacticiel et commencez à utiliser votre compte" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Compléter le défi" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Écrire un nouveau post" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Permet d’écrire des posts de {0, plural, other {# caractères}} maximum" @@ -3160,11 +3131,11 @@ msgstr "Permet d’écrire des posts de {0, plural, other {# caractères}} maxim msgid "Compose reply" msgstr "Rédiger une réponse" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Compression du GIF en cours…" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Compression de la vidéo en cours…" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Contacter notre équipe support" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contacter le support" @@ -3253,7 +3224,7 @@ msgstr "Contenu et médias" msgid "Content and media" msgstr "Contenu et médias" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contenu et médias" @@ -3265,10 +3236,6 @@ msgstr "Contenu bloqué" msgid "Content filters" msgstr "Filtres de contenu" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Du contenu provenant des quatre coins du réseau que nous pensons que vous pourriez aimer." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Langues des contenus" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Contenu promouvant ou illustrant de l’automutilation" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Avertissement sur le contenu" msgid "Content warnings" msgstr "Avertissements sur le contenu" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Menu contextuel en arrière-plan, cliquez pour fermer le menu." @@ -3302,7 +3269,7 @@ msgstr "Menu contextuel en arrière-plan, cliquez pour fermer le menu." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Poursuivre le fil de discussion…" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continuer vers le nom du groupe" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Discussion introuvable." msgid "Copied build version to clipboard" msgstr "Version de build copiée dans le presse-papier" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Lien copié dans le presse-papier" @@ -3376,7 +3343,7 @@ msgstr "Lien copié dans le presse-papier" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copier le mot de passe d’application" msgid "Copy at:// URI" msgstr "Copier l’URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copier le DID de l’auteur·ice" @@ -3449,10 +3416,10 @@ msgstr "Copier le lien" msgid "Copy link to list" msgstr "Copier le lien vers la liste" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copier le lien vers le post" @@ -3470,8 +3437,8 @@ msgstr "Copier le lien vers le kit de démarrage" msgid "Copy message text" msgstr "Copier le texte du message" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copier l’URI at:// du post" @@ -3490,7 +3457,7 @@ msgstr "Copier la valeur du registre TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politique sur les droits d’auteur" @@ -3540,11 +3507,11 @@ msgstr "Échec du suivi de tous les contacts trouvés. {0}" msgid "Could not leave chat" msgstr "Impossible de se retirer de la discussion" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Impossible de partir de la discussion." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Impossible de charger le fil d’actu" @@ -3562,7 +3529,7 @@ msgstr "Impossible de charger le profil" msgid "Could not mute chat" msgstr "Impossible de mettre la discussion en sourdine" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Impossible de retirer le membre." @@ -3606,8 +3573,8 @@ msgstr "vaches cochons" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Créer" @@ -3624,26 +3591,26 @@ msgstr "Créer une liste à partir de ce kit de démarrage" msgid "Create a QR code for a starter pack" msgstr "Créer un code QR pour un kit de démarrage" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Créer un kit de démarrage" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Créer un kit de démarrage" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Créer un kit de démarrage pour moi" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "S’inscrire" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Créer un compte" @@ -3666,15 +3633,15 @@ msgstr "Créer un compte" msgid "Create an account without using this starter pack" msgstr "Créer un compte sans utiliser ce kit de démarrage" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Créer plutôt un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Créer un autre" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Créer une discussion de groupe" @@ -3743,7 +3710,7 @@ msgstr "Culture" msgid "Current beta features" msgstr "Fonctionnalités bêta disponibles" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Discussion actuelle" @@ -3770,8 +3737,8 @@ msgstr "Abus de substances dangereuses ou drogues" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Sombre" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Sombre" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Thème sombre" @@ -3814,7 +3781,7 @@ msgstr "Refuser cette suggestion de langue" msgid "Deepfake adult content" msgstr "Deepfake de contenu pour adultes" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Par défaut" @@ -3894,7 +3861,7 @@ msgstr "Supprimer mon compte" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Supprimer le post" @@ -3988,7 +3955,7 @@ msgstr "Une boîte de dialogue : réglez qui peut interagir avec ce post" msgid "Dialog: Set search filters" msgstr "Boîte de dialogue : définir les filtres de recherche" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Atténué" @@ -4002,7 +3969,7 @@ msgstr "Désactiver" msgid "Disable 2FA" msgstr "Désactiver le 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Désactiver les sous-titres" @@ -4045,9 +4012,9 @@ msgstr "Désactivé" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Abandonner" msgid "Discard changes?" msgstr "Abandonner les changements ?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Abandonner le brouillon ?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Abandonner ce post ?" @@ -4079,6 +4046,10 @@ msgstr "Déconnecter de Germ DM" 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/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Empêcher les applis de montrer mon compte aux personnes non connectées msgid "Discover new custom feeds" msgstr "Découvrir des fils d’actu personnalisés" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Découvrir de nouveaux fils d’actu" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Découvrir de nouveaux fils d’actu" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignorer" @@ -4103,19 +4070,19 @@ msgstr "Ignorer" msgid "Dismiss banner" msgstr "Ignorer la bannière" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Ignorer l’erreur" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Annuler le guide de démarrage" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Ignorer les centres d’intérêt" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Ignorer la bannière du direct" @@ -4142,7 +4109,7 @@ msgstr "Afficher des badges de texte alt plus grands" msgid "Display name" msgstr "Nom d’affichage" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Oubliez les trolls et les contenus racoleurs. Trouvez des vrais humains et des sujets de conversations qui vous intéressent." @@ -4205,8 +4172,8 @@ msgstr "Pas d’inquiétude ! Tous les messages existants et vos paramètres so #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Pas d’inquiétude ! Tous les messages existants et vos paramètres so msgid "Done" msgstr "Terminé" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tapez deux fois ou appuyez longtemps sur le message pour ajouter une réaction" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tapez deux fois pour fermer cette boîte de dialogue" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tapez deux fois pour aimer" @@ -4328,6 +4295,7 @@ msgstr "Troubles alimentaires" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Modifier l’image" msgid "Edit interaction settings" msgstr "Modifier les paramètres d’interaction" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Modifier les centres d’intérêt" @@ -4397,7 +4365,7 @@ msgstr "Modifier le statut « En direct »" msgid "Edit moderation list" msgstr "Modifier la liste de modération" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Modifier mes fils d’actu" @@ -4406,6 +4374,11 @@ msgstr "Modifier mes fils d’actu" msgid "Edit name" msgstr "Modifier le nom" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Modifier les personnes" @@ -4444,7 +4417,7 @@ msgstr "Modifier la liste de comptes" msgid "Edit who can reply" msgstr "Modifier qui peut répondre" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Modifier votre kit de démarrage" @@ -4500,8 +4473,8 @@ msgstr "Code HTML à intégrer" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Intégrer le post" @@ -4509,7 +4482,7 @@ msgstr "Intégrer le post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Intégrez ce post à votre site web. Il suffit de copier l’extrait suivant et de le coller dans le code HTML de votre site web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Lecteur vidéo intégré" @@ -4533,7 +4506,7 @@ msgstr "Activer le contenu pour adultes" msgid "Enable beta features" msgstr "Activer des fonctionnalités bêta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Activer les sous-titres" @@ -4550,12 +4523,13 @@ msgstr "Activer les médias externes" msgid "Enable media players for" msgstr "Activer les lecteurs médias pour" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activez les notifications pour un compte en visitant leur profil puis en appuyant sur l’<0>icône de cloche <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Activer les alertes (notifs push)" @@ -4581,7 +4555,7 @@ msgstr "Activer les vidéos tendances dans votre fil Discover" msgid "Enabled" msgstr "Activé" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin du fil d’actu" @@ -4608,7 +4582,7 @@ msgstr "Saisir un mot ou un mot-clé" msgid "Enter code" msgstr "Entrer le code" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Passer en plein écran" @@ -4650,11 +4624,11 @@ msgstr "Entrez votre pseudo et votre mot de passe" msgid "Enters full screen" msgstr "Passe en mode plein écran" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Divertissement" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erreur" @@ -4684,7 +4658,7 @@ msgstr "Échec lors de l’enregistrement du fichier" msgid "Error receiving captcha response." msgstr "Erreur de réception de la réponse captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Erreur : {error}" @@ -4696,8 +4670,8 @@ msgstr "Tout le monde peut répondre" msgid "Everybody can reply to this post." msgstr "Tout le monde peut répondre à ce post." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Tout le monde" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Tout le monde" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Divers" @@ -4738,7 +4712,7 @@ msgstr "Exclure les comptes que vous suivez" msgid "Excludes users you follow" msgstr "Exclut les comptes que vous suivez" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Quitter le plein écran" @@ -4755,11 +4729,11 @@ msgstr "Développer la liste des comptes" msgid "Expand or collapse the full post you are replying to" msgstr "Développe ou réduit le post complet auquel vous répondez" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Développer le post" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Développe ou réduit le texte du post" @@ -4802,15 +4776,15 @@ msgstr "Médias explicites ou potentiellement dérangeants." msgid "Explicit sexual images." msgstr "Images sexuelles explicites." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorer" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Explorer l’app" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Préférences sur les médias externes" @@ -4886,7 +4860,7 @@ msgstr "Le changement de pseudo a échoué. Veuillez réessayer." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Échec de la copie du lien" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Échec du retrait de la discussion de groupe" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Échec du chargement des conversations" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Échec du chargement des fils d’actu" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Échec du chargement des fils d’actu" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Échec du chargement des paramètres de notification." @@ -5012,14 +4987,14 @@ msgstr "Échec du chargement des préférences." msgid "Failed to load profiles" msgstr "Échec du chargement des profils" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Échec du chargement des fils d’actu suggerés" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Échec du chargement des suivis suggérés" @@ -5027,12 +5002,12 @@ msgstr "Échec du chargement des suivis suggérés" msgid "Failed to lock group chat" msgstr "Échec du verrouillage de la discussion de groupe" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Échec du marquage de toutes les discussions comme lues" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Échec de l’annulation de votre demande. Veuillez réessayer." msgid "Failed to resolve location. Please try again." msgstr "Échec de la géolocalisation. Veuillez réessayer." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Échec de l’enregistrement du brouillon" @@ -5191,7 +5166,7 @@ msgstr "Faux compte ou bot" msgid "False information about elections" msgstr "Fausses infos concernant des élections" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Fil d’actu" @@ -5212,7 +5187,7 @@ msgstr "Fil d’actu créé par" msgid "Feed identifier" msgstr "Identifiant du fil d’actu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu du fil d’actu" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Commentaires envoyés au fournisseur du fil d’actu" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Fils d’actu mis à jour !" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Fils d’actu qui pourraient vous plaire." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Rechercher des mises à jour" @@ -5273,11 +5244,11 @@ msgstr "Rechercher des mises à jour" msgid "File saved successfully!" msgstr "Fichier enregistré avec succès !" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Filtrer par auteur·ice" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrer par auteur·ice (actuellement : {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Filtrer cette recherche par {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrer qui peut décider de recevoir des notifications pour votre activité" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrer de qui vous recevrez des notifications" @@ -5352,8 +5323,8 @@ msgstr "Trouver des comptes à suivre" msgid "Find and invite friends" msgstr "Trouver et inviter des amis" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Rechercher des contacts" @@ -5387,7 +5358,7 @@ msgstr "Retrouver vos amis" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Retrouvez vos amis sur Bluesky en vérifiant votre numéro de téléphone et en utilisant vos contacts. Nous protégeons vos informations et vous avez la main sur ce qui se passe ensuite. <0>En savoir plus (en anglais)" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Retrouvez vos pairs" @@ -5429,7 +5400,7 @@ msgstr "Mettre en focus le champ de recherche" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Suivre {0}" msgid "Follow {displayName}" msgstr "S’abonner à {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Suivre {handle}" @@ -5453,11 +5424,11 @@ msgstr "Suivre {handle}" msgid "Follow 10 accounts" msgstr "Suivre 10 comptes" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Suivez 10 personnes pour commencer" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Suivre 7 comptes" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Accessible aux comptes abonnés" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Abonné·e·s de @{0} que vous connaissez" @@ -5544,7 +5515,7 @@ msgstr "Abonné·e·s que vous connaissez" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Suit {0}" msgid "Following {displayName}" msgstr "Abonné·e à {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Suit {handle}" @@ -5578,21 +5549,21 @@ msgstr "Suit {handle}" msgid "Following feed preferences" msgstr "Préférences du fil des abonnements" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Préférences du fil des abonnements" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Vous suit" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Police de caractères" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Taille de police" @@ -5612,13 +5583,13 @@ msgstr "Pour des raisons de sécurité, nous devrons envoyer un code de confirma msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Pour des raisons de sécurité, vous ne pouvez consulter ceci qu’une seule fois. Si vous perdez ce mot de passe d’application, vous devrez en générer un nouveau." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pour une meilleure expérience, nous vous recommandons d’utiliser la police thématique." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Pour vous" @@ -5628,7 +5599,7 @@ msgstr "Pour vous" msgid "Forever" msgstr "Pour toujours" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Oubliez le bruit" @@ -5647,11 +5618,13 @@ msgstr "Mot de passe oublié ?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Quatre bulles de message représentant une discussion de groupe. Premier message (en anglais dans le texte) : « Tu as entendu la nouvelle ? Bluesky propose maintenant des discussions de groupe ! » Deuxième message : « oh, tu déconnes » Troisième message : « Wow, 50 personnes dans une seule discussion ! » Quatrième message : « Tu peux même envoyer des liens d’invitation ! »" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Libérez votre fil d’actu" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Provenant de" @@ -5674,7 +5647,7 @@ msgstr "Tiré de <0/>" msgid "From these people" msgstr "De ces comptes" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Générer un kit de démarrage" @@ -5718,39 +5691,39 @@ msgstr "Accédez en avant-première aux fonctionnalités expérimentales que nou msgid "Get help" msgstr "Obtenir de l’aide" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Notifier quand quelqu’un s’inscrit avec un de vos kits de démarrage, quand votre compte est vérifié, etc." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Notifier quand des comptes vous suivent." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Notifier quand des comptes aiment vos posts." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Notifier quand des comptes aiment vos reposts." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Notifier quand des comptes vous mentionnent." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Notifier quand des comptes vous citent." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Notifier quand des comptes répondent à vos posts." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Notifier quand des comptes republient vos posts." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Notifier quand des comptes repostent vos reposts." @@ -5762,15 +5735,15 @@ msgstr "Notifier quand des comptes vous envoient des demandes de message." msgid "Get notifications when people send you messages." msgstr "Notifier quand des comptes vous envoient des messages." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Notifier quand il y a de l’activité sur des posts auxquels vous vous êtes abonné·e." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Recevoir une notification à chaque nouveau post" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Recevoir des notifications pour les nouveaux posts de {name}" @@ -5799,11 +5772,11 @@ msgstr "C’est parti" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF envoyé" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Donner à votre profil un visage" @@ -5813,20 +5786,20 @@ msgstr "Glorification de la violence" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Passer en direct pendant" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Se rendre sur le profil de {0}" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nom de la discussion de groupe modifié" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Paramètres de la discussion de groupe" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Les discussions de groupe ne peuvent avoir qu’un maximum de {0, plural, other {# personnes}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Le groupe est verrouillé" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nom du groupe" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Le nom du groupe est trop long. La taille maximum est de {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {# caractère.} other {# caractères.}}" @@ -6077,7 +6051,7 @@ msgstr "Activités néfastes ou à haut risque" msgid "Harming or endangering minors" msgstr "Contenu néfaste ou dangereux pour des mineurs" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Mot-clé" @@ -6098,7 +6072,7 @@ msgstr "Vous avez un code ? <0>Cliquez ici." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "On se trompe sur votre position ? <0>Tapez ici pour la mettre à jour via GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Un souci ?" @@ -6114,7 +6088,7 @@ msgstr "Conservé par Bluesky pendant 7 jours pour éviter les abus, puis suppri msgid "Help" msgstr "Aide" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 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." @@ -6140,7 +6114,7 @@ msgstr "Bonjour !" msgid "Hidden" msgstr "Masqué" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Masqué par vos paramètres de modération." @@ -6148,9 +6122,9 @@ msgstr "Masqué par vos paramètres de modération." msgid "Hidden list" msgstr "Liste cachée" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Liste cachée" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Cacher" @@ -6198,7 +6172,7 @@ msgstr "Cacher cette réponse pour tout le monde" msgid "Hide reply for me" msgstr "Cacher cette réponse pour moi" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Cacher cette carte" @@ -6218,12 +6192,12 @@ msgstr "Cacher cette réponse ?" msgid "Hide translation" msgstr "Masquer la traduction" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Cacher les tendances" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Cacher les tendances ?" @@ -6240,7 +6214,7 @@ msgstr "Cacher la liste des comptes" msgid "Hide verification badges" msgstr "Masquer les badges de vérification" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Cache ce contenu" @@ -6293,8 +6267,8 @@ msgstr "Hmm, nous n’avons pas pu charger ce service de modération." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Attendez ! Nous donnons progressivement accès à la vidéo et vous faites toujours la queue. Revenez bientôt !" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Hébergeur : {0}" msgid "Hosting provider: Bluesky" msgstr "Hébergeur : Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Populaire" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Comment ça marche :" @@ -6409,6 +6379,7 @@ msgstr "Si vous mettez à jour votre adresse e-mail, la 2FA par e-mail sera dés msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si vous souhaitez modifier votre mot de passe, nous vous enverrons un code pour vérifier qu’il s’agit bien de votre compte." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Si vous voulez restreindre qui peut recevoir des notifications concernant votre propre activité, vous pouvez le faire depuis <0>Paramètres → Confidentialité et sécurité." @@ -6548,7 +6519,7 @@ msgstr "Dans l’app., alertes, de tout le monde" msgid "In-app, push, people you follow" msgstr "Dans l’app., alertes, des comptes suivis" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Boîte de réception vide" @@ -6560,6 +6531,7 @@ msgstr "C’est vide !" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à votre kit de démarrage en effectuant une recherche ci-dessus." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID de job : {0}" @@ -6816,8 +6788,8 @@ msgstr "Participez à la conversation" msgid "Journalism" msgstr "Journalisme" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Revenir à l’édition" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Site de KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Étiqueté par {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Étiqueté par l’auteur·ice." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Étiquettes" @@ -6852,7 +6824,7 @@ msgstr "Étiquettes ajoutées" msgid "Labels applied to this post" msgstr "Étiquettes appliquées à ce post" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 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." @@ -6864,7 +6836,7 @@ msgstr "Étiquettes sur votre compte" msgid "Language" msgstr "Langue" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Paramètres linguistiques" @@ -6874,7 +6846,7 @@ msgstr "Paramètres linguistiques" msgid "Languages" msgstr "Langues" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Plus grande" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Démarré la dernière fois à l’instant" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Dernier" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "En savoir plus (en anglais)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "En savoir plus" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "En savoir plus sur <0>comment utiliser la recherche avancée (en anglais)." @@ -6937,8 +6909,8 @@ msgstr "En savoir plus sur l’import de contacts (en anglais)" msgid "Learn more about self hosting your PDS." msgstr "En savoir plus sur l’auto-hébergement de PDS (en anglais)." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "En savoir plus sur la modération appliquée à ce contenu" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Apprenez-en plus sur ces changements et sur la manière dont vous pouvez partager vos réflexions avec nous en lisant notre article de blog (en anglais)." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "En savoir plus sur cet avertissement" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "En savoir plus dans vos <0>paramètres de compte." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "En savoir plus." @@ -6993,8 +6965,8 @@ msgstr "Se retirer" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Vous quittez Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Partir de cette discussion la verrouillera définitivement et vous ne pourrez plus la rejoindre." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "A quitté la discussion de groupe." @@ -7042,7 +7014,7 @@ msgstr "A quitté la discussion de groupe." msgid "left to go." msgstr "devant vous dans la file." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Laissez-moi choisir" @@ -7057,7 +7029,7 @@ msgstr "Allons-y !" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Clair" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Clair" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Aimer" @@ -7076,7 +7048,7 @@ msgstr "Aimer" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Aimer ({0, plural, one {# ont aimé} other {# ont aimé}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Aimer 10 posts" @@ -7085,7 +7057,7 @@ msgstr "Aimer 10 posts" msgid "Like 10 posts to train the Discover feed" msgstr "Aimez 10 posts afin de former le fil d’actu « Discover »" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Aimer ce fil d’actu" @@ -7093,8 +7065,8 @@ msgstr "Aimer ce fil d’actu" msgid "Like this labeler" msgstr "Aimer cet étiqueteur" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Aimé par" @@ -7111,27 +7083,45 @@ msgstr "Aimé par" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Aimé par {0, plural, one {# compte} other {# comptes}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Aimé par {likeCount, plural, one {# compte} other {# comptes}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Posts aimés" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "« J’aime » de vos reposts" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Mentions « J’aime » sur ce post" @@ -7144,7 +7134,7 @@ msgstr "Linéaire" msgid "Link copied to clipboard" msgstr "Lien copié dans le presse-papiers" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liste" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste réaffichée" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Direct en cours : {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Direct masqué" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Direct réaffiché" @@ -7279,12 +7269,12 @@ msgstr "La fonction « En direct » est en bêta" msgid "Live link" msgstr "Lien vers le direct" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Charger plus" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Charger d’autres fils d’actu suggérés" @@ -7292,8 +7282,8 @@ msgstr "Charger d’autres fils d’actu suggérés" msgid "Load new notifications" msgstr "Charger les nouvelles notifications" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Verrouiller cette discussion de groupe" msgid "Locked" msgstr "Verrouillée" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Journaux" @@ -7387,7 +7377,7 @@ msgstr "GIFs d’amour" msgid "Make adjustments to email settings for your account" msgstr "Ajuster les paramètres d’e-mail pour votre compte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "En faire un pour moi" @@ -7418,15 +7408,15 @@ msgstr "Manuel" msgid "Mark all as read" msgstr "Tout marquer comme lus" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marquer toutes les discussions comme lues" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marqué comme lu" msgid "Marked all as read" msgstr "Tout marqué comme lus" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Toutes les discussions marquées comme lues" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Toutes les demandes marquées comme lues" @@ -7456,8 +7446,12 @@ msgstr "Toutes les demandes marquées comme lues" msgid "Maybe later" msgstr "Peut-être plus tard" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Média" @@ -7475,7 +7469,7 @@ msgstr "Média stocké sur un autre appareil" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Médias qui peuvent être perturbants ou inappropriés pour certains publics." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membre retiré de la discussion de groupe." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "comptes mentionnés" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mentions" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Message supprimé" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Échec de l’envoi du message." @@ -7563,15 +7557,15 @@ msgstr "Le message est trop long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Options de message" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Messages" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Les messages de ce compte resteront masqués tant que vous resterez bloqué·e par celui-ci." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Les messages de ce compte resteront masqués tant qu’il restera bloqué." @@ -7592,7 +7586,7 @@ msgstr "Trompeur" msgid "Missing media" msgstr "Média manquant" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Modération" @@ -7636,7 +7630,7 @@ msgstr "Liste de modération mise à jour" msgid "Moderation lists" msgstr "Listes de modération" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listes de modération" @@ -7645,7 +7639,7 @@ msgstr "Listes de modération" msgid "moderation settings" msgstr "paramètres de modération" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "États de modération" @@ -7786,7 +7780,7 @@ msgstr "En sourdine" msgid "Muted accounts" msgstr "Comptes masqués" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Comptes masqués" @@ -7867,7 +7861,6 @@ msgstr "Besoin de signaler une violation de droit d’auteur, un problème de co msgid "Nevermind, create a handle for me" msgstr "Peu importe, créez un pseudo pour moi" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nouveau" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {Nouveau post} other {Nouveaux posts}} de {firs #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nouvelle discussion" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Nouvelle fonctionnalité" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nouveaux comptes abonnés" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nouvelle discussion de groupe" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nouvelle discussion de groupe" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nouvelle discussion de groupe avec :" @@ -7966,13 +7959,13 @@ msgstr "Nouvelle liste" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Nouvelles demandes de message" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Nouveaux messages" @@ -7982,12 +7975,12 @@ msgstr "Nouveaux messages" msgid "New password" msgstr "Nouveau mot de passe" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nouveau post" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Réponses les plus récentes en premier" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Actualités" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Image suivante" msgid "Night" msgstr "Nuit" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Pas de publicité, pas de traçage intrusif, pas de piège à engagement. Bluesky respecte votre temps et votre attention." @@ -8098,7 +8091,7 @@ msgstr "Pas d’expiration définie" msgid "No feeds found. Try searching for something else." msgstr "Aucun fil d’actu n’a été trouvé. Essayez de chercher autre chose." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Aucun compte abonné pour l’instant" @@ -8118,7 +8111,7 @@ msgstr "Pas d’image" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Pas encore de mentions « j’aime »" @@ -8135,7 +8128,7 @@ msgstr "Aucune liste" msgid "No longer following {0}" msgstr "Ne suit plus {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Aucun média pour l’instant" @@ -8143,7 +8136,7 @@ msgstr "Aucun média pour l’instant" msgid "No messages yet" msgstr "Pas encore de messages" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Libérez-vous des algorithmes toxiques pleins de contenus nuisibles. Optez pour des fils d’actu qui vous enrichissent au lieu de vous exploiter." @@ -8184,12 +8177,12 @@ msgstr "Personne ne peut envoyer de message" msgid "No posts here" msgstr "Pas de posts ici" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Aucun post pour l’instant" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Pas encore de citations" @@ -8202,7 +8195,7 @@ msgstr "Pas de GIFs récents pour l’instant. Choisissez-en un pour le voir ici msgid "No replies" msgstr "Aucune réponse" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Aucune réponse pour l’instant" @@ -8217,13 +8210,13 @@ msgstr "Aucun résultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Aucun résultat" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Aucun résultat pour « {0} »." @@ -8236,23 +8229,23 @@ msgstr "Aucun résultat trouvé" msgid "No results found for \"{query}\"" msgstr "Aucun résultat trouvé pour « {query} »" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "Aucun résultat trouvé pour « <0>{query} » en utilisant les filtres de recherche avancés." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Aucun résultat trouvé pour « <0>{query} »." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Aucun résultat trouvé pour votre requête en utilisant les filtres de recherche avancés." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Aucun résultat." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Aucun kit de démarrage pour l’instant" @@ -8265,7 +8258,7 @@ msgstr "Non merci" msgid "No translation received from your device." msgstr "Aucune traduction reçue depuis votre appareil." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Aucun post vidéo pour l’instant" @@ -8278,7 +8271,7 @@ msgstr "Personne" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Personne n’a encore mis « j’aime ». Peut-être devriez-vous ouvrir la voie !" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Personne n’a encore cité. Peut-être devriez-vous ouvrir la voie !" @@ -8298,6 +8291,10 @@ msgstr "Imagerie intime sans consentement" msgid "Non-sexual Nudity" msgstr "Nudité non sexuelle" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Indisponible sur cette plateforme." msgid "Not followed by anyone you’re following" msgstr "Pas suivi par quiconque que vous suivez" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Introuvable" @@ -8333,7 +8330,7 @@ msgstr "Note sur le partage" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Remarque : Bluesky est un réseau ouvert et public. Ce paramètre limite uniquement la visibilité de votre contenu sur l’application et le site Web de Bluesky, et d’autres applications peuvent ne pas respecter ce paramètre. Votre contenu peut toujours être montré aux personnes non connectées par d’autres applications et sites Web." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Note : Ce post n’est visible qu’aux personnes connectées." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Rien n’a encore été conservé" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Paramètres de notification" @@ -8353,11 +8350,12 @@ msgstr "Paramètres de notification" msgid "Notification sounds" msgstr "Sons de notification" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Oh non !" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "OK" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Réinitialiser le didacticiel" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Un des comptes destinataires sélectionnés n’autorise pas les discussions de groupe." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Un des comptes destinataires sélectionnés vous a bloqué et ne pourra pas être contacté." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Un ou plusieurs GIFs n’ont pas de texte alt." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Une ou plusieurs images n’ont pas de texte alt." @@ -8454,11 +8454,11 @@ msgstr "Un ou plusieurs des fichiers sélectionnés ne sont pas pris en charge." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Un ou plusieurs des fichiers sélectionnés sont trop gros. La taille maximale est de {VIDEO_MAX_SIZE_MB} Mo." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Un ou plusieurs posts sont trop longs pour être enregistrés comme brouillons. La limite est {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {d’un caractère} other {de # caractères}} maximum." -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Une ou plusieurs vidéos n’ont pas de texte alt." @@ -8471,7 +8471,7 @@ msgstr "Seul {0} peut répondre." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Seulement {0} des {1} {2, plural, one {image} other {images}} ont été ajoutées ; la limite est de {MAX_GALLERY_IMAGES} images" @@ -8519,7 +8519,7 @@ msgstr "Uniquement les posts avec des vidéos" msgid "Only replies" msgstr "Uniquement les réponses" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Seuls les fichiers WebVTT (.vtt) sont pris en charge" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Oups, ce profil n’existe pas. Essayez d’en scanner un autre." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Oups !" @@ -8544,7 +8544,7 @@ msgstr "Oups !" msgid "Open advanced search options" msgstr "Ouvrir les options de recherches avancées" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Ouvre le créateur d’avatar" @@ -8570,21 +8570,22 @@ msgstr "Ouvrir les options de conversation" msgid "Open draft" msgstr "Ouvrir le brouillon" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Ouvre le menu latéral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Ouvrir le sélecteur d’emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Ouvrir l’écran des infos sur le fil d’actu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Ouvrir le menu des options de fil d’actu" @@ -8627,7 +8628,7 @@ msgstr "Ouvrir la page de débogage de modération" msgid "Open muted words and tags settings" msgstr "Ouvrir les paramètres des mots masqués et mots-clés" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Ouvrir le kit" @@ -8699,7 +8700,7 @@ msgstr "Ouvre des détails supplémentaires pour une entrée de débug" msgid "Opens alt text dialog" msgstr "Ouvre la boîte de dialogue sur le texte alt" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Ouvre l’appareil photo de l’appareil" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Ouvre le flux de création d’un nouveau compte Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Ouvre le parcours pour vous connecter à votre compte Bluesky existant" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Mot de passe mis à jour !" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Mettre en pause" @@ -8925,12 +8926,12 @@ msgstr "Mettre en pause" msgid "Pause GIF" msgstr "Mettre en pause le GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Mettre en pause la vidéo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personnes" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Les personnes que {ownerName} peuvent demander à rejoindre" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personnes suivies par @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personnes qui suivent @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Comptes suivis" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Les personnes que je suis peuvent demander à rejoindre" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Comptes que vous suivez" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Images destinées aux adultes." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Épingler le fil d’actu" @@ -9034,7 +9035,7 @@ msgstr "Épingler le fil d’actu" msgid "Pin to home" msgstr "Ajouter à l’accueil" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Ajouter à l’accueil" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Épinglé" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} ajouté à l’accueil" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Épinglé à vos fils d’actu" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Lire" @@ -9076,8 +9077,8 @@ msgstr "Lire {0}" msgid "Play GIF" msgstr "Lire le GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Lancer la vidéo" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Veuillez écrire votre message ci-dessous :" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politique" @@ -9269,7 +9270,7 @@ msgstr "Politique" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Poster" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Publier une photo" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Publier une vidéo" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Tout poster" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Poster quand même" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Post bloqué" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Post de @{0}" @@ -9340,7 +9341,7 @@ msgstr "Post caché par vous" msgid "Post interaction settings" msgstr "Paramètres d’interaction du post" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Paramètres d’interaction du post" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Post épinglé" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Post conservé" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Post désépinglé" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Posts" @@ -9398,6 +9396,10 @@ msgstr "Les posts peuvent être masqués en fonction de leur texte, de leurs mot msgid "Posts hidden" msgstr "Posts cachés" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Lien potentiellement trompeur" @@ -9449,20 +9451,21 @@ msgstr "Vie privée" msgid "Privacy and security" msgstr "Confidentialité et sécurité" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Confidentialité et sécurité" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Paramètres de confidentialité et sécurité" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Politique de confidentialité" msgid "Privacy violation of a minor" msgstr "Violation de la vie privée d’un mineur" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Traitement du GIF en cours…" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Traitement de la vidéo en cours…" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listes publiques et partageables de comptes à masquer ou à bloquer." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publier le post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publier les posts" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publier les réponses" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publier la réponse" @@ -9599,12 +9602,12 @@ msgstr "Citations désactivées" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citations" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citations de ce post" @@ -9647,7 +9650,7 @@ msgstr "Réactiver votre compte" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Lire {0, plural, one {une autre réponse} other {# autres réponses}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Découvrez-en plus sur les filtres de recherche avancés (en anglais)" @@ -9657,11 +9660,11 @@ msgstr "Découvrez-en plus sur les filtres de recherche avancés (en anglais)" msgid "Read blog post" msgstr "Lire l’article de blog (en anglais)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Lire moins" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Lire plus" @@ -9687,11 +9690,11 @@ msgstr "Lire la politique de confidentialité de Bluesky (en anglais)" msgid "Read the Bluesky Terms of Service" msgstr "Lire les conditions générales de Bluesky (en anglais)" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Des vraies conversations." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Des vrais humains." @@ -9721,10 +9724,6 @@ msgstr "Recherches récentes" msgid "Recently used" msgstr "Utilisé récemment" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recommandé" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Se reconnecter" @@ -9748,7 +9747,7 @@ msgstr "Décliner la demande de discussion" msgid "Reject join request" msgstr "Rejeter la demande à rejoindre" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Rafraîchir les conversations" @@ -9766,7 +9765,7 @@ msgstr "Rafraîchir les conversations" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Supprimer" @@ -9792,8 +9791,8 @@ msgstr "Retirer {displayName} ?" msgid "Remove {q}" msgstr "Supprimer {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Supprimer compte" @@ -9845,15 +9844,15 @@ msgstr "Supprimer le filtre" msgid "Remove from chat" msgstr "Supprimer de la discussion" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Supprimer de mes fils d’actu" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Supprimer de l’accès rapide ?" @@ -9862,7 +9861,7 @@ msgstr "Supprimer de l’accès rapide ?" msgid "Remove from saved feeds" msgstr "Supprimer des fils d’actu enregistrés" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Retirer des posts conservés" @@ -9880,8 +9879,8 @@ msgstr "Supprimer l’image" msgid "Remove live status" msgstr "Supprimer le statut « En direct »" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Retirer le membre" @@ -9943,7 +9942,7 @@ msgstr "Supprimé de la liste" msgid "Removed from saved feeds" msgstr "Supprimé de vos fils d’actu enregistrés" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Retiré des posts conservés" @@ -9952,7 +9951,7 @@ msgstr "Retiré des posts conservés" msgid "Removed from starter pack" msgstr "Compte retiré du kit de démarrage" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "en réponse à vous" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Message de {senderName} à l’origine de la réponse, appuyer pour l’atteindre" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Le message concerné a été envoyé avant votre arrivée" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Message à l’origine de la réponse, appuyer pour l’atteindre" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Réponses" @@ -10037,7 +10037,7 @@ msgstr "Les réponses à ce post sont désactivées." msgid "Reply" msgstr "Répondre" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Répondre" @@ -10098,8 +10098,8 @@ msgstr "Signaler la conversation" msgid "Report dialog" msgstr "Fenêtre de dialogue de signalement" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Signaler le fil d’actu" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republié par vous" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Reposts" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reposts de ce post" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Reposts de vos reposts" @@ -10253,7 +10253,7 @@ msgstr "Demandée" msgid "Requests" msgstr "Demandes" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Réessaye la dernière action, qui a échoué" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Retour à la page d’accueil" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Retour à la page précédente" @@ -10446,27 +10446,27 @@ msgstr "Enregistrer la date de naissance" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Enregistrer les modifications" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Enregistrer les modifications ?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Enregistrer le brouillon" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Enregistrer le brouillon ?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Enregistrer le code QR" msgid "Save these options for next time" msgstr "Enregistrer ces choix pour la prochaine fois" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Enregistrer dans mes fils d’actu" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Fils d’actu enregistrés" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Posts conservés" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Enregistré à mes fils d’actu" @@ -10520,8 +10520,8 @@ msgstr "Enregistré à mes fils d’actu" msgid "Say hello!" msgstr "Dites bonjour !" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Dites bonjour à quelqu’un" @@ -10535,7 +10535,7 @@ msgstr "Scanner" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Scanner un QR code" @@ -10543,15 +10543,15 @@ msgstr "Scanner un QR code" msgid "Science" msgstr "Science" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Défiler à gauche" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Défiler à droite" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Faire défiler jusqu’au message à l’origine de cette réponse" @@ -10564,8 +10564,8 @@ msgstr "Remonter en haut" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Recherche" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Rechercher dans les posts de @{0}" @@ -10612,11 +10612,11 @@ msgstr "Rechercher {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Recherchez des fils d’actu que vous voulez suggérer à d’autres personnes." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Rechercher plus de comptes" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Rechercher plus de fils d’actu" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Rechercher des GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "La recherche est indisponible en ce moment sans connexion à un compte" @@ -10709,6 +10709,7 @@ msgstr "Voir les offres d’emploi chez Bluesky (en anglais)" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Voir plus" @@ -10716,8 +10717,12 @@ msgstr "Voir plus" msgid "See more suggested profiles" msgstr "Voir plus de profils suggérés" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Voir les comptes suggérés" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Curseur de recherche. Utiliser les touches de flèches pour avancer ou reculer, et Espace pour la lecture/pause." #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Sélectionner la catégorie « {interestsDisplayName} »" @@ -10748,7 +10753,7 @@ msgstr "Sélectionner {0}" msgid "Select {langName}" msgstr "Sélectionner {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Sélectionner une couleur" @@ -10764,11 +10769,11 @@ msgstr "Sélectionner un compte" msgid "Select an app language" msgstr "Sélectionner une langue pour l’appli." -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Sélectionner un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Sélectionner un emoji" @@ -10780,12 +10785,13 @@ msgstr "Sélectionner une option" msgid "Select app language" msgstr "Sélectionner la langue de l’appli." -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Sélectionnez le fichier de sous-titres (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Sélectionner la discussion « {name} »" @@ -10826,7 +10832,7 @@ msgstr "Sélectionner le GIF" msgid "Select GIF \"{0}\"" msgstr "Sélectionner le GIF « {0} »" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Sélectionner les membres du groupe" @@ -10864,7 +10870,7 @@ msgstr "Sélectionner la langue principale" msgid "Select telephone code" msgstr "Sélectionner un code téléphonique" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Sélectionner l’emoji {emojiName} comme avatar" @@ -10945,7 +10951,8 @@ msgstr "Envoyer le message" msgid "Send post to {name}" msgstr "Envoyer le post à {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Envoyer le post à…" @@ -10963,12 +10970,12 @@ msgstr "Envoyer le message depuis votre téléphone" msgid "Send verification email" msgstr "Envoyer l’e-mail de vérification" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Envoyer par message privé" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Sélectionner votre hébergeur manuellement" msgid "Sets email for password reset" msgstr "Définit l’e-mail pour la réinitialisation du mot de passe" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Paramètres" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Paramètres des notifications d’activité d’autres comptes" @@ -11036,49 +11043,49 @@ msgstr "Paramètres des notifications d’activité d’autres comptes" msgid "Settings for allowing others to be notified of your posts" msgstr "Paramètres autorisant les autres à être notifié de vos posts" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Paramètres des notifications « J’aime »" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Paramètres des notifications de mentions" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Paramètres des notifications de nouveaux comptes abonnés" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Paramètres des notifications diverses" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Paramètres des notifications « J’aime » de vos reposts" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Paramètres des notifications de nouvelles demandes de messages" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Paramètres des notifications de nouveaux messages" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Paramètres des notifications des reposts de vos reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Paramètres des notifications de citations" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Paramètres des notifications de réponses" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Paramètres des notifications de reposts" @@ -11115,8 +11122,8 @@ msgstr "Partager votre tranche d’âge" msgid "Share anyway" msgstr "Partager quand même" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Partager le DID de l’auteur" @@ -11127,7 +11134,7 @@ msgstr "Partager le DID de l’auteur" msgid "Share feedback" msgstr "Donner son avis" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialogue pour le partage d’un lien" msgid "Share my profile" msgstr "Partager mon profil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Partager l’URI at:// du post" @@ -11169,12 +11176,12 @@ msgstr "Partager le profil" msgid "Share QR code" msgstr "Partager le code QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Partager ce fil d’actu" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Partager cette recherche" @@ -11186,8 +11193,8 @@ msgstr "Partagez ce kit de démarrage" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Partagez ce kit de démarrage et aidez les gens à rejoindre votre communauté sur Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Partager vos contacts pour retrouver des amis" msgid "Share your thoughts…" msgstr "Partagez-nous ce que vous avez sur le cœur…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testeur de préférences partagées" @@ -11219,7 +11226,7 @@ msgstr "Partager votre tranche d’âge ne révèle que celle associée à votre msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Partager votre tranche d’âge ne révèle que celle associée à votre compte Google — par exemple, le fait que vous ayez au moins 18 ans. <0>Votre âge exact et votre date de naissance ne nous seront jamais partagées, et cette donnée reste sur votre appareil. En contrepartie de quoi, cela n’activera votre accès que sur cet appareil. Vous pouvez sinon <1>passer par notre partenaire de confiance KWS pour compléter votre vérification d’âge et activer votre accès quelle que soit la plateforme." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Afficher" msgid "Show alt text" msgstr "Voir le texte alt" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Afficher quand même" @@ -11274,9 +11281,9 @@ msgstr "Afficher quand même la liste" msgid "Show lists of users to select from" msgstr "Afficher des listes au sein desquels choisir" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Voir plus" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Afficher l’avertissement et filtrer des fils d’actu" msgid "Show when you’re live" msgstr "Rendez visibles vos streams" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Affiche plus d’informations sur la date de création de ce post" @@ -11341,15 +11348,15 @@ msgstr "Affiche plus d’informations sur la date de création de ce post" msgid "Shows other accounts you can switch to" msgstr "Affiche les autres comptes vers lesquels vous pouvez basculer" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Affiche le contenu" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Affiche le contenu" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Se déconnecter ?" msgid "Sign up" msgstr "S’inscrire" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Connexion requise" @@ -11469,7 +11476,7 @@ msgstr "Ignorer" msgid "Skip contact sharing and continue to the app" msgstr "Sauter le partage de contacts et continuer vers l’app" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Ignorer les posts vides ?" @@ -11487,7 +11494,7 @@ msgstr "Sauter à l’étape d’après" msgid "slide" msgstr "diapo" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Plus petite" @@ -11499,7 +11506,7 @@ msgstr "Repousse le rappel" msgid "So many thoughts, you should post one" msgstr "Tellement d’idées que ça vaudrait le coup d’en publier une" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Un réseau où vous avez la main." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Quelqu’un a quitté le groupe" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Quelqu’un a réagi avec {0}" @@ -11554,7 +11561,7 @@ msgstr "Quelqu’un a réagi avec {0}" msgid "Someone reacted {0} to {target}" msgstr "Quelqu’un a réagi {0} à {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Quelqu’un a répondu" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Quelque chose n’a pas marché, veuillez réessayer" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Quelque chose n’a pas marché. Veuillez réessayer plus tard." msgid "Something went wrong. Please try again." msgstr "Quelque chose n’a pas marché. Veuillez réessayer." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Un problème ? Dites-nous tout." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam, comportements inauthentiques ou déceptifs" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sports" @@ -11668,7 +11675,7 @@ msgstr "Démarrez une conversation, et elle apparaîtra ici." msgid "Start a group chat" msgstr "Démarrer une discussion de groupe" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Démarrer une nouvelle discussion" @@ -11682,17 +11689,17 @@ msgstr "Commencer à ajouter des personnes" msgid "Start adding people!" msgstr "Commencez à ajouter des personnes !" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Démarrer la discussion" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Démarrer une discussion avec {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Kit de démarrage" @@ -11715,12 +11722,16 @@ msgstr "Kit de démarrage par vous" msgid "Starter pack is invalid" msgstr "Le kit de démarrage n’est pas valide" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Kits de démarrage" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Les kits de démarrage vous permettent de partager facilement vos fils d’actu et vos personnes préférées avec vos ami·e·s." @@ -11728,7 +11739,7 @@ msgstr "Les kits de démarrage vous permettent de partager facilement vos fils d msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Les kits de démarrage vous permettent de partager vos fils d’actu préférés et vos personnes favorites." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Les kits de démarrage vous permettent de partager vos fils d’actu et vos personnes préférées avec vos ami·e·s." @@ -11742,7 +11753,7 @@ msgstr "État du service" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Étape {0} sur {1}" @@ -11754,7 +11765,7 @@ msgstr "Stockage effacé, vous devez redémarrer l’application maintenant." msgid "Stored as part of a secure code for matching with others" msgstr "Stocké sous forme de code sécurisé (hashé) pour retrouver d’autres comptes" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Historique" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "S’abonner à {publicationTitle} sur {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonnez-vous à @{0} pour utiliser ces étiquettes :" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Vérification réussie" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Suggestion" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Comptes suggérés" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Coucher du soleil" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Cette fonctionnalité n’a pas encore été activée dans votre pays ! Veuillez revenir plus tard." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Les comptes suspendus ne peuvent pas participer à une discussion de groupe." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Les comptes suspendus ne peuvent pas participer à une discussion." @@ -11921,8 +11934,8 @@ msgstr "Basculer vers {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Système" @@ -11945,7 +11958,7 @@ msgstr "Passez à une conversation privée." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Appuyez ci-dessous pour autoriser Bluesky à accéder à votre position GPS. Nous l’utiliserons pour déterminer plus précisément quels contenus et quelles fonctionnalités sont disponibles dans votre région." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tapez ici pour plus de détails" @@ -11976,7 +11989,7 @@ msgstr "Taper pour fermer le menu contextuel" msgid "Tap to copy this invite link" msgstr "Appuyez pour copier ce lien d’invitation" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Appuyer pour annuler" @@ -12003,7 +12016,7 @@ msgstr "Appuyer pour supprimer votre réaction {0}" msgid "Tap to request access to join this group chat" msgstr "Appuyez pour demander l'accès à cette discussion de groupe" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Appuyer pour réessayer" @@ -12016,7 +12029,7 @@ msgstr "Appuyer sur afficher {0} réactions" msgid "Tap to show all reactions" msgstr "Appuyer pour afficher toutes les réactions" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Appuyer pour voir les réactions" @@ -12032,7 +12045,7 @@ msgstr "Tâche accomplie - 10 abonnements !" msgid "Task complete - 10 likes!" msgstr "Tâche accomplie - 10 posts aimés !" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Apprendre à notre algorithme ce que vous aimez" @@ -12060,7 +12073,7 @@ msgstr "Conditions générales" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Ce kit de démarrage n’a pas pu être trouvé." msgid "That username is already taken" msgstr "Ce pseudo est déjà utilisé" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Et voilà, c’est tout !" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "C’est tout !" @@ -12216,7 +12229,7 @@ msgstr "Le serveur semble rencontrer des problèmes. Veuillez réessayer ultéri msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Le kit de démarrage que vous essayez de consulter n’est pas valide. Vous pouvez supprimer ce kit de démarrage à la place." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Le sujet du menu contextuel" @@ -12238,7 +12251,7 @@ msgstr "Le code de vérification que vous avez fourni n’est pas valide. Assure msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Le fournisseur de vérification n’a pas réussi à envoyer de code à votre numéro de téléphone. Vérifiez votre numéro et réessayez." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Thème" @@ -12266,7 +12279,7 @@ msgstr "Un problème est survenu lors du chargement des GIFs. Vérifiez votre co msgid "There was a problem with your internet connection, please try again" msgstr "Il y a un problème avec votre connexion Internet, veuillez réessayer" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Il y a un problème avec votre connexion Internet, veuillez réessayer" msgid "There was an issue contacting the server" msgstr "Il y a eu un problème de connexion au serveur" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Il y a eu un problème de connexion au serveur, vérifiez votre connexion Internet et réessayez." @@ -12283,8 +12296,8 @@ msgstr "Il y a eu un problème de connexion au serveur, vérifiez votre connexio msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération des notifications. Appuyez ici pour réessayer." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération des posts. Appuyez ici pour réessayer." @@ -12309,7 +12322,7 @@ msgstr "Il y a eu un problème lors de la récupération de vos informations de msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Il y a eu un problème lors de la suppression de ce fil d’actu. Vérifiez votre connexion internet et réessayez." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Ces paramètres s’appliquent seulement pour votre fil d’abonnements. msgid "These URLs" msgstr "Ces URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Ce compte est propriétaire de la discussion" @@ -12392,7 +12405,7 @@ msgstr "Ce compte est propriétaire de la discussion" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Ce compte ne pourra pas revenir à moins qu’il soit à nouveau réinvité." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Ce {screenDescription} a été signalé :" @@ -12408,7 +12421,7 @@ msgstr "Ce compte a été marqué comme automatisé par la personne qui le contr msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Ce compte a une ou plusieurs tentatives de vérifications, mais n’est pas actuellement vérifié." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Ce compte a demandé aux personnes de se connecter pour voir son profil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ce fil d’actu est vide ! Vous devriez peut-être suivre plus de comptes ou ajuster vos paramètres de langue." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Ce fil d’actu est vide." @@ -12554,7 +12567,7 @@ msgstr "Ce groupe est verrouillé par une décision de modération concernant so msgid "This handle is reserved. Please try a different one." msgstr "Ce pseudo est réservé. Veuillez utiliser un pseudo différent." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Impossible d’utiliser cette image. Essayez avec un autre format, comme .jpg ou .png." @@ -12596,7 +12609,7 @@ msgstr "Cette étiquette a été apposée par vous." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Cette étiquette a été appliquée sur l’intégralité du compte et apparaîtra sur tous les posts." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Cet étiqueteur n’a pas déclaré les étiquettes qu’il publie et peut ne pas être actif." @@ -12621,13 +12634,13 @@ msgstr "Cette liste est vide." msgid "This message is hidden" msgstr "Ce message est caché" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Ce message est caché car vous êtes bloqué·e par ce compte." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Ce message est caché car vous avez bloqué ce compte." @@ -12641,7 +12654,7 @@ msgstr "Cette personne vous a bloquée" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ce post déclare avoir été créé le <0>{0}, mais a été vu pour la première fois par Bluesky le <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Ce post déclare avoir été créé le <0>{0}, mais a été vu pour msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ce post a un type inconnu de restriction de fil. Votre appli. n’est peut-être pas à jour." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Ce post n’est visible qu’aux personnes connectées." @@ -12661,7 +12674,7 @@ msgstr "Ce post a été supprimé par son auteur·ice" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ce post sera masqué des fils d’actu et des fils de discussion. C’est irréversible." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "L’auteur·ice de ce post a désactivé les citations." @@ -12698,11 +12711,12 @@ msgstr "Cela ne devrait prendre que quelques minutes." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Ce compte n’a pas de nom d’affichage, et ne peut donc pas être vérifié." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Ce compte n’a pas d’abonné·e·s." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Ce compte vous a bloqué et ne peut pas être contacté." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Ce compte vous a bloqué. Vous ne pouvez pas voir son contenu." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Ce compte a désactivé les discussions et ne peut pas être contacté." @@ -12733,11 +12748,11 @@ msgstr "Ce compte est inclus dans la liste <0>{0} que vous avez masquée." msgid "This user is new here. Press for more info about when they joined." msgstr "Ce compte est nouveau ici. Appuyez pour obtenir plus d’informations sur sa date d’arrivée." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Ce compte ne suit personne." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Cette vidéo ne peut pas être lue sur votre appareil. Votre navigateur ou votre système n’a peut-être pas le codec nécessaire (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Cela supprimera définitivement votre compte Bluesky <0>{currentHandle} et toutes les données qui y sont associées. Notez que cela affectera aussi tous les services <1>AT Protocol que vous utilisez avec ce compte." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Cela supprimera @{0} de la liste d’accès rapide." @@ -12786,7 +12801,7 @@ msgstr "Préférences des fils de discussion" msgid "Threaded" msgstr "Sous forme de fils" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Préférences des fils de discussion" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Trop de contacts — vous avez dépassé le nombre de contacts que vous pouvez importer pour trouver vos amis" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Meilleur" @@ -12858,7 +12873,7 @@ msgstr "Meilleur" msgid "Top replies first" msgstr "Meilleures réponses en premier" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Sujet" @@ -12893,7 +12908,9 @@ msgstr "La traduction vers la même langue n’est pas disponible sur votre appa msgid "Tree view" msgstr "Vue arborescente" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendances" @@ -12902,7 +12919,7 @@ msgstr "Tendances" msgid "Trending GIFs" msgstr "GIFs tendance" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Paramètres des tendances" @@ -12918,11 +12935,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La confiance émerge de relations, de communautés et d’un contexte partagé, donc nous désignons également des <0>vérificateurs de confiance : des organisations qui peuvent vérifier des comptes directement." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Essayez un autre terme de recherche ou supprimez certains filtres." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Essayez un autre terme de recherche." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Impossible de récupérer les demandes à rejoindre." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Impossible de trouver un des comptes destinataires sélectionnés." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Impossible de trouver le compte destinataire sélectionné." @@ -13024,12 +13043,12 @@ msgstr "Indisponible" msgid "Unavailable feed information" msgstr "Informations sur le fil d’actu indisponible" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Débloquer le compte ?" msgid "Unblock list" msgstr "Débloquer la liste" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Se désabonner de {0}" msgid "Unfollow account" msgstr "Se désabonner du compte" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Se désabonne du compte" @@ -13132,7 +13151,7 @@ msgstr "Contenu pour adultes non-étiqueté" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Non-étiqueté, abusif ou sans consentement" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Retirer la mention « J’aime »" @@ -13192,7 +13211,7 @@ msgstr "Enlever la sourdine de cette discussion de groupe" msgid "Unmute thread" msgstr "Réafficher ce fil de discussion" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Rétablir le son de la vidéo" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Désépingler" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Désépingler le fil d’actu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Désépingler de l’accueil" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Supprimer la liste de modération" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} retiré de la page d’accueil" @@ -13258,11 +13277,11 @@ msgstr "Se désabonner de cet étiqueteur" msgid "Unsubscribed from list" msgstr "Désabonné de la liste" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Contenu à coller non supporté" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Type de vidéo non pris en charge : {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "La mise à jour de la visibilité de la réponse a échoué" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Envoyer plutôt une photo" @@ -13355,7 +13374,7 @@ msgstr "Envoyer à partir de fichiers" msgid "Upload from Library" msgstr "Envoyer à partir de la photothèque" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Envoi du GIF en cours…" @@ -13369,7 +13388,7 @@ msgstr "Envoi des images en cours…" msgid "Uploading link thumbnail..." msgstr "Envoi de la miniature du lien en cours…" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Envoi de la vidéo en cours…" @@ -13408,7 +13427,7 @@ msgstr "Utilisez-le pour vous connecter à l’autre application avec votre pseu msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Utilisez l’adresse e-mail de votre compte, ou une autre adresse e-mail véritable que vous contrôlez, au cas où KWS ou Bluesky auraient besoin de vous contacter." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "compte" @@ -13510,7 +13529,7 @@ msgstr "La vérification a échoué, veuillez réessayer." msgid "Verification settings" msgstr "Paramètres de vérification" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Paramètres de vérification" @@ -13618,7 +13637,7 @@ msgstr "Vidéo" msgid "Video failed to process" msgstr "Le traitement de la vidéo a échoué" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Fil de vidéos" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Vidéo de {0} : {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Vidéo de {0}. Tapez pour lire ou mettre en pause la vidéo" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Jeux vidéo" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Vidéo en pause" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Vidéo en cours de lecture" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Vidéo non trouvée." @@ -13653,7 +13672,7 @@ msgstr "Vidéo non trouvée." msgid "Video settings" msgstr "Paramètres vidéo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Vidéo envoyée" @@ -13662,17 +13681,17 @@ msgstr "Vidéo envoyée" msgid "Video: {0}" msgstr "Vidéo : {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vidéos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Les vidéos doivent durer moins de 3 minutes." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Voir" @@ -13691,9 +13710,9 @@ msgstr "Voir l’avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Voir le profil de {0}" @@ -13724,13 +13743,13 @@ msgstr "Voir l’article de blog (en anglais) pour plus de détails" msgid "View debug entry" msgstr "Afficher l’entrée de débogage" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Voir les détails" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Voir le fil de discussion entier" @@ -13761,7 +13780,7 @@ msgstr "Voir plus" msgid "View more trending videos" msgstr "Voir plus de vidéos tendances" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Voir le post" @@ -13798,11 +13817,11 @@ msgstr "Voir le lien d’invitation pour cette discussion de groupe" msgid "View the labeling service provided by @{0}" msgstr "Voir le service d’étiquetage fourni par @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Voir les vérifications de ce compte" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Voir les comptes qui ont aimé ce fil d’actu" @@ -13831,7 +13850,7 @@ msgstr "Consulter vos listes de modération" msgid "View your muted accounts" msgstr "Consulter vos comptes masqués" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Voir vos vérifications" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Nous avons des soucis de réseau, réessayez" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Nous avons des soucis de réseau, réessayez" @@ -14043,7 +14062,7 @@ msgstr "Nous avons des soucis de réseau, réessayez" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Nous introduisons un nouveau niveau de vérification sur Bluesky — une coche facile à voir." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Nous sommes ravis de vous accueillir !" @@ -14064,13 +14083,15 @@ msgstr "Nous sommes désolés, mais nous n’avons pas pu charger cette liste. S 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/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "Nous sommes désolés, mais votre recherche n’a pas pu aboutir." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 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 n’a pu aboutir. Veuillez réessayer dans quelques minutes." @@ -14078,7 +14099,7 @@ msgstr "Nous sommes désolés, mais votre recherche n’a pu aboutir. Veuillez r msgid "We're sorry, you cannot access this screen at this time." msgstr "Nous sommes désolés, vous ne pouvez pas accéder à cet écran actuellement." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 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é." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "quoi de neuf" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Quoi de neuf ?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Qui peut vérifier ?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Oups !" @@ -14220,21 +14241,21 @@ msgstr "Souhaitez-vous bloquer ce compte ou partir de cette conversation ?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Voulez-vous enregistrer ça comme brouillon avant d’aller les consulter ?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Voulez-vous enregistrer ça comme brouillon à modifier plus tard ?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Écrire un post" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Rédiger un post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Rédigez votre réponse" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Vous vous connectez à Bluesky depuis une région qui nous oblige légalement à vérifier votre âge avant de vous laisser accéder à l’application." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Vous avez bloqué {0}" @@ -14342,7 +14363,7 @@ msgstr "Vous n’êtes plus en direct" msgid "You are not allowed to upload videos." msgstr "Vous n’êtes pas autorisé à envoyer des vidéos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Vous ne suivez personne pour l’instant" @@ -14362,7 +14383,7 @@ msgstr "Votre compte est vérifié. Il perdra son statut de vérification si vou msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Votre compte est vérifié. Il perdra son statut de vérification si vous changez votre pseudo. <0>En savoir plus (en anglais)." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Vous pouvez modifier vos centres d’intérêt à tout moment depuis les paramètres « Contenu et médias »." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Vous pouvez maintenant vous connecter avec votre nouveau mot de passe." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Vous ne pouvez ajouter que {MAX_GALLERY_IMAGES, plural, other {# images}} par post au maximum" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Les brouillons enregistrés ne peuvent contenir que 1000 caractères maximum." @@ -14439,9 +14460,9 @@ msgstr "Vous pouvez lire l’historique de la discussion mais pas envoyer de nou msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Vous pouvez sélectionner jusqu'à {MAX_GALLERY_IMAGES, plural, other {# images}} au total." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Vous pourrez changer ça plus tard depuis vos paramètres." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Vous ne pouvez pas ajouter plus {EMOJI_REACTION_LIMIT, plural, one {d’une réaction} other {de # réactions}} emoji" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Vous ne pouvez pas encore créer de discussions de groupe." @@ -14555,7 +14577,7 @@ msgstr "Vous avez vérifié votre adresse e-mail avec succès. Vous pouvez ferme msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Vous avez temporairement atteint la limite d’envoi de vidéos. Veuillez réessayer plus tard." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Vous avez des modifications non-enregistrées dans ce brouillon, voulez-vous les enregistrer ?" @@ -14563,7 +14585,7 @@ msgstr "Vous avez des modifications non-enregistrées dans ce brouillon, voulez- msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Vous avez des modifications non-enregistrées. Voulez-vous les sauvegarder avant de consulter vos brouillons ?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Vous n’avez pas encore créé de kit de démarrage !" @@ -14614,7 +14636,7 @@ msgstr "Vous ne pouvez ajouter que {STARTER_PACK_MAX_SIZE, plural, one {{STARTER msgid "You may only add up to 3 feeds" msgstr "Vous ne pouvez ajouter que 3 fils d’actu au maximum" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Vous devez être propriétaire de la discussion pour en retirer un membre." @@ -14622,7 +14644,7 @@ msgstr "Vous devez être propriétaire de la discussion pour en retirer un membr msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Vous devez avoir au moins 13 ans pour utiliser Bluesky. Lisez nos <0>Conditions générales pour plus d’informations." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit de démarrage." @@ -14639,7 +14661,7 @@ msgstr "Vous devez autoriser l’accès à votre médiathèque." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Vous devez vérifier votre adresse e-mail avant de pouvoir utiliser la 2FA par e-mail." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Vous êtes propriétaire de cette discussion" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Vous voulez sans doute redémarrer l’appli. maintenant." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Vous avez réagi avec {0}" @@ -14667,15 +14689,15 @@ msgstr "Vous avez réagi {0} à {target}" msgid "You recently changed your birthdate" msgstr "Vous avez changé récemment de date de naissance" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Vous avez répondu" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Vous avez répondu à {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Vous avez répondu à vous-même" @@ -14715,11 +14737,11 @@ msgstr "Vous ne pourrez plus la rejoindre à moins d’y être invité·e." msgid "You: {message}" msgstr "Vous : {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Vous suivrez les comptes et fils d’actu suggérés une fois que vous aurez créé votre compte !" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Vous suivrez les comptes suggérés une fois que vous aurez créé votre compte !" @@ -14791,7 +14813,7 @@ msgstr "Vous êtes arrivé à la fin du contenu actuel." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Vous avez atteint la fin de votre fil d’actu ! Trouvez d’autres comptes à suivre." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Vous avez atteint le nombre maximum de brouillons" @@ -14799,7 +14821,7 @@ msgstr "Vous avez atteint le nombre maximum de brouillons" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Vous avez atteint le nombre maximum de requêtes autorisées. Veuillez réessayer plus tard." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Vous avez atteint le maximum de {MAX_FILTERS, plural, one {# filtre} other {# filtres}}. Ajoutez d’autres paramètres à un filtre existant au lieu d’en créer de nouveaux." @@ -14815,11 +14837,11 @@ msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop d msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop de vidéos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Vous êtes venus à bout de vidéos à regarder. Peut-être est-ce un bon moment pour prendre une pause ?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Votre compte" @@ -14835,11 +14857,11 @@ msgstr "Votre compte a été suspendu" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Votre compte n’est pas encore assez ancien pour envoyer des vidéos. Veuillez réessayer plus tard." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Votre compte est trop récent" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Votre compte doit avoir été créé il y a au moins 7 jours pour pouvoir créer une discussion de groupe." @@ -14930,8 +14952,8 @@ msgstr "Votre hébergeur ne peut pas être détecté à partir d’une adresse e msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Votre hébergeur est détecté automatiquement à partir du pseudo que vous saisissez." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Vos centres d’intérêt ont été mis à jour !" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Vos centres d’intérêt nous aident à trouver ce que vous aimez !" @@ -14967,11 +14989,11 @@ msgstr "Votre mot de passe a été modifié avec succès ! N’oubliez pas d’ msgid "Your password must be at least 8 characters long." msgstr "Votre mot de passe doit comporter au moins 8 caractères." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Votre post a été envoyé" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Vos posts ont été envoyés" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Votre langue préférée" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Votre photo de profil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Votre photo de profil entourée de cercles concentriques d’autres photos de profils" @@ -14992,7 +15014,7 @@ msgstr "Votre photo de profil entourée de cercles concentriques d’autres phot msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Votre profil, vos posts, vos fils d’actu et vos listes ne seront plus visibles par d’autres personnes sur Bluesky. Vous pouvez réactiver votre compte à tout moment en vous connectant." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Votre réponse a été envoyée" @@ -15005,7 +15027,7 @@ msgstr "Votre signalement sera envoyé à <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Votre sélection de centres d’intérêt nous aide à vous proposer des contenus qui vous tiennent à cœur." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Votre fil de discussion contient des posts vides qui seront ignorés. Les posts restants seront publiés sous forme de fil de discussion." diff --git a/src/locale/locales/fy/messages.po b/src/locale/locales/fy/messages.po index 16f81121bb..37083a5a05 100644 --- a/src/locale/locales/fy/messages.po +++ b/src/locale/locales/fy/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: fy\n" +"Language: fy_NL\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Frisian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "‘{interestsDisplayName}’ kategory (aktyf)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(befettet ynsletten ynhâld)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# oere} other {# oeren}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# mei-’k-wol-oer} other {# mei-’k-wol-oers}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} folgjend" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} fan 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagearre {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} hat dy ferifiearre" msgid "{following} following" msgstr "{following} folgjend" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} kin gjin priveeberjocht ûntfange" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# net-lêzen item} other {# net-lêzen msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}o lyn" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} is in fertroude ferifiearder" @@ -842,13 +795,13 @@ msgstr "Ferifikaasjes fan {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {folgjend} other {folgjend}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {sitaat} other {sitaten}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {opnij pleatsing} other {opnij pleatsingen}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Meld dy oan<1>of <2>meitsje in account oan<3><4>om te sykjen nei nijs, sport, polityk en al wat der op Bluesky bart." @@ -971,7 +924,7 @@ msgstr "30 dagen" msgid "7 days" msgstr "7 dagen" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "In nij ferifikaasjeformulier" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Tagonklikheid" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Tagonklikheidsynstellingen" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Account negearre troch list" msgid "Account options" msgstr "Accountopsjes" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Account út flugge tagong fuortsmiten" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Accounts mei in skulpe blau finkje <0><1/> kinne oaren ferifiearje. Dizze fertroude ferifiearders binne troch Bluesky selektearre." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktiviteiten fan oaren" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Alt-tekst tafoegje (opsjoneel)" msgid "Add another account" msgstr "Noch in account tafoegje" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Noch in berjocht tafoegje" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Emoji-reaksje tafoegje" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Dizze feed oan dyn feeds tafoegje" msgid "Add to lists" msgstr "Oan listen tafoegje" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Folwoeksene" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Stiet tagong ta priveeberjochten ta" msgid "Already have a code?" msgstr "Hasto al in koade?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "Der is in e-mailberjocht ferstjoerd nei {0}. Dizze befettet in befêstig msgid "An error has occurred" msgstr "Der is in flater bard" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Der is in flater bard" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "Der is in flater bard by it opheljen fan de feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Der is in flater bard by it generearjen fan dyn startpakket. Wolsto it opnij probearje?" @@ -1640,11 +1600,11 @@ msgstr "Der is in flater bard by it generearjen fan dyn startpakket. Wolsto it o msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it letter opnij." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it nochris." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "In probleem net fermeld yn dizze opsjes" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Der is in flater bard by it iepenjen fan de chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "Elkenien dy’t my folget" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "App-wachtwurdnammen moatte minimaal 4 tekens lang wêze" msgid "App passwords" msgstr "App-wachtwurden" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-wachtwurden" @@ -1891,8 +1849,8 @@ msgstr "Beswier tsjin dizze beslissing meitsje" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Pull-fersyk tapasse" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Argivearre fan {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Argivearre berjocht" @@ -1980,7 +1938,7 @@ msgstr "Bisto wis datsto dit út dyn feeds fuortsmite wolst?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Bisto wis datsto dit berjocht fuortsmite wolst?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Fideo’s en GIF’s automatysk ôfspylje" msgid "Available" msgstr "Beskikber" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in berjocht makkest of antwurdest." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in startpakket makkest." @@ -2135,10 +2097,10 @@ msgstr "Eardatsto meldingen ûntfange kinst foar berjochten fan {name}, moatsto #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Start it leeftiidsferifikaasjeproses troch de ûndersteande fjilden yn t msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Jierdei" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blokkearre" msgid "Blocked accounts" msgstr "Blokkearre accounts" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokkearre accounts" @@ -2282,7 +2250,7 @@ msgstr "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde 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 "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde en net op in oare manier mei dy kommunisearje. Do sjochst harren tekst net en sy dy fan dy ek net." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokkearjen wjerhâld dizze labeler der net fan om labels op dyn account te pleatsen." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kin de wierheid fan dizze datum net befêstigje." @@ -2330,7 +2299,7 @@ msgstr "Bluesky is in iepen netwurk dêr’tsto sels dyn hostingprovider útsykj msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky is in iepen netwurk dêr’tsto sels dyn hostingprovider útsykje kinst. Asto hjir noch mar krekt bist, riede wy dy oan de standert opsje ‘Bluesky Social’ oan te hâlden." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky is noch nofliker mei freonen!" @@ -2358,7 +2327,7 @@ msgstr "Tsjinstbetingsten fan Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky sil in oantal oanrekommandearre brûkers kieze út de minsken yn dyn netwurk." @@ -2425,24 +2394,25 @@ msgstr "Blêdzje troch mear suggestjes op de ûntdekkingsside" msgid "Browse other feeds" msgstr "Blêdzje troch oare feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Berjochten oer {displayName} besjen." -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Berjochten labele mei {displayName} besjen" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Startpakket {displayName} besjen" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Underwerp {0} besjen" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "It ûnderwerp {displayName} besjen" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Troch {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Troch <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbeting msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbetingsten." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Troch dy" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Weraktivearring annulearje en ôfmelde" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Sykopdracht annulearje" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat negearre" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Chatfersyk Postfek YN" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Chatfersiken" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chatynstellingen" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat net mear negearre" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2808,7 @@ msgstr "Domeinferifikaasjemetoade kieze" msgid "Choose Feeds" msgstr "Feeds kieze" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Foar my kieze" @@ -2854,7 +2825,7 @@ msgstr "Persoanen kieze" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Dizze kleur as dyn avatar kieze" @@ -2879,7 +2850,7 @@ msgstr "Kies dyn eigen tiidline! Feeds makke troch de mienskip helpe dy om ynhâ msgid "Choose your password" msgstr "Dyn wachtwurd kieze" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Dyn brûkershandle kieze" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klik om mislearre priveeberjocht opnij te probearjen" @@ -3003,7 +2974,7 @@ msgstr "Klik om mislearre priveeberjocht opnij te probearjen" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Klik om mislearre priveeberjocht opnij te probearjen" msgid "Close" msgstr "Slute" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Aktive dialoochfinster slute" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Menu slute" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Dit dialoochfinster slute" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Slút warskôging foar bywurkjen wachtwurd" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Slút opstellen berjocht en negearret konsept" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Kleurmodus" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Strips" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Mienskipsrjochtlinen" @@ -3141,7 +3112,7 @@ msgstr "Mienskipsrjochtlinen" msgid "Complete onboarding and start using your account" msgstr "Foltôgje de yntroduksje en begjin mei it brûken fan dyn account" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Foltôgje de útdaging" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Nij berjocht opstelle" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Do kinst berjochten opstelle mei in lingte fan maksimaal {0, plural, other {# karakters}}" @@ -3160,11 +3131,11 @@ msgstr "Do kinst berjochten opstelle mei in lingte fan maksimaal {0, plural, oth msgid "Compose reply" msgstr "Antwurd opstelle" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Fideo komprimearje…" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Kontakt opnimme mei stipe" @@ -3253,7 +3224,7 @@ msgstr "Ynhâld & media" msgid "Content and media" msgstr "Ynhâld en media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Ynhâld en media" @@ -3265,10 +3236,6 @@ msgstr "Ynhâld blokkearre" msgid "Content filters" msgstr "Ynhâldsfilters" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Ynhâld fan oer it netwurk wêrfan wy tinke datsto der wol oer meist." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Ynhâldswarskôging" msgid "Content warnings" msgstr "Ynhâldswarskôgingen" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Kontekstmenu-eftergrûn, klik om it menu te sluten." @@ -3302,7 +3269,7 @@ msgstr "Kontekstmenu-eftergrûn, klik om it menu te sluten." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Fierder lêze…" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Buildferzje nei klamboerd kopiearre" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "App-wachtwurd kopiearje" msgid "Copy at:// URI" msgstr "at:// URI kopiearje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Auteur-DID kopiearje" @@ -3449,10 +3416,10 @@ msgstr "Keppeling kopiearje" msgid "Copy link to list" msgstr "Keppeling nei list kopiearje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Keppeling nei berjocht kopiearje" @@ -3470,8 +3437,8 @@ msgstr "Keppeling nei startpakket kopiearje" msgid "Copy message text" msgstr "Berjochttekst kopiearje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Berjocht at:// URI kopiearje" @@ -3490,7 +3457,7 @@ msgstr "TXT-recordwearde kopiearje" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Auteursrjochtbelied" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Kin chat net ferlitte" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Kin feed net lade" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Kin chat net negearje" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Oanmeitsje" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Meitsje in QR-koade foar in startpakket" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Meitsje in startpakket" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Meitsje in startpakket foar my" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Registrearje" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "In account oanmeitsje" @@ -3666,15 +3633,15 @@ msgstr "In account oanmeitsje" msgid "Create an account without using this starter pack" msgstr "In account oanmeitsje sûnder gebrûk fan dit startpakket" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Yn stee dêrfan in avatar meitsje" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Noch ien oanmeitsje" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Kultuer" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Tsjuster" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Donker" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Donker tema" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Standert" @@ -3894,7 +3861,7 @@ msgstr "Myn account fuortsmite" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Berjocht fuortsmite" @@ -3988,7 +3955,7 @@ msgstr "Dialooch: oanpasse wa’t op dit berjocht reagearje mei" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Dôvje" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "2FA útskeakelje" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Utskeakele" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Fuortsmite" msgid "Discard changes?" msgstr "Wizigingen fuortsmite?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Konsept fuortsmite?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Berjocht fuortsmite?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Apps ûntmoedigje om myn account te toanen oan ôfmelde brûkers" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Apps ûntmoedigje om myn account te toanen oan ôfmelde brûkers" msgid "Discover new custom feeds" msgstr "Nije personalisearre feeds ûntdekke" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Nije feeds ûntdekke" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Slute" @@ -4103,19 +4070,19 @@ msgstr "Slute" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Flater negearje" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Starthantlieding ôfslute" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Ynteressen negearje" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Gruttere alt-tekstbadges toane" msgid "Display name" msgstr "Werjeftenamme" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "Meitsje dy gjin soargen! Alle besteande berjochten en ynstellingen wurde #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Meitsje dy gjin soargen! Alle besteande berjochten en ynstellingen wurde msgid "Done" msgstr "Dien" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tik dûbeld of druk lang op in berjocht, om in reaksje ta te foegjen" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tik dûbeld om de dialooch te sluten" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tik dûbeld om der wol oer te meien" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Ofbylding bewurkje" msgid "Edit interaction settings" msgstr "Ynteraksje-ynstellingen bewurkje" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Ynteressen bewurkje" @@ -4397,7 +4365,7 @@ msgstr "Live-status bewurkje" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Myn feeds bewurkje" @@ -4406,6 +4374,11 @@ msgstr "Myn feeds bewurkje" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Persoanen bewurkje" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Wa’t reagearje kin bewurkje" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Dyn startpakket bewurkje" @@ -4500,8 +4473,8 @@ msgstr "HTML-koade ynslute" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Berjocht ynslute" @@ -4509,7 +4482,7 @@ msgstr "Berjocht ynslute" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Nim dit bericht op yn dyn website. Kopiearje ienfâldichwei it folgjende fragmint en plak it yn de HTML-koade fan dyn website." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Yntegrearre fideospiler" @@ -4533,7 +4506,7 @@ msgstr "Ynhâld foar folwoeksenen ynskeakelje" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Eksterne media ynskeakelje" msgid "Enable media players for" msgstr "Mediaspilers ynskeakelje foar" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Skeakelje meldingen yn foar in account troch harren profyl te besykjen en op it <0>belpiktogram <1/> te drukken." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Pushmeldingen ynskeakelje" @@ -4581,7 +4555,7 @@ msgstr "Populêre fideo’s yn dyn Discover-feed ynskeakelje" msgid "Enabled" msgstr "Ynskeakele" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Ein fan feed" @@ -4608,7 +4582,7 @@ msgstr "Fier in wurd of tag yn" msgid "Enter code" msgstr "Koade ynfiere" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Folslein skerm iepenje" @@ -4650,11 +4624,11 @@ msgstr "Fier dyn brûkersnamme en wachtwurd yn" msgid "Enters full screen" msgstr "Iepenet folslein skerm" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Ferdivedaasje" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Flater" @@ -4684,7 +4658,7 @@ msgstr "Der is in flater bard by it bewarjen fan it bestân" msgid "Error receiving captcha response." msgstr "Flater by ûntfangen fan captcha-antwurd." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Flater: {error}" @@ -4696,8 +4670,8 @@ msgstr "Elkenien kin reagearje" msgid "Everybody can reply to this post." msgstr "Elkenien kin reagearje op dit berjocht." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Elkenien" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Elkenien" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Al it oare" @@ -4738,7 +4712,7 @@ msgstr "Brûkers útslute dy’tsto folgest" msgid "Excludes users you follow" msgstr "Slút brûkers dy’tsto folgest út" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Folslein skerm slute" @@ -4755,11 +4729,11 @@ msgstr "Brûkerslist útklappe" msgid "Expand or collapse the full post you are replying to" msgstr "Ut- of ynklappe fan it folsleine berjocht dêr’tsto op reagearrest" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Berjochttekst útklappe" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Klapt berjochttekst út of yn" @@ -4802,15 +4776,15 @@ msgstr "Eksplisite of mooglik oanstjitjaande media." msgid "Explicit sexual images." msgstr "Eksplisite seksuele ôfbyldingen." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Untdekke" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "Eksterne media" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Eksterne media kinne websites tastean om ynformaasje oer dy en dyn apparaat te sammeljen. Der wurdt gjin ynformaasje ferstjoerd of frege oantsto op de knop ‘ôfspylje’ drukst." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Eksterne-mediafoarkarren" @@ -4886,7 +4860,7 @@ msgstr "Kin handle net wizigje. Probearje nochris." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Laden van konversaasjes mislearre" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Laden fan feedfoarkarren is mislearre" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Meldingsynstellingen lade mislearre." @@ -5012,14 +4987,14 @@ msgstr "Laden fan foarkar mislearre." msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Laden fan foarstelde feeds is mislearre" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "It is net slagge om in list te laden mei folchsuggestjes" @@ -5027,12 +5002,12 @@ msgstr "It is net slagge om in list te laden mei folchsuggestjes" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "Feedmakker" msgid "Feed identifier" msgstr "Feedidentifikator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feedmenu" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds bywurke!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds dêr’tsto neffens ús wol oer meist." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Update ophelje" @@ -5273,11 +5244,11 @@ msgstr "Update ophelje" msgid "File saved successfully!" msgstr "Bestân mei sukses bewarre!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filter wa’t kieze kin meldingen foar dyn aktiviteit te ûntfangen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filter fan wa’tsto meldingen ûntfangst" @@ -5352,8 +5323,8 @@ msgstr "Sykje accounts om te folgjen" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "{0} folgje" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} folgje" @@ -5453,11 +5424,11 @@ msgstr "{handle} folgje" msgid "Follow 10 accounts" msgstr "10 accounts folgje" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "7 accounts folgje" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Folgers fan @{0} dy’tsto kinst" @@ -5544,7 +5515,7 @@ msgstr "Folgers dy’tsto kinst" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Folget {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Do folgest {handle}" @@ -5578,21 +5549,21 @@ msgstr "Do folgest {handle}" msgid "Following feed preferences" msgstr "Folchfeedfoarkarren" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Folchfeedfoarkarren" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Folget dy" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Lettertype" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Lettergrutte" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Om feilichheidsredenen kinsto dit net mear besjen. Do moatst in nij app-wachtwurd generearje asto dit app-wachtwurd kwytrekkest." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Foar de beste ûnderfining riede wy dy oan it temalettertype te brûken." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Foar dy" @@ -5628,7 +5599,7 @@ msgstr "Foar dy" msgid "Forever" msgstr "Foar altyd" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Wachtwurd ferjitten?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Fan" @@ -5674,7 +5647,7 @@ msgstr "Fan <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "In startpakket generearje" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Krij help" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Untfang meldingen wannear’t minsken dy folgje." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Untfang meldingen wannear’t minsken wol oer dyn berjochten meie." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Untfang meldingen wannear’t minsken dy neame." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Untfang meldingen wannear’t minsken dyn berjochten sitearje." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Untfang meldingen wannear’t minsken op dyn berjochten reagearje." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Untfang meldingen wannear’t minsken dyn berjochten opnij pleatse." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Meldingen oer nije berjochten ûntfange" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Meldingen oer nije berjochten fan {name} ûntfange" @@ -5799,11 +5772,11 @@ msgstr "Oan de slach" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Jou dyn profyl in gesicht" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Gean live foar" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Hasto in koade? <0>Klik hjir." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Hasto problemen?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Help" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Lit minsken witte datsto gjin bot bist troch in foto op te laden of in avatar te meitsjen." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "Ferstoppe" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Ferstoppe troch dyn moderaasjeynstellingen." @@ -6148,9 +6122,9 @@ msgstr "Ferstoppe troch dyn moderaasjeynstellingen." msgid "Hidden list" msgstr "Ferburgen list" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Ferburgen list" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Ferstopje" @@ -6198,7 +6172,7 @@ msgstr "Reaksje foar elkenien ferstopje" msgid "Hide reply for me" msgstr "Reaksje foar my ferstopje" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Dizze kaart ferstopje" @@ -6218,12 +6192,12 @@ msgstr "Dizze reaksje ferstopje?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Populêre ûnderwerpen ferstopje" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Populêre ûnderwerpen ferstopje?" @@ -6240,7 +6214,7 @@ msgstr "Brûkerslist ferstopje" msgid "Hide verification badges" msgstr "Ferifikaasjebadges ferstopje" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Ferstoppet de ynhâld" @@ -6293,8 +6267,8 @@ msgstr "Hmm, wy koene dy moderaasjetsjinst net lade." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Wachtsje even! Wy jouwe stadichoan tagong ta fideo en do stiest noch hieltyd yn de rige. Kom fluch werom!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Populêr" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "Asto dyn e-mailadres bywurkest, wurdt e-mail-2FA útskeakele." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Asto dyn wachtwoord wizigje wolst stjoere wy dy in koade om te ferifiearjen dat dit dyn account is." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Asto beheine wolst wa’t meldingen foar de aktiviteit fan dyn account ûntfange kin, kinsto dit wizigje yn <0>Ynstellingen → Privacy en Befeiliging." @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "Postfek YN nul!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Do bist no noch de iennige! Foegje mear persoanen ta oan dyn startpakket troch hjirboppe te sykjen." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Taak-ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "Doh mei oan it petear" msgid "Journalism" msgstr "Sjoernalistyk" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS-website" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Labele troch {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Labele troch de auteur." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Labels" @@ -6852,7 +6824,7 @@ msgstr "Labels tafoege" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Labels binne oantekeningen oer brûkers en ynhâld. Se kinne brûkt wurde om it te ferstopjen, te warskôgjen en it netwurk te kategorisearjen." @@ -6864,7 +6836,7 @@ msgstr "Labels op dyn account" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Taalynstellingen" @@ -6874,7 +6846,7 @@ msgstr "Taalynstellingen" msgid "Languages" msgstr "Talen" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Grutter" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Lêst start, sakrekt" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Lêste" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Mear ynfo" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Mear ynfo oer it sels hosten fan dyn PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Mear info oer de moderaasje tapast op dizze ynhâld" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Lês mear oer dizze wizigingen en hoe’tsto dyn tinzen mei ús diele kinst troch ús blogberjocht te lêzen." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Mear ynfo oer dizze warskôging" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Mear ynformaasje yn dyn <0>accountynstellingen." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Mear ynfo." @@ -6993,8 +6965,8 @@ msgstr "Ferlitte" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Bluesky ferlitte" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "noch te gean." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lit my kieze" @@ -7057,7 +7029,7 @@ msgstr "Los!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Ljocht" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Ljocht" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Mei ’k wol oer" @@ -7076,7 +7048,7 @@ msgstr "Mei ’k wol oer" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mei ’k wol oer ({0, plural, one {# mei-’k-wol-oer} other {# mei-’k-wol-oers}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Mei wol oer 10 berjochten" @@ -7085,7 +7057,7 @@ msgstr "Mei wol oer 10 berjochten" msgid "Like 10 posts to train the Discover feed" msgstr "Mei wol oer 10 berjochten om de Untdekken-feed te trainen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Mei wol oer dizze feed" @@ -7093,8 +7065,8 @@ msgstr "Mei wol oer dizze feed" msgid "Like this labeler" msgstr "Mei wol oer dizze labeler" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Mei hjir wol oer" @@ -7111,27 +7083,45 @@ msgstr "Mei ’k wol oer troch" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Mei ’k wol oer troch {0, plural, one {# brûker} other {# brûkers}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Mei ’k wol oer troch {likeCount, plural, one {# brûker} other {# brûkers}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Mei-’k-wol-oers" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Mei-’k-wol-oers fan dyn opnij-pleatsingen" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Mei-’k-wol-oers op dit berjocht" @@ -7144,7 +7134,7 @@ msgstr "Lineêr" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "List" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "List net-negearre" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "Live-keppeling" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Mear lade" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Mear foarstelde feeds lade" @@ -7292,8 +7282,8 @@ msgstr "Mear foarstelde feeds lade" msgid "Load new notifications" msgstr "Nije meldingen lade" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Lochboek" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "E-mailynstellingen foar dyn account oanpasse" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Meitsje ien foar my" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "Alles as lêzen markearje" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "As lêzen markearje" msgid "Marked all as read" msgstr "Alles as lêzen markearre" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "Miskien letter" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media dy’t foar bepaalde doelgroepen oanstjitjouwend of ûngepast wêze kinne." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "fermelde brûkers" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Fermeldingen" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Berjocht fuortsmiten" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "Berjochtopsjes" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Berjochten" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderaasje" @@ -7636,7 +7630,7 @@ msgstr "Moderaasjelist bywurke" msgid "Moderation lists" msgstr "Moderaasjelisten" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderaasjelisten" @@ -7645,7 +7639,7 @@ msgstr "Moderaasjelisten" msgid "moderation settings" msgstr "moderaasjeynstellingen" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderaasjetastannen" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Negearre accounts" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Negearre accounts" @@ -7867,7 +7861,6 @@ msgstr "Moatst melding meitsje fan in skeining fan it auteursrjocht, in wetlike msgid "Nevermind, create a handle for me" msgstr "Makket net út, meitsje in handle foar my oan" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nij" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {Nij berjocht} other {Nije berjochten}} fan {fi #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nije chat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Nije funksje" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nije folgers" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Nije list" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Nij wachtwurd" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nij berjocht" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Nijste antwurden earst" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Nijs" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Folgjende ôfbylding" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "Gjin ferrintiid ynsteld" msgid "No feeds found. Try searching for something else." msgstr "Gjin feeds fûn. Probearje nei wat oars te sykjen." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "Gjin ôfbylding" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Noch gjin mei-’k-wol-oers" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Do folgest {0} net mear" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Noch gjin berjochten" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "Noch gjin hjir" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Noch gjin sitaten" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Gjin resultaat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Gjin resultaten" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Gjin resultaten foar ‘{0}’." @@ -8236,23 +8229,23 @@ msgstr "Gjin resultaten fûn" msgid "No results found for \"{query}\"" msgstr "Gjin resultaten fûn foar ‘{query}’" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Gjin resultaten." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Nee, tank" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Gjinien" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Gjinien mei hjir wol oer. Miskien moatsto de earste wêze!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Gjinien hat dit sitearre. Miskien moatsto de earste wêze!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Net-seksuele neakens" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Net fûn" @@ -8333,7 +8330,7 @@ msgstr "Opmerking oer diele" 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 "Opmerking: Bluesky is in iepen en iepenbier netwurk. Dizze ynstelling beheint allinnich de sichtberheid fan dyn ynhâld op de Bluesky-app en -website. Oare apps respektearje dizze ynstelling mooglik net. Dyn ynhâld kin noch hieltyd toand wurde oan ôfmelde brûkers troch oare apps en websites." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Opmerking: dit berjocht is allinnich sichtber foar oanmelde brûkers." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Meldingsynstellingen" @@ -8353,11 +8350,12 @@ msgstr "Meldingsynstellingen" msgid "Notification sounds" msgstr "Meldingslûden" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Och heden!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Oké" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Yntroduksje opnij toane" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Alt-tekst ûntbrekt by ien of mear GIF’s." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Alt-tekst ûntbrekt by ien of mear ôfbyldingen." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Alt-tekst ûntbrekt by ien of mear fideo’s." @@ -8471,7 +8471,7 @@ msgstr "Allinnich {0} kin reagearje." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Allinnich WebVTT (.vtt)-bestannen wurde stipe" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Wûpsty!" @@ -8544,7 +8544,7 @@ msgstr "Wûpsty!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Avatar-makker iepenje" @@ -8570,21 +8570,22 @@ msgstr "Petearopsjes iepenje" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Menu iepenje" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Emoji-kiezer iepenje" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Feed-ynfoskerm iepenje" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Menu Feedopsjes iepenje" @@ -8627,7 +8628,7 @@ msgstr "Moderaasje-debugside iepenje" msgid "Open muted words and tags settings" msgstr "Negearre wurden en tags-ynstellingen iepenje" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Pakket iepenje" @@ -8699,7 +8700,7 @@ msgstr "Iepenet oanfoljende details foar in debug-item" msgid "Opens alt text dialog" msgstr "Iepenet Alt-tekstfinster" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Iepenet kamera op apparaat" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Iepenet proses om in nij Bluesky-account oan te meitsjen" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Iepenet it proses om dy oan te melden by dyn besteande Bluesky-account" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Wachtwurd bywurke!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pauzearje" @@ -8925,12 +8926,12 @@ msgstr "Pauzearje" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Fideo pauzearje" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Persoanen" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persoanen folge troch @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persoanen dy’t @{0} folgje" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Minsken dy’t ik folgje" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Ofbyldingen bedoeld foar folwoeksenen." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Feed fêstmeitsje" @@ -9034,7 +9035,7 @@ msgstr "Feed fêstmeitsje" msgid "Pin to home" msgstr "Fêstsette op startside" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fêstsette op startside" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Fêstset" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} fêstset op startside" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Fêstset oan dyn feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Ofspylje" @@ -9076,8 +9077,8 @@ msgstr "{0} ôfspylje" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Fideo ôfspylje" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Skriuw hjirûnder dyn berjocht:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Polityk" @@ -9269,7 +9270,7 @@ msgstr "Polityk" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Pleatse" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Berjocht" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Alles pleatse" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Berjocht blokkearre" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Berjocht fan @{0}" @@ -9340,7 +9341,7 @@ msgstr "Berjocht troch dy ferstoppe" msgid "Post interaction settings" msgstr "Ynstellingen foar berjochtynteraksje" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Ynstellingen foar berjochtynteraksje" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Berjocht fêstset" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Berjocht losmakke" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Berjochten" @@ -9398,6 +9396,10 @@ msgstr "Berjochten kinne negearre wurde op basis fan tekst, tags of beide. Wy ri msgid "Posts hidden" msgstr "Berjocht ferstoppe" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Mooglik misliedende keppeling" @@ -9449,20 +9451,21 @@ msgstr "Privacy" msgid "Privacy and security" msgstr "Privacy en befeiliging" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy en befeiliging" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Privacy- en befeiligingsystellingen" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Privacybelied" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Fideo ferwurkje…" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Iepenbiere, dielbere listen fan brûkers om yn bulk te dôvjen of te blokkearjen." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Berjocht pleatse" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Berjochten pleatse" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Antwurden publisearje" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Antwurd publisearje" @@ -9599,12 +9602,12 @@ msgstr "Sitaatberjochten útskeakele" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Sitaten" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Sitaten fan dit berjocht" @@ -9647,7 +9650,7 @@ msgstr "Dyn account opnij aktivearje" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Blogartikel lêze" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Minder ynfo" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Mear ynfo" @@ -9687,11 +9690,11 @@ msgstr "Lês it Bluesky-privacybelied" msgid "Read the Bluesky Terms of Service" msgstr "Lês de Bluesky-tsjinstbetingsten" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Oanrekommandearre" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Opnij ferbine" @@ -9748,7 +9747,7 @@ msgstr "Chatfersyk ôfwize" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Petearen opnij lade" @@ -9766,7 +9765,7 @@ msgstr "Petearen opnij lade" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Fuortsmite" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Account fuortsmite" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Ut myn feeds fuortsmite" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Ut flugge tagong fuortsmite?" @@ -9862,7 +9861,7 @@ msgstr "Ut flugge tagong fuortsmite?" msgid "Remove from saved feeds" msgstr "Ut bewarre feeds fuortsmite" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Ofbylding fuortsmite" msgid "Remove live status" msgstr "Live-status fuortsmite" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Ut list fuortsmiten" msgid "Removed from saved feeds" msgstr "Ut myn bewarre feeds fuortsmiten" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Antwurde dy" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Antwurden" @@ -10037,7 +10037,7 @@ msgstr "Antwurden op dit berjocht binne útskeakele." msgid "Reply" msgstr "Reagearje" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Reagearje" @@ -10098,8 +10098,8 @@ msgstr "Petear melde" msgid "Report dialog" msgstr "Dialooch melde" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Feed melde" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Opnij pleatst troch dy" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Opnij-pleatsingen" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Opnij-pleatsingen fan dit berjocht" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Opnij-pleatsingen fan dyn opnij-pleatsingen" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Werhellet de lêste aksje, dêr’t in flater by barde" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Tebek nei de startside" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Tebek nei de foarige side" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Wizigingen bewarje" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR-koade bewarje" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Yn myn feeds bewarje" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feeds bewarje" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Bewarre yn dyn feeds" @@ -10520,8 +10520,8 @@ msgstr "Bewarre yn dyn feeds" msgid "Say hello!" msgstr "Sis hallo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Wittenskip" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Nei boppe" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Sykje" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Berjochten fan @{0} trochsykje" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Sykje nei feeds dy’tsto oan oaren foarstelle wolst." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Nei mear accounts sykje" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Nei mear feeds sykje" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF’s sykje" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Sykjen is op dit stuit net beskikber wannear ôfmeld" @@ -10709,6 +10709,7 @@ msgstr "Fakatueres by Bluesky bejen" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Mear toane" @@ -10716,8 +10717,12 @@ msgstr "Mear toane" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Sykslider. Brûk de pylktoetsen om foarút en efterút te sykjen en spaasje om ôf te spyljen/pauzearjen" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "Selektearje {0}" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "In kleur selektearje" @@ -10764,11 +10769,11 @@ msgstr "Account selektearje" msgid "Select an app language" msgstr "Selektearje in app-taal" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "In avatar selektearje" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "In emoji selektearje" @@ -10780,12 +10785,13 @@ msgstr "Selektearje in opsje" msgid "Select app language" msgstr "Selektearje app-taal" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "GIF selektearje" msgid "Select GIF \"{0}\"" msgstr "GIF ‘{0}’ selektearje" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "Selektearje primêre taal" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Dyn avatar as de {emojiName}-emoji selektearje" @@ -10945,7 +10951,8 @@ msgstr "Berjocht ferstjoere" msgid "Send post to {name}" msgstr "Berjocht nei {name} ferstjoere" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Berjocht ferstjoere nei…" @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Ferifikaasje-e-mailberjocht ferstjoere" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "As priveeberjocht ferstjoere" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Stelt e-mail yn foar it opnij ynstellen fan wachtwurden" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ynstellingen" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Ynstellingen foar aktiviteit fan oaren" @@ -11036,49 +11043,49 @@ msgstr "Ynstellingen foar aktiviteit fan oaren" msgid "Settings for allowing others to be notified of your posts" msgstr "Ynstellingen foar tastimming om oaren op de hichte te stellen fan dyn berjochten" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Ynstellingen foar mei-’k-wol-oer-meldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Ynstellingen foar fermeldingsmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Ynstellingen foar nije-folgersmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Ynstellingen foar meldingen fan al it oare" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Ynstellingen foar meldingen fan mei-’k-wol-oers fan dyn opnij-pleatsingen" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Ynstellingen foar meldingen fan opnij-pleatsingen fan dyn opnij-pleatsingen" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Ynstellingen foar sitaatmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Ynstellingen foar antwurdmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Ynstellingen foar meldingen fan opnij-pleatsingen" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Dochs diele" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Auteurs-DID diele" @@ -11127,7 +11134,7 @@ msgstr "Auteurs-DID diele" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Keppelingdialooch diele" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Berjocht at:// URI diele" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "QR-koade diele" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Dizze feed diele" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Dit startpakket diele" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Diel dit startpakket en help minsken lid te wurden fan dyn mienskip op Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Dielde foarkarren-tester" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Toane" msgid "Show alt text" msgstr "Alt-tekst toane" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Dochs toane" @@ -11274,9 +11281,9 @@ msgstr "List dochs toane" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Mear toane" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Warskôging en filter út feeds toane" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Toant ynformaasje oer wannear’t dit bejoicht oanmakke is" @@ -11341,15 +11348,15 @@ msgstr "Toant ynformaasje oer wannear’t dit bejoicht oanmakke is" msgid "Shows other accounts you can switch to" msgstr "Toant oare accounts wêrneisto wikselje kinst" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Toant de ynhâld" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Toant de ynhâld" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Ofmelde?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Oanmelden fereaske" @@ -11469,7 +11476,7 @@ msgstr "Oerslaan" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Lytser" @@ -11499,7 +11506,7 @@ msgstr "Snûzet it omtinken" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Ien hat mei {0} reagearre" @@ -11554,7 +11561,7 @@ msgstr "Ien hat mei {0} reagearre" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Der is wat misgien, probearje it nochris" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Der is wat misgien. Probearje it oer in amerijke nochris." msgid "Something went wrong. Please try again." msgstr "Der is wat misgien. Probearje it nochris." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Klopt er wat net? Lit it ús witte." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "Start in petear, en it sil hjir ferskine." msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "In nije chat starte" @@ -11682,17 +11689,17 @@ msgstr "Begjin mei minsken ta te foegjen" msgid "Start adding people!" msgstr "Begjin mei minsken ta te foegjen!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Chat starte mei {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpakket" @@ -11715,12 +11722,16 @@ msgstr "Startpakket troch dy" msgid "Starter pack is invalid" msgstr "Startpakket is ûnjildich" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpakketten" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Mei startpakketten kinsto ienfâldich dyn favorite feeds en persoanen met dyn freonen diele." @@ -11728,7 +11739,7 @@ msgstr "Mei startpakketten kinsto ienfâldich dyn favorite feeds en persoanen me msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Statusside" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Stap {0} fan {1}" @@ -11754,7 +11765,7 @@ msgstr "Unthâld wiske, do moatst de app no opnij opstarte." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Ferhaleboek" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonnearje dy op @{0} om dizze labels te brûken:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Mei sukses ferifiearre" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sinneûndergong" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Wikselje nei {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systeem" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Tik om kontekstmenu te sluten" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tik om te sluten" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Taak foltôge – 10 persoanen folge!" msgid "Task complete - 10 likes!" msgstr "Taak foltôge – 10 mei-’k-wol-oers!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Lear ús algoritme wêr’tsto wol oer meist" @@ -12060,7 +12073,7 @@ msgstr "Betingsten" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Dat startpakket kin net fûn wurde." msgid "That username is already taken" msgstr "Dy brûkersnamme is al yn gebrûk" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Dat is alles minsken!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Dat wie alles!" @@ -12216,7 +12229,7 @@ msgstr "It liket derop dat der problemen mei de server binne. Probearje it oer i msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "It startpakket datsto probearrest te besjen is ûnjildich. Do kinst dit startpakket yn stee dêrfan fuortsmite." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "It ûnderwerp fan it kontekstmenu" @@ -12238,7 +12251,7 @@ msgstr "De ferifikaasjekoade dy’tsto opjûn hast is ûnjildich. Kontrolearje o msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Der is in probleem bard by it ferbinen mei de server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Der is in probleem bard by it ferbinen mei de server. Kontrolearje dyn ynternetferbining en probearje it opnij." @@ -12283,8 +12296,8 @@ msgstr "Der is in probleem bard by it ferbinen mei de server. Kontrolearje dyn y msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Der is in probleem bard by it opheljen fan meldingen. Tik hjir om it opnij te probearjen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Der is in probleem bard by it opheljen fan berjochten. Tik hjir om it opnij te probearjen." @@ -12309,7 +12322,7 @@ msgstr "Der is in probleem bard by it opheljen fan dyn tsjinstgegevens" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Der is in probleem bard by it fuortsmiten fan dizze feed. Kontrolearje dyn ynternetferbining en probearje it opnij." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Dizze ynstellingen binne allinnich fan tapassing op de folgjende feed." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Dizze {screenDescription} is markearre:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Dizze account hat ien of mear besochte ferifikaasjes, mar it is no noch net ferifiearre." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Dizze account fersiket brûkers harren oan te melden eardat it profyl te besjen is." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Dizze feed is leech! Mooglik moatsto mear brûkers folgje of dyn taalynstellingen oanpasse." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Dizze feed is leech." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Dizze handle is reservearre. Probearje in oare." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Dit label is oanbrocht troch dy." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dizze labeler hat net oanjûn hokker labels hy publisearret en is mooglik net aktyf." @@ -12621,13 +12634,13 @@ msgstr "Dizze list is leech." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dit berjocht beweart makke te wêzen op <0>{0}, mar waard foar it earst sjoen troch Bluesky op <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Dit berjocht beweart makke te wêzen op <0>{0}, mar waard foar it ea msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Der sit in ûnbekend type reaksjebeheining op dit berjocht. Mooglik is dyn app ferâldere." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Dit berjocht is allinnich sichtber foar oanmelde brûkers." @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dit berjocht wurdt ferstoppe foar feeds en petearen. Dit kin net ûngedien makke wurde." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "De auteur fan dit berjocht hat it pleatsen fan sitaten útskeakele." @@ -12698,11 +12711,12 @@ msgstr "Dit soe mar in pear minuten duorje moatte." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Dizze brûker hat gjin werjeftenamme en kin dertroch net ferifiearre wurde." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Dizze brûker hat gjin folgers." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Dizze brûker hat dy blokkearre. Do kinst de ynhâld net besjen." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Dizze brûker stiet yn de list <0>{0} dy’tsto negearre hast." msgid "This user is new here. Press for more info about when they joined." msgstr "Dizze brûker is hjir nij. Druk foar mear ynfo oer wannear’t se lid wurden binne." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Dizze brûker folget net ien." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Hjirmei wurdt @{0} fuortsmiten út de flugge tagongslist." @@ -12786,7 +12801,7 @@ msgstr "Petearfoarkarren" msgid "Threaded" msgstr "As petear" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Petearfoarkarren" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Populêr" @@ -12858,7 +12873,7 @@ msgstr "Populêr" msgid "Top replies first" msgstr "Populêre reaksjes earst" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Underwerp" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "Konversaasjebyld" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Populêr" @@ -12902,7 +12919,7 @@ msgstr "Populêr" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Fertrouwen ûntstiet út relaasjes, mienskippen en dielde kontekst, dus wy starte ek mei <0>fertroude ferifiearders: organisaasjes dy’t daliks ferifikaasje útjaan kinne." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "Net beskikber" msgid "Unavailable feed information" msgstr "Feedynformaasje net beskikber" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Account deblokkearje?" msgid "Unblock list" msgstr "List deblokkearje" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "{0} ûntfolgje" msgid "Unfollow account" msgstr "Account ûntfolgje" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Untfolget de brûker" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Mei ’k net mear oer" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Petear net mear negearje" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Fideo net mear negearje" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Losmeitsje" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Feed losmeitsje" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Fan startside losmeitsje" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Moderaasjelist losmeitsje" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} fan startside losmakke" @@ -13258,11 +13277,11 @@ msgstr "Fan dizze labeler ôfmelde" msgid "Unsubscribed from list" msgstr "Fan lis ôfmeld" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Bywurkjen fan sichtberheid fan reaksje is mislearre" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Laad yn stee dêrfan in foto op" @@ -13355,7 +13374,7 @@ msgstr "Fan bestannen út oplade" msgid "Upload from Library" msgstr "Fan bibloteek út oplade" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Ofbyldingen oplade…" msgid "Uploading link thumbnail..." msgstr "Keppelingminiatuer oplade…" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Fideo oplade…" @@ -13408,7 +13427,7 @@ msgstr "Brûk dit om dy tegearre mei dyn handle oan te melden by de oare app." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Brûk it e-mailadres fan dyn account, of in oar echt e-mailadres datsto hast, yn it gefal dat KWS of Bluesky kontakt mei dy opnimme wol." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "Ferifikaasje mislearre, probearje it opnij." msgid "Verification settings" msgstr "Ferifikaasjeynstellingen" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Ferifikaasjeynstellingen" @@ -13618,7 +13637,7 @@ msgstr "Fideo" msgid "Video failed to process" msgstr "Fideo kin net ferwurke wurde" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Fideofeed" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Fideo fan {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Fideospultsjes" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Fideo is pauzearre" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Fideo spilet" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Fideo net fûn." @@ -13653,7 +13672,7 @@ msgstr "Fideo net fûn." msgid "Video settings" msgstr "Fideo-ynstellingen" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Fideo opladen" @@ -13662,17 +13681,17 @@ msgstr "Fideo opladen" msgid "Video: {0}" msgstr "Fideo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Fideo’s" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Avatar fan {0} besjen" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Profyl fan {0} besjen" @@ -13724,13 +13743,13 @@ msgstr "Blogartikel foar mear details besjen" msgid "View debug entry" msgstr "Debug-item besjen" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Details besjen" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Folslein petear besjen" @@ -13761,7 +13780,7 @@ msgstr "Mear besjen" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "De labeltsjinst fan @{0} besjen" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Ferifikaasjes fan dizze account besjen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Brûkers dy’t oer dizze feed meie besjen" @@ -13831,7 +13850,7 @@ msgstr "Dyn moderaasjelisten besjen" msgid "View your muted accounts" msgstr "Dyn negearre accounts besjen" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Dyn ferifikaasjes besjen" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Der binne netwurkproblemen, probearje it opnij" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Wy yntrodusearje in nije ferifikaasjelaach op Bluesky – in iefâldich-te-sjen finkje." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "It spyt ús, mar wy kinne dizze list net ophelje. Nim kontakt op mei de msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "It spyt ús, mar wy koene dyn negearre wurden op dit stuit net lade. Probearje it opnij." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "It spyt ús! It berjocht wêropsto reagearrest is fuortsmiten." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Hoe giet it?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Wa kin ferifiearje?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Wûpsty!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Skriuw berjocht" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Skriuw dyn reaksje" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "Do bist net langer live" msgid "You are not allowed to upload videos." msgstr "Do meist gjin fideo’s oplade." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "Do bist ferifiearre. Do silst dyn ferifikaasjestatus ferlieze asto dyn w msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Do bist ferifiearre. Do silst dyn ferifikaasjestatus ferlieze asto dyn handle wizigest. <0>Mear ynfo." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Do kinst dyn ynteressen altyd yn de ynstellingen ûnder ‘Ynhâld en media’ oanpasse." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Do kinst dy no oanmelde mei dyn nije wachtwurd." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Do kinst dit letter bywurkje fan dyn ynstellingen út." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "Do hast dyn e-mailadres mei sukses ferifiearre. Do kinst dit dialoochfin msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Do bist tydlik oer de limyt foar fideo-oplaads hinne. Probearje it letter opnij." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Do hast noch gjin startpakket makke!" @@ -14614,7 +14636,7 @@ msgstr "Do meist mar oant {STARTER_PACK_MAX_SIZE, plural, one {}other {{STARTER_ msgid "You may only add up to 3 feeds" msgstr "Do meist maksimaal 3 feeds tafoegje" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Do moatst op syn minst 7 oare persoanen folgje om in startpakket te generearjen." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "Do moatst dyn e-mailadres ferifiearje eardatsto e-mail-2FA ynskeakelje kinst." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Do wolst de app wierskynlik no opnij starte." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Do hast mei {0} reagearre" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Do folgest de foarstelde brûkers en feeds, sa gau asto klear bist mei it oanmeitsjen fan dyn account!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Do folgest de foarstelde brûkers, sa gau asto klear bist mei it oanmeitsjen fan dyn account!" @@ -14791,7 +14813,7 @@ msgstr "Do hast it ein fan de aktive ynhâld berikt." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Do hast it ein fan dyn feed berikt! Sykje noch mear accounts om te folgjen." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Do bist oer it maksimaal tal tasteane fersiken. Probearje it letter nochris." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle fideo’s)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Do hast gjin fideo’s mear om te besjen. Miskien is it in goed momint om skoft te hâlden?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Dyn account" @@ -14835,11 +14857,11 @@ msgstr "Dyn account is opskoarten" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Dyn account is noch net âld genôch om fideo’s op te laden. Probearje it letter nochris." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Dyn ynteressen wurde bywurke!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Dyn ynteressen helpe ús dat te finen, dêr’tsto oer meist!" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "Dyn wachtwurd moat op syn minst 8 tekens lang wêze." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Voorkeurstaal" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "Dyn profyl, berjochten, feeds en listen binne net langer sichtber foar oare Bluesky-brûkers. Do kinst dyn account op elk momint opnij aktivearje troch oan te melden." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "Dyn melding wurdt nei <0>{0} ferstjoerd." msgid "Your selected interests help us serve you content you care about." msgstr "Dyn selektearre ynteressen helpe ús dy ynhâld dy’t dy ynteressearret te toanen." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index 117e47e353..f8ec1f2a00 100644 --- a/src/locale/locales/ga/messages.po +++ b/src/locale/locales/ga/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: ga\n" +"Language: ga_IE\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Irish\n" "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Catagóir \"{interestsDisplayName}\" (gníomhach)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(tá ábhar leabaithe ann)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# uair an chloig} two {# uair an chloig} few {# uair an chloig} many {# n-uair an chloig} other {# uair an chloig}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# mola #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Cuntas)" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} á leanúint" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} as 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "D'fhreagair {0} {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "Dheimhnigh {firstAuthorName} thú" msgid "{following} following" msgstr "{following} á leanúint" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Ní féidir TD a chur chuig {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {á leanúint} two {á leanúint} few {á lea #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {postáil athluaite} two {phostáil athluaite} few {phostáil athluaite} many {bpostáil athluaite} other {postáil athluaite}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {athphostáil} two {athphostáil} few {athphostáil} many {athphostáil} other {athphostáil}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 lá" msgid "7 days" msgstr "7 lá" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Seoladh cód nua chugat" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Inrochtaineacht" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Socruithe Inrochtaineachta" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Balbhaíodh an Cuntas trí Liosta" msgid "Account options" msgstr "Roghanna cuntais" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Baineadh an cuntas ón mearliosta" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Cuir téacs malartach leis seo (roghnach)" msgid "Add another account" msgstr "Cuir cuntas eile leis" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Cuir postáil eile leis" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Cuir an fotha seo le do chuid fothaí" msgid "Add to lists" msgstr "Cuir le liostaí" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Daoine fásta" msgid "Adult content" msgstr "Ábhar do dhaoine fásta" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Ceadaíonn sé seo fáil ar do chuid teachtaireachtaí díreacha" msgid "Already have a code?" msgstr "An bhfuil cód agat cheana?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "An bhfuil cuntas agat cheana?" @@ -1614,7 +1574,7 @@ msgstr "Cuireadh teachtaireacht ríomhphoist chuig {0}. Tá cód dearbhaithe fao msgid "An error has occurred" msgstr "Tharla earráid" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Tharla earráid" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Tharla earráid agus do phacáiste fáilte á chruthú. An bhfuil fonn ort triail eile a bhaint as?" @@ -1640,11 +1600,11 @@ msgstr "Tharla earráid agus do phacáiste fáilte á chruthú. An bhfuil fonn o msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Tharla earráid agus an físeán á lódáil. Bain triail eile as ar ball." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Tharla earráid agus an físeán á lódáil. Bain triail eile as." @@ -1684,7 +1644,7 @@ msgstr "Tharla earráid. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Rud nach bhfuil ar fáil sna roghanna seo" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Tharla fadhb agus an comhrá á oscailt" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Aon duine" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Caithfidh ainm pasfhocal aipe a bheith ar a laghad ceithre charachtar ar msgid "App passwords" msgstr "Pasfhocail aipe" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Pasfhocail aipe" @@ -1891,8 +1849,8 @@ msgstr "Déan achomharc i gcoinne an chinnidh seo" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Cartlannaithe ó {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Postáil sa chartlann" @@ -1980,7 +1938,7 @@ msgstr "An bhfuil tú cinnte gur mhaith leat é seo a bhaint de do chuid fothaí msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "An bhfuil tú cinnte gur mhaith leat an phostáil seo a scriosadh?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Seinn físeáin agus GIFanna go huathoibríoch" msgid "Available" msgstr "Ar fáil" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Ní mór duit do ríomhphost a dheimhniú roimh phacáiste fáilte a chruthú." @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Breithlá" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blocáilte" msgid "Blocked accounts" msgstr "Cuntais bhlocáilte" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuntais bhlocáilte" @@ -2282,7 +2250,7 @@ msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhr 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 "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat. Ní fheicfidh tú a gcuid ábhair agus ní fheicfidh siad do chuid ábhair." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Ní bhacann blocáil an lipéadóir seo ar lipéid a chur ar do chuntas." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Ní féidir le Bluesky an dáta maíte a dheimhniú." @@ -2330,7 +2299,7 @@ msgstr "Is líonra oscailte é Bluesky, lenar féidir do sholáthraí óstála f msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Déanann mathshlua meidhréis ar Bluesky!" @@ -2358,7 +2327,7 @@ msgstr "Téarmaí Seirbhíse Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Roghnóidh Bluesky roinnt cuntas molta ó dhaoine i do líonra." @@ -2425,24 +2394,25 @@ msgstr "Tabhair súil ar thuilleadh moltaí ar an leathanach Taiscéalaíocht" msgid "Browse other feeds" msgstr "Tabhair súil ar fhothaí eile" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Tabhair súil ar phostálacha faoi {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Tabhair súil ar phostálacha a bhfuil clib {displayName} leo" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Tabhair súil ar an topaic {displayName}" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Le {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Le <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Má chruthaíonn tú cuntas, glacann tú leis na <0>Téarmaí Seirbhíse msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Má chruthaíonn tú cuntas, glacann tú leis na <0>Téarmaí Seirbhíse." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Ceamara" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cealaigh an cuardach" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Balbhaíodh an comhrá" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Socruithe comhrá" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Díbhalbhaíodh an comhrá" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Comhráite" @@ -2837,7 +2808,7 @@ msgstr "Roghnaigh modh deimhnithe fearainn" msgid "Choose Feeds" msgstr "Roghnaigh Fothaí" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Roghnaigh ar mo shon" @@ -2854,7 +2825,7 @@ msgstr "Roghnaigh Daoine" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Roghnaigh an dath seo mar abhatár duit" @@ -2879,7 +2850,7 @@ msgstr "Tóg d'amlíne féin! Is féidir teacht ar ábhar a thaitneoidh leat le msgid "Choose your password" msgstr "Roghnaigh do phasfhocal" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Do leasainm" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi" @@ -3003,7 +2974,7 @@ msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi" msgid "Close" msgstr "Dún" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Dún an dialóg oscailte" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Dún an dialóg seo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Dúnann sé seo an rabhadh faoi uasdátú an phasfhocail" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mód datha" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Greannáin" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Treoirlínte an phobail" @@ -3141,7 +3112,7 @@ msgstr "Treoirlínte an phobail" msgid "Complete onboarding and start using your account" msgstr "Críochnaigh agus tosaigh ag baint úsáide as do chuntas." -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Freagair an dúshlán" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Cum postáil nua" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "Scríobh freagra" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIF á chomhbhrú..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Físeán á chomhbhrú..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Teagmháil le Support" @@ -3253,7 +3224,7 @@ msgstr "Ábhar agus Meáin" msgid "Content and media" msgstr "Ábhar agus meáin" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Ábhar agus Meáin" @@ -3265,10 +3236,6 @@ msgstr "Ábhar Blocáilte" msgid "Content filters" msgstr "Scagthaí ábhair" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Rabhadh ábhair" msgid "Content warnings" msgstr "Rabhadh ábhair" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 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." @@ -3302,7 +3269,7 @@ msgstr "Cúlra an roghchláir comhthéacs, cliceáil chun an roghchlár a dhúna #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Lean leis an snáithe..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Leagan cóipeáilte sa ghearrthaisce" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Cóipeáil an Pasfhocal Aipe" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "Cóipeáil an Nasc" msgid "Copy link to list" msgstr "Cóipeáil an nasc leis an liosta" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Cóipeáil an nasc leis an bpostáil" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "Cóipeáil téacs na teachtaireachta" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "Cóipeáil an taifead TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "An polasaí maidir le cóipcheart" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Níor éiríodh ar an gcomhrá a fhágáil" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Ní féidir an fotha a lódáil" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Níor éiríodh ar an gcomhrá a bhalbhú" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Cruthaigh" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Cruthaigh cód QR le haghaidh pacáiste fáilte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Cruthaigh pacáiste fáilte" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Cruthaigh pacáiste fáilte ar mo shon" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Cláraigh" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Cruthaigh cuntas" @@ -3666,15 +3633,15 @@ msgstr "Cruthaigh cuntas" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Cruthaigh abhatár nua ina ionad sin" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Cruthaigh ceann eile" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Cultúr" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Dorcha" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dorcha" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Téama dorcha" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Réamhshocrú" @@ -3894,7 +3861,7 @@ msgstr "Scrios mo chuntas" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Scrios an phostáil" @@ -3988,7 +3955,7 @@ msgstr "Dialóg: cé atá in ann idirghníomhú leis an bpostáil seo" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Breacdhorcha" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Díchumasaithe" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Ná sábháil" msgid "Discard changes?" msgstr "Faigh réidh leis na hathruithe?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Faigh réidh leis an dréacht?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Faigh réidh leis an bpostáil?" @@ -4079,6 +4046,10 @@ msgstr "" 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/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Cuir ina luí ar aipeanna gan mo chuntas a thaispeáint d'úsáideoirí msgid "Discover new custom feeds" msgstr "Aimsigh sainfhothaí nua" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Aimsigh Fothaí Nua" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ruaig" @@ -4103,19 +4070,19 @@ msgstr "Ruaig" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Ruaig an earráid" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Scoir an treoir tosaithe" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Déan suaitheantais théacs malartaigh níos mó" msgid "Display name" msgstr "Ainm taispeána" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Déanta" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tapáil faoi dhó chun an fhuinneog a dhúnadh" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Cuir an íomhá seo in eagar" msgid "Edit interaction settings" msgstr "Cuir na socruithe idirghníomhaíochta in eagar" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Athraigh mo chuid fothaí" @@ -4406,6 +4374,11 @@ msgstr "Athraigh mo chuid fothaí" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Cuir Daoine in Eagar" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Cé atá in ann freagra a thabhairt" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Cuir do phacáiste fáilte in eagar" @@ -4500,8 +4473,8 @@ msgstr "Leabaigh an cód HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Leabaigh an phostáil" @@ -4509,7 +4482,7 @@ msgstr "Leabaigh an phostáil" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Leabaigh an phostáil seo i do shuíomh gréasáin féin. Cóipeáil an píosa cóid seo a leanas isteach san HTML ar do shuíomh." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Fís-seinnteoir leabaithe" @@ -4533,7 +4506,7 @@ msgstr "Cuir ábhar do dhaoine fásta ar fáil" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Cuir meáin sheachtracha ar fáil" msgid "Enable media players for" msgstr "Cuir seinnteoirí na meán ar fáil le haghaidh" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "Cumasaithe" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Deireadh an fhotha" @@ -4608,7 +4582,7 @@ msgstr "Cuir focal na clib isteach" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Mód lánscáileáin" @@ -4650,11 +4624,11 @@ msgstr "Cuir isteach do leasainm agus do phasfhocal" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Earráid" @@ -4684,7 +4658,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/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "Tig le chuile dhuine freagra a thabhairt" msgid "Everybody can reply to this post." msgstr "Tig le chuile dhuine freagra a thabhairt ar an bpostáil." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Chuile dhuine" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Chuile dhuine" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "Ná cuir i bhfeidhm ar úsáideoirí a leanaim" msgid "Excludes users you follow" msgstr "Leis seo, ní chuirtear an balbhú i bhfeidhm ar úsáideoirí a leanann tú" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Fág an mód lánscáileáin" @@ -4755,11 +4729,11 @@ msgstr "Leathnaigh an liosta úsáideoirí" msgid "Expand or collapse the full post you are replying to" msgstr "Leathnaigh nó laghdaigh an téacs iomlán a bhfuil tú ag freagairt" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "Meáin is féidir a bheith gáirsiúil nó goilliúnach." msgid "Explicit sexual images." msgstr "Íomhánna gnéasacha." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "Meáin sheachtracha" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Is féidir le meáin sheachtracha cumas a thabhairt do shuíomhanna ar an nGréasán eolas fútsa agus faoi do ghléas a chnuasach. Ní sheoltar ná iarrtar aon eolas go dtí go mbrúnn tú an cnaipe “play”." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Roghanna maidir le meáin sheachtracha" @@ -4886,7 +4860,7 @@ msgstr "Theip ar athrú an leasainm. Bain triail eile as." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Teip ar lódáil roghanna na bhfothaí" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Teip ar lódáil na bhfothaí molta" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Teip ar lódáil na gcuntas molta" @@ -5027,12 +5002,12 @@ msgstr "Teip ar lódáil na gcuntas molta" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Fotha" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Roghchlár an fhotha" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Uasdátaíodh na fothaí!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Fothaí a mbeadh spéis agat iontu." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "Sábháladh an comhad!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Aimsigh fothaí le leanúint" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Lean {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Lean {handle}" @@ -5453,11 +5424,11 @@ msgstr "Lean {handle}" msgid "Follow 10 accounts" msgstr "Lean 10 gcuntas" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Lean 7 gcuntas" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Leantóirí de chuid @{0} a bhfuil aithne agat orthu" @@ -5544,7 +5515,7 @@ msgstr "Leantóirí a bhfuil aithne agat orthu" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Ag leanúint {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "Roghanna le haghaidh an fhotha Following" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Roghanna don Fhotha Following" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Leanann sé/sí thú" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Clófhoireann" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Clómhéid" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "De bharr cúrsaí slándála, ní bheidh tú in ann breathnú air seo arís. Dá gcaillfeá an pasfhocal aipe, bheadh ort ceann nua a chruthú." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Don eispéireas is fearr, molaimid an cló téama." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "Go brách" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Pasfhocal dearmadta?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "Ó <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Cruthaigh pacáiste fáilte" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Faigh cabhair" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Tabhair gnúis do do phróifíl" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Haischlib" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Fadhb ort?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Cúnamh" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 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ú." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "I bhfolach" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "I bhfolach mar gheall ar shocruithe modhnóireachta." @@ -6148,9 +6122,9 @@ msgstr "I bhfolach mar gheall ar shocruithe modhnóireachta." msgid "Hidden list" msgstr "Liosta i bhfolach" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Liosta i bhfolach" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Cuir i bhfolach" @@ -6198,7 +6172,7 @@ msgstr "Cuir an freagra i bhfolach do chách" msgid "Hide reply for me" msgstr "Cuir an freagra i bhfolach domsa" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "An bhfuil fonn ort an freagra seo a chur i bhfolach?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Cuir treochtaí i bhfolach" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "An bhfuil fonn ort treochtaí a chur i bhfolach?" @@ -6240,7 +6214,7 @@ msgstr "Cuir liosta na gcuntas i bhfolach" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "Hmmm, ní raibh muid in ann an tseirbhís modhnóireachta sin a lódáil msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Foighne ort! Tá físeáin á seoladh de réir a chéile, agus tá tú fós ag fanacht ar d'uain. Déan iarracht go luath!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Más mian leat do phasfhocal a athrú, seolfaimid cód duit chun dearbhú gur leatsa an cuntas seo." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Níl ann ach tusa anois! Cuardaigh thuas le tuilleadh daoine a chur le do phacáiste fáilte." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID an Jab: {0}" @@ -6816,8 +6788,8 @@ msgstr "Glac páirt sa chomhrá" msgid "Journalism" msgstr "Iriseoireacht" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Lipéad curtha ag {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Lipéadaithe ag an údar." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Lipéid" @@ -6852,7 +6824,7 @@ msgstr "Cuireadh lipéid leis" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 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." @@ -6864,7 +6836,7 @@ msgstr "Lipéid ar do chuntas" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Socruithe teanga" @@ -6874,7 +6846,7 @@ msgstr "Socruithe teanga" msgid "Languages" msgstr "Teangacha" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Níos Mó" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Is Déanaí" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Le tuilleadh a fhoghlaim" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Tuilleadh eolais faoi do fhreastalaí pearsanta féin a óstáil." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Tuilleadh eolais." @@ -6993,8 +6965,8 @@ msgstr "Éirigh as" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Ag fágáil slán ag Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "le déanamh fós." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lig dom roghnú" @@ -7057,7 +7029,7 @@ msgstr "Ar aghaidh linn!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Sorcha" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Sorcha" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Moladh" @@ -7076,7 +7048,7 @@ msgstr "Moladh" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Mol 10 bpostáil." @@ -7085,7 +7057,7 @@ msgstr "Mol 10 bpostáil." msgid "Like 10 posts to train the Discover feed" msgstr "Mol 10 bpostáil leis an bhfotha Discover a thraenáil" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Mol an fotha seo" @@ -7093,8 +7065,8 @@ msgstr "Mol an fotha seo" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Molta ag" @@ -7111,27 +7083,45 @@ msgstr "Molta ag" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Molta ag {0, plural, one {úsáideoir amháin} two {# úsáideoir} few {# úsáideoir} many {# n-úsáideoir} other {# úsáideoir}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Molta ag {likeCount, plural, one {úsáideoir amháin} two {# úsáideoir} few {# úsáideoir} many {# n-úsáideoir} other {# úsáideoir}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Moltaí" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Moltaí don phostáil seo" @@ -7144,7 +7134,7 @@ msgstr "Líneach" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liosta" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liosta nach bhfuil balbhaithe níos mó" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Lódáil tuilleadh" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Lódáil tuilleadh fothaí molta" @@ -7292,8 +7282,8 @@ msgstr "Lódáil tuilleadh fothaí molta" msgid "Load new notifications" msgstr "Lódáil fógraí nua" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Logleabhar" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Déan ceann domsa" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marcáil léite" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Meáin" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Meáin a d'fhéadfadh a bheith mí-oiriúnach nó a chuirfeadh isteach ar dhaoine áirithe." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "úsáideoirí luaite" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Luaite" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Scriosadh an teachtaireacht" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Teachtaireachtaí" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Modhnóireacht" @@ -7636,7 +7630,7 @@ msgstr "Liosta modhnóireachta uasdátaithe" msgid "Moderation lists" msgstr "Liostaí modhnóireachta" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liostaí modhnóireachta" @@ -7645,7 +7639,7 @@ msgstr "Liostaí modhnóireachta" msgid "moderation settings" msgstr "socruithe modhnóireachta" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Stádais modhnóireachta" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cuntais a balbhaíodh" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuntais a balbhaíodh" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Is cuma, cruthaigh leasainm dom" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nua" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Comhrá nua" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Liosta nua" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Pasfhocal Nua" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Postáil nua" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Na freagraí is déanaí ar dtús" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Nuacht" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "An chéad íomhá eile" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Ní fuarthas aon fhothaí. Bain triail as rud éigin eile a chuardach." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Gan moladh fós" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Ní leantar {0} níos mó" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Níl aon teachtaireacht ann fós" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Gan phostáil athluaite fós" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Gan torthaí" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Toradh ar bith" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "Gan torthaí" msgid "No results found for \"{query}\"" msgstr "Gan torthaí ar “{query}”" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Níor mhaith liom é sin." msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Duine ar bith" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Níor mhol éinne fós é. Ar cheart duitse tosú?" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ní dhearna éinne postáil athluaite air seo fós. Ar cheart duitse tosú?" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Lomnochtacht Neamhghnéasach" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Ní bhfuarthas é sin" @@ -8333,7 +8330,7 @@ msgstr "Nóta faoi roinnt" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nod leat: is gréasán oscailte poiblí Bluesky. Ní chuireann an socrú seo srian ar fheiceálacht do chuid ábhair ach amháin ar aip agus suíomh Bluesky. Is féidir nach gcloífidh aipeanna eile leis an socrú seo. Is féidir go dtaispeánfar do chuid ábhair d’úsáideoirí atá logáilte amach ar aipeanna agus suíomhanna eile." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Socruithe fógra" @@ -8353,11 +8350,12 @@ msgstr "Socruithe fógra" msgid "Notification sounds" msgstr "Fuaimeanna fógra" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Úps!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Maith go leor" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Atosú an chláraithe" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Téacs malartach de dhíth ar GIF nó ar GIFanna." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 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." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Téacs malartach de dhíth ar fhíseán nó ar fhíseáin" @@ -8471,7 +8471,7 @@ msgstr "Ní féidir ach le {0} freagra a thabhairt." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Ní oibríonn ach comhaid WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Úps!" @@ -8544,7 +8544,7 @@ msgstr "Úps!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Oscail an cruthaitheoir abhatáir" @@ -8570,21 +8570,22 @@ msgstr "Oscail na roghanna comhrá" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Oscail an roghchlár tarraiceáin" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Oscail roghnóir na n-emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Oscail eolas faoin fhotha" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Oscail roghchlár na bhfothaí" @@ -8627,7 +8628,7 @@ msgstr "Oscail leathanach chun modhnóireacht a dhífhabhtú" msgid "Open muted words and tags settings" msgstr "Oscail socruithe na gclibeanna agus na bhfocal a bhalbhaigh tú" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "Osclaíonn sé seo tuilleadh sonraí le haghaidh iontráil dífhabhtaith msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Osclaíonn sé seo an ceamara ar an ngléas" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Osclaíonn sé seo an próiseas le cuntas nua Bluesky a chruthú" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Pasfhocal uasdátaithe!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Sos" @@ -8925,12 +8926,12 @@ msgstr "Sos" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Cuir an físeán ar shos" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Daoine" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Na daoine atá leanta ag @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Na leantóirí atá ag @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Pictiúir le haghaidh daoine fásta." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Greamaigh an fotha" @@ -9034,7 +9035,7 @@ msgstr "Greamaigh an fotha" msgid "Pin to home" msgstr "Greamaigh le baile" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Greamaigh le Baile" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Greamaithe" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Greamaíodh {0} le Baile" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Greamaithe le do chuid fothaí" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Seinn" @@ -9076,8 +9077,8 @@ msgstr "Seinn {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Seinn an físeán" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Polaitíocht" @@ -9269,7 +9270,7 @@ msgstr "Polaitíocht" msgid "Porn" msgstr "Pornagrafaíocht" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Postáil" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Postáil" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Postáil Uile" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Postáil ó @{0}" @@ -9340,7 +9341,7 @@ msgstr "Postáil a chuir tú i bhfolach" msgid "Post interaction settings" msgstr "Socruithe idirghníomhaíochta na postála" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Greamaíodh an phostáil" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Díghreamaíodh an phostáil" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postálacha" @@ -9398,6 +9396,10 @@ msgstr "Is féidir leat postálacha a bhalbhú bunaithe ar an téacs, clibeanna, msgid "Posts hidden" msgstr "Cuireadh na postálacha i bhfolach" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Príobháideacht" msgid "Privacy and security" msgstr "Príobháideacht agus slándáil" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Príobháideacht agus Slándáil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polasaí Príobháideachta" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Físeán á phróiseáil..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Liostaí poiblí inroinnte chun úsáideoirí a bhlocáil ar an mórchóir." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Ní féidir postálacha a athlua" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Postálacha athluaite" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Postálacha athluaite den phostáil seo" @@ -9647,7 +9650,7 @@ msgstr "Athghníomhaigh do chuntas" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Níos lú" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Níos mó" @@ -9687,11 +9690,11 @@ msgstr "Léigh Polasaí Príobháideachta Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Léigh Téarmaí Seirbhíse Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Molta" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Athnasc" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Athlódáil comhráite" @@ -9766,7 +9765,7 @@ msgstr "Athlódáil comhráite" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Scrios" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Bain an cuntas de" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Bain de mo chuid fothaí" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "An bhfuil fonn ort é a bhaint den mhearliosta?" @@ -9862,7 +9861,7 @@ msgstr "An bhfuil fonn ort é a bhaint den mhearliosta?" msgid "Remove from saved feeds" msgstr "Bain de mo chuid fothaí sábháilte" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Bain an íomhá de" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Baineadh den liosta é" msgid "Removed from saved feeds" msgstr "Baineadh de do chuid fothaí sábháilte é" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Freagraí" @@ -10037,7 +10037,7 @@ msgstr "Ní féidir freagraí a thabhairt ar an bpostáil seo." msgid "Reply" msgstr "Freagair" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Freagair" @@ -10098,8 +10098,8 @@ msgstr "Tuairiscigh an comhrá seo" msgid "Report dialog" msgstr "Tuairiscigh comhrá" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Déan gearán faoi fhotha" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Athphostáilte agat" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Athphostálacha den phostáil seo" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Filleann sé seo abhaile" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Filleann sé seo ar an leathanach roimhe seo" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Sábháil na hathruithe" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Sábháil an cód QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Sábháil i mo chuid fothaí" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Fothaí Sábháilte" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Sábháilte le mo chuid fothaí" @@ -10520,8 +10520,8 @@ msgstr "Sábháilte le mo chuid fothaí" msgid "Say hello!" msgstr "Abair heileo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Eolaíocht" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Fill ar an mbarr" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cuardaigh" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Cuardaigh fothaí ar mhaith leat moladh do dhaoine eile." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cuardaigh GIFanna" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Féach ar phostanna le Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Sleamhnán cuardaigh. Úsáid na saigheadeochracha chun dul ar aghaidh nó ar gcúl, agus an spásbharra chun seinm nó cur ar sos" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Roghnaigh dath" @@ -10764,11 +10769,11 @@ msgstr "Roghnaigh cuntas" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Roghnaigh abhatár" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Roghnaigh emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Roghnaigh GIF" msgid "Select GIF \"{0}\"" msgstr "Roghnaigh GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Roghnaigh an emoji {emojiName} mar abhatár" @@ -10945,7 +10951,8 @@ msgstr "Seol teachtaireacht" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Seol an phostáil seo chuig..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Seol ríomhphost dearbhaithe" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Seol mar theachtaireacht dhíreach" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Socraíonn sé seo an seoladh ríomhphoist le haghaidh athshocrú an phasfhocail" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Socruithe" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Comhroinn mar sin féin" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialóg le nasc a roinnt" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Comhroinn an cód QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Comhroinn an fotha seo" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Roinn an pacáiste fáilte seo" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Roinn an pacáiste fáilte seo agus cuidigh le daoine páirt a ghlacadh i do phobal ar Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Tástáil Roghanna Comhroinnte" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Taispeáin" msgid "Show alt text" msgstr "Taispeáin an téacs malartach" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Taispeáin mar sin féin" @@ -11274,9 +11281,9 @@ msgstr "Taispeáin an liosta mar sin féin" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Tuilleadh" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Taispeáin rabhadh agus scag ó na fothaí é" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Logáil amach?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Caithfidh tú logáil isteach" @@ -11469,7 +11476,7 @@ msgstr "Ná bac leis" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Níos Lú" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Chuaigh rud éigin amú, bain triail eile as" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Rud éigin mícheart? Abair linn." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Spórt" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Tosaigh comhrá nua" @@ -11682,17 +11689,17 @@ msgstr "Cuir tús le daoine a leanúint" msgid "Start adding people!" msgstr "Cuir tús le daoine a leanúint!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Tosaigh comhrá le {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacáiste Fáilte" @@ -11715,12 +11722,16 @@ msgstr "Pacáiste fáilte a chruthaigh tusa" msgid "Starter pack is invalid" msgstr "Tá an pacáiste fáilte neamhbhailí" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pacáistí Fáilte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Tig leat na fothaí agus na daoine is fearr leat a roinnt le do chuid cairde le pacáiste fáilte." @@ -11728,7 +11739,7 @@ msgstr "Tig leat na fothaí agus na daoine is fearr leat a roinnt le do chuid ca msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Leathanach Stádais" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Céim {0} as {1}" @@ -11754,7 +11765,7 @@ msgstr "Stóráil scriosta, tá ort an aip a atosú anois." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Glac síntiús le @{0} leis na lipéid seo a úsáid:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Córas" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tapáil le dúnadh" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Obair curtha i gcrích - 10 gcuntas leanta!" msgid "Task complete - 10 likes!" msgstr "Obair curtha i gcrích - 10 moladh!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Abair linn na rudaí a thaitníonn leat" @@ -12060,7 +12073,7 @@ msgstr "Téarmaí" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Níorbh fhéidir an pacáiste fáilte sin a aimsiú." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Sin é é!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Sin an méid!" @@ -12216,7 +12229,7 @@ msgstr "Is dóigh go bhfuil fadhb leis an bhfreastalaí. Bain triail eile as i g msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Tá an pacáiste fáilte sin neamhbhailí. Tig leat é a scriosadh." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "D'úsáid tú cód dearbhaithe neamhbhailí. Deimhnigh gur bhain tú ús msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Téama" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí. Seiceáil do cheangal leis an idirlíon agus bain triail eile as." @@ -12283,8 +12296,8 @@ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí. S msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bhí fadhb ann maidir le fógraí a fháil. Tapáil anseo le triail eile a bhaint as." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Bhí fadhb ann maidir le postálacha a fháil. Tapáil anseo le triail eile a bhaint as." @@ -12309,7 +12322,7 @@ msgstr "Bhí fadhb ann agus d'fhaisnéis seirbhíse á híoslódáil" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Bhí fadhb ann maidir leis an bhfotha seo a bhaint. Seiceáil do cheangal leis an idirlíon agus bain triail eile as." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Cuirtear na socruithe seo i bhfeidhm ar an bhfotha Following amháin." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Cuireadh bratach leis an {screenDescription} seo:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Ní mór duit logáil isteach le próifíl an chuntais seo a fheiceáil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tá an fotha seo folamh! Is féidir go mbeidh ort tuilleadh úsáideoirí a leanúint nó do shocruithe teanga a athrú." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Tá an fotha seo folamh." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Tá an leasainm seo coimeádta. Bain triail as ceann eile." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Chuir tusa an lipéad seo leis." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Ní dúirt an lipéadóir seo céard iad na lipéid a fhoilsíonn sé, agus is féidir nach bhfuil sé i mbun gnó." @@ -12621,13 +12634,13 @@ msgstr "Tá an liosta seo folamh." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Deir an phostáil seo gur cruthaíodh í ar <0>{0}, ach chonacthas í ar Bluesky den chéad uair ar <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Deir an phostáil seo gur cruthaíodh í ar <0>{0}, ach chonacthas msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ní bheidh an phostáil seo le feiceáil ar do chuid fothaí ná snáitheanna. Ní féidir dul ar ais air seo." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Chuir údar na postála seo cosc ar phostálacha athluaite." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Níl aon leantóirí ag an úsáideoir seo." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Tá an t-úsáideoir seo tar éis thú a bhlocáil. Ní féidir leat a gcuid ábhair a fheiceáil." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Tá an t-úsáideoir seo ar an liosta <0>{0} a bhalbhaigh tú." msgid "This user is new here. Press for more info about when they joined." msgstr "Tá an t-úsáideoir seo nua anseo. Brúigh le tuilleadh eolais a fháil faoina gclárú." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Níl éinne á leanúint ag an úsáideoir seo." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Leis seo, bainfear @{0} den mhearliosta." @@ -12786,7 +12801,7 @@ msgstr "Roghanna Snáitheanna" msgid "Threaded" msgstr "Modh snáithithe" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Roghanna Snáitheanna" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Barr" @@ -12858,7 +12873,7 @@ msgstr "Barr" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Ábhar" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Treochtaí" @@ -12902,7 +12919,7 @@ msgstr "Treochtaí" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "An bhfuil fonn ort an cuntas seo a dhíbhlocáil?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Dílean {0}" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Dímhol" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Ná balbhaigh an snáithe seo níos mó" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Ná balbhaigh an físeán seo níos mó" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Díghreamaigh" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Díghreamaigh an fotha" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Díghreamaigh ón mbaile" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Díghreamaigh an liosta modhnóireachta" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Díghreamaíodh {0} ón mBaile" @@ -13258,11 +13277,11 @@ msgstr "Díliostáil ón lipéadóir seo" msgid "Unsubscribed from list" msgstr "Dhíliostáil tú ón liosta seo" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Theip ar infheictheacht an fhreagra a uasdátú" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Uaslódáil grianghraf in ionad" @@ -13355,7 +13374,7 @@ msgstr "Uaslódáil ó Chomhaid" msgid "Upload from Library" msgstr "Uaslódáil ó Leabharlann" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Íomhánna á n-uaslódáil..." msgid "Uploading link thumbnail..." msgstr "Mionsamhail á huaslódáil..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Físeán á uaslódáil..." @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "Físeán" msgid "Video failed to process" msgstr "Theip ar phróiseáil an fhíseáin" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Físchluichí" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Físeán gan aimsiú." @@ -13653,7 +13672,7 @@ msgstr "Físeán gan aimsiú." msgid "Video settings" msgstr "Socruithe físe" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Uaslódáladh an físeán" @@ -13662,17 +13681,17 @@ msgstr "Uaslódáladh an físeán" msgid "Video: {0}" msgstr "Físeán: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Físeáin" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Féach ar an abhatár atá ag {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Amharc ar phróifíl {0}" @@ -13724,13 +13743,13 @@ msgstr "Féach ar an mblagphost chun tuilleadh eolais a fháil" msgid "View debug entry" msgstr "Féach ar an iontráil dífhabhtaithe" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Féach ar shonraí" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Féach ar an snáithe iomlán" @@ -13761,7 +13780,7 @@ msgstr "Tuilleadh" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Féach ar an tseirbhís lipéadaithe atá curtha ar fáil ag @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo" @@ -13831,7 +13850,7 @@ msgstr "Féach ar do chuid liostaí modhnóireachta" msgid "View your muted accounts" msgstr "Féach ar na cuntais a bhalbhaigh tú" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Tá fadhbanna líonra againn, bain triail as arís" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Ár leithscéal, ach ní féidir linn an liosta seo a thaispeáint. Má 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 bhalbhaigh tú a lódáil an uair seo. Bain triail as arís." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ár leithscéal, ach scriosadh an phostáil atá tú ag freagairt." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Aon scéal?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Úps!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Scríobh postáil" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Scríobh freagra" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Níl cead agat físeáin a uaslódáil." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Is féidir leat logáil isteach le do phasfhocal nua anois." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Tig leat é seo a uasdátú ó do shocruithe." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Tá tú tar éis uasteorainn uaslódálacha físeáin a bhaint amach. Bain triail eile as ar ball." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Níl pacáiste fáilte cruthaithe agat fós!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Ní féidir leat ach suas le 3 fhotha a chur leis seo" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Ní mór duit seachtar ar a laghad a leanúint le pacáiste fáilte a chruthú." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Leanfaidh tú na húsáideoirí agus na fothaí a moladh tar éis duit do chuntas a chruthú!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Leanfaidh tú na húsáideoirí a moladh tar éis duit do chuntas a chruthú!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Tháinig tú go deireadh d’fhotha! Aimsigh cuntais eile le leanúint." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca físeán)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Do chuntas" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Níl tú anseo fada go leor chun físeáin a uaslódáil. Bain triail eile as ar ball." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/gd/messages.po b/src/locale/locales/gd/messages.po index 9f16d19657..df83d00a50 100644 --- a/src/locale/locales/gd/messages.po +++ b/src/locale/locales/gd/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: gd\n" +"Language: gd_GB\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Scottish Gaelic\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Roinn-seòrsa “{interestsDisplayName}” (gnìomhach)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(tha susbaint leabaichte ann)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# uair a thìde} two {# uair a thìde} few {# uairean a thìde} other {# uair a thìde}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Cunntas)" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "a’ leantainn {0}" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} à 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "Chuir {0} {1} mar fhrith-fhreagairt" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "Rinn {firstAuthorName} dearbhadh ort" msgid "{following} following" msgstr "a’ leantainn {following}" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Cha ghabh {handle} ri teachdaireachdan" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# nì gun leughadh} two {# nì gun leug msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {Chaidh # neach-aithne a lorg} two {Chaidh # neach-aithne a lorg} few {Chaidh # luchd-aithne a lorg} other {Chaidh # neach-aithne a lorg}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "Chaidh {profileName} an sàs Bluesky {timeAgoString} air ais" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "Chaidh {profileName} an sàs Bluesky {timeAgoString} air ais, a’ cleachdadh pacaid-thòiseachaidh" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}u air ais" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "’S e neach-dearbhaidh earbsach a th’ ann an {userName}" @@ -842,13 +795,13 @@ msgstr "An dearbhadh a rinn {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "⁊ {computedTotal}" @@ -883,14 +836,14 @@ msgstr "{1, plural, one {a’ leantainn} two {a’ leantainn} few {a’ leantain #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {luaidh} two {luaidh} few {luaidhean} other {luaidh}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {air ath-phostadh} two {air ath-phostadh} few {air ath-phostadh} other {air ath-phostadh}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {air a shàbhaladh} two {air a shàbhaladh} f #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Clàraich a-steach<1> no <2>cruthaich cunntas<3> <4>airson naidheachdan, spòrs, poileataigs is rud sam bith eile a tha a’ dol air Bluesky a lorg." @@ -971,7 +924,7 @@ msgstr "30 latha" msgid "7 days" msgstr "7 làithean" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Cruinneachadh de dh’inbhirean air a bheil fèill mhòr air Bluesky, a’ gabhail a-staigh News, Booksky, Game Dev, Blacksky agus Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Dh’èirich mearachd leis an lìonra. Thoir sùil air a’ cheangal aga #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Chaidh còd ùr a chur" msgid "A new form of verification" msgstr "Dòigh dearbhaidh ùr" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Glacadh-sgrìn de dh’uinneag sgrìobhadh nam post le putan ùr ri taobh a’ phutain “Postaich” a tha ag ràdh “Dreachdan”, le bogh-fhrois de chleasan-teine. Tha an teacsa foidhe anns an bhogsa-sgrìobhaidh ag ràdh “Sin thu, a charaid, an cuala tu an naidheachd? Tha gleus dhreachdan aig Bluesky a-nis!!!”." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "So-ruigsinneachd" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Roghainnean na so-ruigsinneachd" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Chaidh an cunntas a mhùchadh le liosta" msgid "Account options" msgstr "Roghainnean a’ chunntais" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Chaidh an cunntas a thoirt air falbh on ghrad-inntrigeadh" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "’S urrainn do chunntasan aig a bheil cromag chrom-bhileach ghorm <0><1/> cunntasan eile a dhearbhadh. ’S e Bluesky a thaghas an luchd-dearbhaidh earbsach seo." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Gnìomhachd o dhaoine eile" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Cuir roghainn teacsa ris (roghainneil)" msgid "Add another account" msgstr "Cuir cunntas eile ris" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Cuir post eile ris" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Cuir post eile ris an t-snàithlean" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Cuir emoji mar fhrith-fhreagairt" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Cuir an t-inbhir seo ris na h-inbhirean agad" msgid "Add to lists" msgstr "Cuir ri liosta" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Cuir ris na puist a shàbhail thu" @@ -1400,7 +1360,7 @@ msgstr "Inbheach" msgid "Adult content" msgstr "Susbaint inbheach" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Bheir seo cead-inntrigidh dha na teachdaireachdan dìreach" msgid "Already have a code?" msgstr "A bheil còd agad mar-thà?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "A bheil cunntas agad mar-thà?" @@ -1614,7 +1574,7 @@ msgstr "Chaidh post-d a chur gu {0}. Tha còd dearbhaidh na bhroinn as urrainn d msgid "An error has occurred" msgstr "Thachair mearachd" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Thachair mearachd" @@ -1631,7 +1591,7 @@ msgstr "Dh’èirich mearachd fhad ’s a bha sinn a’ faighinn nan cunntasan a msgid "An error occurred while fetching the feed." msgstr "Dh’èirich mearachd rè nuair a bha sinn a’ faighinn an inbhir." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Dh’èirich mearachd nuair a bha sinn a’ gintinn na pacaid tòiseachaidh agad. A bheil thu airson feuchainn ris a-rithist?" @@ -1640,11 +1600,11 @@ msgstr "Dh’èirich mearachd nuair a bha sinn a’ gintinn na pacaid tòiseacha msgid "An error occurred while hiding suggestion. {0}" msgstr "Dh’èirich mearachd fhad ’s a bha sinn a’ cur na mhol sinn am falach. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Dh’èirich mearachd rè luchdadh a’ video. Feuch ris a-rithist an ceann greis." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Dh’èirich mearachd rè luchdadh a’ video. Feuch ris a-rithist." @@ -1684,7 +1644,7 @@ msgstr "Dh’èirich mearachd. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Dealbh dhe na h-avataran aig cleachdaichean a’ sruthadh à leabhar luchd-aithne dha aplacaid Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Dealbh de ghrunn puist Bluesky ri taobh ìomhaigheadan ath-phostaidh, ’s toil agus bheachdan" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Duilgheadas nach eil am measg nan roghainnean seo" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Dh’èirich duilgheadas nuair a bha sinn a’ fosgladh na cabadaich" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Duine sam bith" @@ -1802,7 +1760,7 @@ msgstr "Duine sam bith a tha gam leantainn" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Feumaidh co-dhiù 4 caractaran bhith ann am facal-faire na h-aplacaid" msgid "App passwords" msgstr "Faclan-faire nan aplacaidean" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Faclan-faire nan aplacaidean" @@ -1891,8 +1849,8 @@ msgstr "Tog ath-thagradh an aghaidh a’ cho-dhùnaidh seo" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Cuir an t-iarrtas pull an gnìomh" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Air a thasglannachadh ann an {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Post tasglannaichte" @@ -1980,7 +1938,7 @@ msgstr "A bheil thu cinnteach gu bheil thu airson seo a thoirt air falbh o na h- msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "A bheil thu cinnteach gu bheil thu airson am post seo a thilgeil air falbh?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Cluich videothan is GIFs gu fèin-obrachail" msgid "Available" msgstr "Ri fhaighinn" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Mus cruthaich thu post no mus fhreagair thu, feumaidh tu am post-d agad a dhearbhadh." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Mus cruthaich thu pacaid tòiseachaidh, feumaidh tu am post-d agad a dhearbhadh." @@ -2135,10 +2097,10 @@ msgstr "Mus fhaigh thu brathan mu phuist a dh’fhoillsicheas {name}, feumaidh t #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Tòisich air dearbhadh d’ aoise le bhith a’ lìonadh nan raointean g msgid "Beta Feature" msgstr "Gleus beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Là-breith" msgid "Birthday" msgstr "Co-là breith" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Bacte" msgid "Blocked accounts" msgstr "Cunntasan air am bacadh" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cunntasan air am bacadh" @@ -2282,7 +2250,7 @@ msgstr "Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan aga 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 "Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan agad, iomradh a dhèanamh ort no eadar-ghabhail eile a dhèanamh leat. Chan fhaic thu an t-susbaint aca agus chan fhaic iad an t-susbaint agad-sa." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Fiù ma bhacas tu an leubailiche seo, ’s urrainn dha leubailean a chur ris a’ chunntas agad fhathast." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Chan urrainn dha Bluesky dearbhadh gu bheil an ceann-là a thathar a’ cumail a-mach fìor." @@ -2330,7 +2299,7 @@ msgstr "’S e lìonra fosgailte a th’ ann am Bluesky far an urrainn dhut sola msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "’S e lìonra fosgailte a th’ ann am Bluesky far an urrainn dhut solaraiche a thaghadh thu fhèin. Ma tha thu air ùr-thighinn dhan àite, mholamaid dhut a’ bhun-roghainn, Bluesky Social, a chleachdadh an toiseach." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Tha Bluesky nas fheàrr le caraidean!" @@ -2358,7 +2327,7 @@ msgstr "Teirmichean na seirbheise aig Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Glèidhidh Bluesky an luchd-aithne agad an cruth dàta còdaichte. Ma bheir thu luchd-aithne air falbh, thèid an dàta seo a sguabadh às sa bhad." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Taghaidh Bluesky grunn chunntasan aig daoine air an lìonra agad a mholar." @@ -2425,24 +2394,25 @@ msgstr "Rùraich barrachd mholaidhean air an duilleag “Rùraich”" msgid "Browse other feeds" msgstr "Rùraich inbhirean eile" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Rùraich puist mu dhèidhinn {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Rùraich puist ris a bheil an taga {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Rùraich a’ phacaid tòiseachaidh {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Rùraich an cuspair “{0}”" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Rùraich an cuspair {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Am putan a bheir air ais gu loidhne-ama do dhachaigh thu" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Le {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Le <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Le bhith a’ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmiche msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Le bhith a’ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmichean na seirbheise." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Leat-sa" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "An camara" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Sguir dhen ath-ghnìomhachadh is clàraich a-mach" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Sguir dhen lorg" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Cha bhi buaidh air an liosta ma dh’atharraicheas tu a’ phacaid-thòiseachaidh an dèidh dhut a chruthachadh. Bidh an liosta na lethbhreac neo-eisimeileach." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chaidh a’ chabadaich a mhùchadh" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Bogsa a-steach nan iarrtasan cabadaich" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Iarrtasan cabadaich" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Roghainnean na cabadaich" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chaidh a’ chabadaich a neo-mhùchadh" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Cabadaich" @@ -2837,7 +2808,7 @@ msgstr "Tagh dòigh airson dearbhadh na h-àrainne" msgid "Choose Feeds" msgstr "Tagh inbhirean" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Dèan taghadh às mo leth" @@ -2854,7 +2825,7 @@ msgstr "Tagh daoine" msgid "Choose post languages" msgstr "Tagh cànain nam post" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Tagh an dath seo mar avatar agad" @@ -2879,7 +2850,7 @@ msgstr "Dealbh loidhne-ama dhut fhèin! Inbhirean leis a’ choimhearsnachd a bh msgid "Choose your password" msgstr "Tagh facal-faire dhut" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Tagh ainm-chleachdaiche dhut" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "Dèan briogadh airson clàr-taice an taga airson {0} fhosgladh" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig as ùr" @@ -3003,7 +2974,7 @@ msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig a #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig a msgid "Close" msgstr "Dùin" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Dùin an còmhradh gnìomhach" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Dùin sealladair nan dealbhan" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Dùin an clàr-taice" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Dùin an co-còmhradh seo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Dùin mòideal an fhàilteachaidh" @@ -3098,7 +3069,7 @@ msgstr "Dùin mòideal an fhàilteachaidh" msgid "Closes password update alert" msgstr "Dùinidh seo caismeachd mu ùrachadh an fhacail-fhaire" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Dùinidh seo an uinneag sgrìobhaidh is tilgidh e air falbh dreachd a’ phuist" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Am modh-dhathan" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Dealbhan-èibhinn" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Treòrachadh na coimhearsnachd" @@ -3141,7 +3112,7 @@ msgstr "Treòrachadh na coimhearsnachd" msgid "Complete onboarding and start using your account" msgstr "Coilean am bòrdachadh is tòisich air an cunntas agad a chleachdadh" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Coilean an dùbhlan" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Sgrìobh post ùr" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Sgrìobh puist a bhios suas ri {0, plural, one {# charactar} two {# charactar} few {# caractaran} other {# caractar}} a dh’fhaid" @@ -3160,11 +3131,11 @@ msgstr "Sgrìobh puist a bhios suas ri {0, plural, one {# charactar} two {# char msgid "Compose reply" msgstr "Sgrìobh freagairt" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "A’ co-dhlùthachadh an GIF…" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "A’ dùmhlachadh a’ video…" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Cuir fios gu sgioba na taice againn" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Cuir fios gu sgioba na taice" @@ -3253,7 +3224,7 @@ msgstr "Susbaint ⁊ meadhanan" msgid "Content and media" msgstr "Susbaint is meadhanan" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Susbaint is meadhanan" @@ -3265,10 +3236,6 @@ msgstr "Chaidh susbaint a bhacadh" msgid "Content filters" msgstr "Criathragan susbainte" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Susbaint o fheadh an lìonraidh a chòrdas riut nar beachd." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Cànain susbainte" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Susbaint a bhrosnaicheas no a sheallas fèin-dochann" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Rabhadh susbainte" msgid "Content warnings" msgstr "Rabhaidhean susbainte" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Cùlaibh a’ chlàir-thaice cho-theacsail, dèan briogadh airson an clàr-taice a dhùnadh." @@ -3302,7 +3269,7 @@ msgstr "Cùlaibh a’ chlàir-thaice cho-theacsail, dèan briogadh airson an cl #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Leugh an còrr dhen t-snàithlean…" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Chaidh lethbhreac de thionndadh a’ bhuild a chur air an stòr-bhòrd" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Dèan lethbhreac de dh’fhacal-faire na h-aplacaid" msgid "Copy at:// URI" msgstr "Dèan lethbhreac dheth at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Dèan lethbhreac dhe DID an ùghdair" @@ -3449,10 +3416,10 @@ msgstr "Dèan lethbhreac dhen cheangal" msgid "Copy link to list" msgstr "Dèan lethbhreac dhen cheangal ris an liosta" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Dèan lethbhreac dhen cheangal ris a’ phost" @@ -3470,8 +3437,8 @@ msgstr "Cuir lethbhreac dhen cheangal dhan pacaid tòiseachaidh" msgid "Copy message text" msgstr "Dèan lethbhreac de theacsa na teachdaireachd" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Dèan lethbhreac dhen phost aig:// URI" @@ -3490,7 +3457,7 @@ msgstr "Dèan lethbhreac dhen reacord TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Poileasaidh na còrach-lethbhreac" @@ -3540,11 +3507,11 @@ msgstr "Cha b’ urrainn dhuinn gach maids a leantainn. {0}" msgid "Could not leave chat" msgstr "Cha b’ urrainn dhuinn a’ chabadaich fhàgail" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Cha b’ urrainn dhuinn an t-inbhir a luchdadh" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Cha b’ urrainn dhuinn a’ chabadaich a mhùchadh" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Cruthaich" @@ -3624,26 +3591,26 @@ msgstr "Cruthaich liosta dhen phacaid-thòiseachaidh seo" msgid "Create a QR code for a starter pack" msgstr "Cruthaich còd QR airson pacaid tòiseachaidh" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Cruthaich pacaid tòiseachaidh" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Cruthaich pacaid tòiseachaidh" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Cruthaich pacaid tòiseachaidh dhomh" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Cruthaich cunntas" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Cruthaich cunntas" @@ -3666,15 +3633,15 @@ msgstr "Cruthaich cunntas" msgid "Create an account without using this starter pack" msgstr "Cruthaich cunntas ach as aonais na pacaid tòiseachaidh seo" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Cruthaich avatar na àite" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Cruthaich fear eile" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Cultar" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "Stuthan cunnartach no mì-ghnàthachadh dhrugaichean" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Dorcha" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dorcha" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Ùrlar dorcha" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "Stuth inbheach dubh-bhrèige" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Bun-roghainn" @@ -3894,7 +3861,7 @@ msgstr "Sguab an cunntas agam às" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Sguab às am post" @@ -3988,7 +3955,7 @@ msgstr "Còmhradh: co-dhùin cò aig a bheil cead eadar-ghabhail a dhèanamh lei msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Doilleir" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "Cuir 2FA à comas" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "À comas" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Tilg air falbh" msgid "Discard changes?" msgstr "A bheil thu airson na h-atharraichean a thilgeil air falbh?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "A bheil thu airson an dreachd a thilgeil air falbh?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "A bheil thu airson am post a thilgeil air falbh?" @@ -4079,6 +4046,10 @@ msgstr "Dì-cheangail Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Cùm aplacaidean o bhith a’ sealltainn a’ chunntais agam do luchd-cleachdaidh a rinn clàradh a-mach" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Cùm aplacaidean o bhith a’ sealltainn a’ chunntais agam do luchd-cl msgid "Discover new custom feeds" msgstr "Fidir inbhirean gnàthaichte ùra" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Fidir inbhirean ùra" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Fidir inbhirean ùra" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Leig seachad" @@ -4103,19 +4070,19 @@ msgstr "Leig seachad" msgid "Dismiss banner" msgstr "Leig seachad a’ bhratach" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Leig seachad a’ mhearachd" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Leig seachad an treòir thòiseachail" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Leig seachad na rudan sa bheil ùidh agad" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Leig seachad bratach nan tachartasan beòtha" @@ -4142,7 +4109,7 @@ msgstr "Seall baidsean nas motha airson roghainn teacsa" msgid "Display name" msgstr "Ainm-taisbeanaidh" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Fàg soraidh slàn aig na trobhaichean is baoit-bhriogaidh. Faigh lorg air fìor-dhaoine ’s seanchas sa bheil ùidh agad." @@ -4205,8 +4172,8 @@ msgstr "Na gabh dragh! Chaidh gach teachdaireachd is roghainn a shàbhaladh is b #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Na gabh dragh! Chaidh gach teachdaireachd is roghainn a shàbhaladh is b msgid "Done" msgstr "Deiseil" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Thoir gnogag dhùbailte no dèan brùthadh fada air an teachdaireachd airson frith-fhreagairt a chur" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Thoir gnogag dhùbailte air gus an còmhradh a dhùnadh" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Thoir gnogag dhùbailte a dh’innse gur toil leat e" @@ -4328,6 +4295,7 @@ msgstr "Mì-rian ithe" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Deasaich an dealbh" msgid "Edit interaction settings" msgstr "Deasaich roghainnean na h-eadar-ghabhalach" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Deasaich na rudan sa bheil ùidh agad" @@ -4397,7 +4365,7 @@ msgstr "Deasaich staid an t-srutha bheò" msgid "Edit moderation list" msgstr "Deasaich an liosta modarataireachd " -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Deasaich na h-inbhirean agam" @@ -4406,6 +4374,11 @@ msgstr "Deasaich na h-inbhirean agam" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Deasaich na daoine" @@ -4444,7 +4417,7 @@ msgstr "Deasaich liosta an luchd-chleachdaidh" msgid "Edit who can reply" msgstr "Co-dhùin cò aig a bheil cead freagairt" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Deasaich a’ phacaid tòiseachaidh agad" @@ -4500,8 +4473,8 @@ msgstr "Leabaich an còd HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Leabaich am post" @@ -4509,7 +4482,7 @@ msgstr "Leabaich am post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Leabaich am post seo san làrach-lìn agad. Cha leig thu leas ach lethbhreac dhen snippet a leanas a dhèanamh agus a chur a-steach dhan chòd HTML air an làrach-lìn agad." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Cluicheadair video leabaichte" @@ -4533,7 +4506,7 @@ msgstr "Cuir comas inbheach an comas" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Cuir meadhanan on taobh a-muigh an comas" msgid "Enable media players for" msgstr "Cuir cluicheadairean mheadhanan an comas airson" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Cuir an comas brathan o chunntas le bhith a’ tadhal air a’ phròifil is a’ brùthadh <0>ìomhaigheag a’ chluig<1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Cuir brathan push an comas" @@ -4581,7 +4555,7 @@ msgstr "Cuir an comas videothan a tha a’ treandadh san inbhir “Fidir” agad msgid "Enabled" msgstr "An comas" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Deireadh an inbhir" @@ -4608,7 +4582,7 @@ msgstr "Cuir a-steach facal no taga" msgid "Enter code" msgstr "Cuir a-steach an còd" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Tòisich an làn-sgrìn" @@ -4650,11 +4624,11 @@ msgstr "Cuir a-steach an t-ainm-cleachdaiche ’s am facal-faire agad" msgid "Enters full screen" msgstr "Fosglaidh seo an làn-sgrìn" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Dibhearsan" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Mearachd" @@ -4684,7 +4658,7 @@ msgstr "Dh’èirich mearachd nuair a bha sinn a’ sàbhaladh an fhaidhle" msgid "Error receiving captcha response." msgstr "Dh’èirich mearachd nuair a bha sinn a’ faighinn freagairt a’ Chaptcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Mearachd: {error}" @@ -4696,8 +4670,8 @@ msgstr "Faodaidh duine sam bith freagairt" msgid "Everybody can reply to this post." msgstr "Faodaidh duine sam bith am post seo a fhreagairt." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "on a h-uile duine" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "on a h-uile duine" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "A h-uile rud eile" @@ -4738,7 +4712,7 @@ msgstr "Dùin às luchd-cleachdaidh a tha thu gan leantainn" msgid "Excludes users you follow" msgstr "Dùinidh seo às luchd-cleachdaidh a tha thu gan leantainn" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Fàg an làn-sgrìn" @@ -4755,11 +4729,11 @@ msgstr "Leudaich liosta an luchd-chleachdaidh" msgid "Expand or collapse the full post you are replying to" msgstr "Leudaich no co-theannaich am post slàn a tha thu a’ freagairt" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Leudaich teacsa a’ phuist" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Leudaichidh no co-theannaichidh seo teacsa a’ phuist" @@ -4802,15 +4776,15 @@ msgstr "Meadhanan feòlmhor no draghail." msgid "Explicit sexual images." msgstr "Dealbhan feiseil is feòlmhor." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Rùraich" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Fidir an aplacaid" @@ -4844,7 +4818,7 @@ msgstr "Meadhanan on taobh a-muigh" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Ma cheadaicheas tu meadhanan on taobh a-muigh, dh’fhaodte gun toir seo comas do làraichean-lìn fiosrachadh a chruinneachadh mu do dhèidhinn is mun uidheam agad. Cha tèid fiosrachadh sam bith iarraidh no a chur gus am brùth thu am putan “Cluich”." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Roghainnean nam meadhanan on taobh a-muigh" @@ -4886,7 +4860,7 @@ msgstr "Dh’fhàillig atharrachadh an làmhrachain. Feuch ris a-rithist." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Cha b’ urrainn dhuinn na còmhraidhean a luchdadh" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Cha b’ urrainn dhuinn na h-inbhirean a luchdadh" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Cha b’ urrainn dhuinn roghainnean nan inbhirean a luchdadh" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Cha b’ urrainn dhuinn roghainnean nam brathan a luchdadh." @@ -5012,14 +4987,14 @@ msgstr "Cha b’ urrainn dhuinn an roghainn a luchdadh." msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Cha b’ urrainn dhuinn na h-inbhirean a mholamaid a luchdadh" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Cha b’ urrainn dhuinn na daoine a mholamaid an leantainn a luchdadh" @@ -5027,12 +5002,12 @@ msgstr "Cha b’ urrainn dhuinn na daoine a mholamaid an leantainn a luchdadh" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "Cha d’fhuair sinn lorg air an ionad. Feuch ris a-rithist." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Cha b’ urrainn dhuinn an dreachd a luchdadh" @@ -5191,7 +5166,7 @@ msgstr "Cunntas brèige no bot" msgid "False information about elections" msgstr "Fiosrachadh brèige mu thaghadh" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Inbhir" @@ -5212,7 +5187,7 @@ msgstr "Cruthadair inbhirean" msgid "Feed identifier" msgstr "Aithnichear inbhirean" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Clàr-taice nan inbhirean" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Chaidh do bheachd a chur gu muinntir an inbhir" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Chaidh na h-inbhirean ùrachadh!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Saoilidh sinn gun còrd na h-inbhirean seo riut." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Faigh an t-ùrachadh" @@ -5273,11 +5244,11 @@ msgstr "Faigh an t-ùrachadh" msgid "File saved successfully!" msgstr "Chaidh am faidhle a shàbhaladh!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Criathraich cò aig am bi cead iarrtas a chur airson brathan mu do ghnìomhachd fhaighinn" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Criathraich na daoine a gheibh thu teachdaireachdan uapa" @@ -5352,8 +5323,8 @@ msgstr "Lorg cunntasan airson an leantainn" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Lorg luchd-aithne" @@ -5387,7 +5358,7 @@ msgstr "Lorg do charaidean" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Lorg do charaidean air Bluesky le bhith a’ dearbhadh na h-àireimh fòn agad is a’ sireadh an luchd-aithne agad. Cumaidh sinn am fiosrachadh agad fo dhìon agus is ann agadsa a tha smachd air na thachras san ath-cheum. <0>Barrachd fiosrachaidh" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Faigh lorg air na daoine agad" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Lean ri {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Lean ri {handle}" @@ -5453,11 +5424,11 @@ msgstr "Lean ri {handle}" msgid "Follow 10 accounts" msgstr "Lean ri 10 cunntasan" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Lean deichnear an toiseach" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Lean ri 7 cunntasan" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Luchd-leantainn aig @{0} as aithne dhut-sa cuideachd" @@ -5544,7 +5515,7 @@ msgstr "Luchd-leantainn as aithne dhut" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "A’ leantainn {0} a-nis" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "A’ leantainn {handle}" @@ -5578,21 +5549,21 @@ msgstr "A’ leantainn {handle}" msgid "Following feed preferences" msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Gad leantainn" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Cruth-clò" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Meud a’ chrutha-chlò" @@ -5612,13 +5583,13 @@ msgstr "Air sgàth adhbharan tèarainteachd, feumaidh sinn còd dearbhaidh a chu msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Air sgàth adhbharan tèarainteachd, chan fhaic thu seo a-rithist. Ma chailleas tu facal-faire na h-aplacaid, bidh agad ri fear ùr a ghintinn." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "’S e cruth-clò an ùrlair as fheàrr a dh’obraicheas, nar beachd-ne." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Dhut-sa" @@ -5628,7 +5599,7 @@ msgstr "Dhut-sa" msgid "Forever" msgstr "Gu bràth" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Coma leat an treamsgal" @@ -5647,11 +5618,13 @@ msgstr "Na dhìochuimhnich thu am facal-faire?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Saor an t-inbhir agad" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "O" @@ -5674,7 +5647,7 @@ msgstr "O <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Gin pacaid tòiseachaidh" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Faigh cobhair" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Faigh brath nuair a leanas daoine thu." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Faigh brathan nuair a dh’innseas daoine gur toil leotha rud a phostaich thu." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Faigh brath nuair a nì daoine iomradh ort." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Faigh brathan nuair a nì daoine iomradh air post agad." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Faigh brathan nuair a fhreagras daoine post agad." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Faigh brathan nuair a dh’ath-phostaicheas daoine rud a phostaich thusa." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Faigh brathan mu phuist ùra" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Faigh brath nuair a dh’fhoillsicheas {name} post ùr" @@ -5799,11 +5772,11 @@ msgstr "Dèan toiseach-tòiseachaidh" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "Chaidh an GIF a luchdadh suas" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Cuir aodann ris a’ phròifil agad" @@ -5813,20 +5786,20 @@ msgstr "Glòrachadh ainneirt" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Cuir struth beò fad" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "Gnìomhachdan dochainneach no glè chunnartach" msgid "Harming or endangering minors" msgstr "A’ cur mion-aoisich an cunnart no gan dochann" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Taga-hais" @@ -6098,7 +6072,7 @@ msgstr "A bheil còd agad? <0>Briog an-seo." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "A bheil duilgheadasan agad?" @@ -6114,7 +6088,7 @@ msgstr "Cumaidh Bluesky seo fad 7 làithean airson casg a chur air mì-ghnàthac msgid "Help" msgstr "Cobhair" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Dèan nas soilleire e do dhaoine nach e bot a th’ annad le bhith a’ luchdadh suas dealbh no a’ cruthachadh avatar." @@ -6140,7 +6114,7 @@ msgstr "Shin thu!" msgid "Hidden" msgstr "Falaichte" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Falaichte ri linn nan roghainnean modarataireachd agad." @@ -6148,9 +6122,9 @@ msgstr "Falaichte ri linn nan roghainnean modarataireachd agad." msgid "Hidden list" msgstr "Liosta fhalaichte" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Liosta fhalaichte" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Falaich" @@ -6198,7 +6172,7 @@ msgstr "Falaich an fhreagairt seo on a h-uile duine" msgid "Hide reply for me" msgstr "Falaich an fhreagairt seo uam-sa" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Falaich a’ chairt seo" @@ -6218,12 +6192,12 @@ msgstr "A bheil thu airson an fhreagairt seo a chur am falach?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Falaich na cuspairean a tha a’ treandadh" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "A bheil thu airson na cuspairean a tha a’ treandadh a chur am falach?" @@ -6240,7 +6214,7 @@ msgstr "Falaich liosta an luchd-chleachdaidh" msgid "Hide verification badges" msgstr "Falaich na baidsean dearbhaidh" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Falaichidh seo an t-susbaint" @@ -6293,8 +6267,8 @@ msgstr "Hm, cha b’ urrainn dhuinn an t-seirbheis modarataireachd sin a luchdad msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Air do shocair! Tha sinn a’ toirt comas air video mean air mhean – glacaidh foighidinn iasg. Na bi fada gun tilleadh!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Teth" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Seo mar a dh’obraicheas e:" @@ -6409,6 +6379,7 @@ msgstr "Ma dh’ùraicheas tu an seòladh puist-d agad, thèid an 2FA a chur à msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Ma tha thu airson am facal-faire seo atharrachadh, cuiridh sinn còd thugad a dhèanamh cinnteach gur ann agad-sa a tha an cunntas seo." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Ma tha thu airson cuingeachadh cò gheibh brathan mu ghnìomhachd sa chunntas agad, is urrainn dhut seo a chur air gleus sna <0>Roghainnean → Prìobhaideachd is tèarainteachd." @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "Bogsa a-steach falamh!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Chan eil ann ach thu fhèin an-dràsta fhèin! Cuir barrachd dhaoine ris a’ phacaid tòiseachaidh agad le bhith a’ dèanamh lorg gu h-àrd." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID na h-obrach: {0}" @@ -6816,8 +6788,8 @@ msgstr "Thig a chòmhradh" msgid "Journalism" msgstr "Naidheachdas" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Cùm ort leis an deasachadh" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Làrach-lìn KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Air a leubaileadh le {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Air a leubaileadh leis an ùghdar." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Leubailean" @@ -6852,7 +6824,7 @@ msgstr "Chaidh na leubailean a chur ris" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Tha leubailean nan nòtaichean mu chleachdaichean is susbaint. Bheir iad rabhadh do dhaoine, is urrainnear rudan a chur am falach leotha agus na rudan air an lìonra a sheòrsachadh." @@ -6864,7 +6836,7 @@ msgstr "Leubailean a tha ris a’ chunntas agad" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Roghainnean cànain" @@ -6874,7 +6846,7 @@ msgstr "Roghainnean cànain" msgid "Languages" msgstr "Cànain" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Nas motha" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Air a thòiseachadh diog air ais turas mu dheireadh" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "As ùire" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Barrachd fiosrachaidh" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Barrachd fiosrachaidh" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "Barrachd fiosrachaidh mu ion-phortadh luchd-aithne" msgid "Learn more about self hosting your PDS." msgstr "Barrachd fiosrachaidh mu fhèin-òstaireachd a’ PDS agad." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Barrachd fiosrachaidh mun mhodarataireachd a rinneadh air an t-susbaint seo" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Airson barrachd fiosrachaidh mu na tha ùr agus mar a dh’innseas tu dhuinn dè do bheachd, leugh am post sa bhloga againn." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Barrachd fiosrachaidh mun rabhadh seo" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Faigh barrachd fiosrachaidh ann an <0>roghainnean a’ chunntais agad." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Barrachd fiosrachaidh." @@ -6993,8 +6965,8 @@ msgstr "Fàg an­-seo" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "A’ fàgail Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "air fhàgail." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Leig leamsa roghnachadh" @@ -7057,7 +7029,7 @@ msgstr "Tiugainn!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Soilleir" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Soilleir" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "’S toil" @@ -7076,7 +7048,7 @@ msgstr "’S toil" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "’S toil ({0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Nochd gur toil leat 10 puist" @@ -7085,7 +7057,7 @@ msgstr "Nochd gur toil leat 10 puist" msgid "Like 10 posts to train the Discover feed" msgstr "Nochd gur toil leat 10 puist airson teagasg a thoirt dhan inbhir “Fidir”" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Innis gur toil leat an t-inbhir seo" @@ -7093,8 +7065,8 @@ msgstr "Innis gur toil leat an t-inbhir seo" msgid "Like this labeler" msgstr "Nochd gur toil leat an leubailich seo" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Daoine as toil leotha seo" @@ -7111,27 +7083,45 @@ msgstr "Daoine as toil leotha seo" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "’S toil le {0, plural, one {# seo} two {# seo} few {# seo} other {# seo}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "’S toil le {likeCount, plural, one {# seo} two {# seo} few {# seo} other {# seo}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Na ’s toil le daoine" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "’S toil le cuideigin rud a dh’ath-phostaich thu" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Daoine as toil leotha am post seo" @@ -7144,7 +7134,7 @@ msgstr "Loidhneach" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liosta" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Chaidh an liosta a neo-mhùchadh" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "Beò" msgid "Live event happening now: {0}" msgstr "Tha tachartas beò a’ dol: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Chaidh an tachartas beò a chur am falach" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Chaidh an tachartas beò a leigeil ris as ùr" @@ -7279,12 +7269,12 @@ msgstr "Tha gleus nan tachartasan beòtha na ghleus beta" msgid "Live link" msgstr "Ceangal ris an t-sruth bheò" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Luchdaich barrachd dheth" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Luchdaich barrachd inbhirean a mholamaid" @@ -7292,8 +7282,8 @@ msgstr "Luchdaich barrachd inbhirean a mholamaid" msgid "Load new notifications" msgstr "Luchdaich na brathan ùra" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Loga" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "Cuir air gleus roghainnean post-d a’ chunntais agad" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Dèan fear dhomh" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "Comharraich gun deach iad uile a leughadh" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Comharraich gun deach a leughadh" msgid "Marked all as read" msgstr "Chaidh comharradh gun deach iad uile a leughadh" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "Uaireigin eile ’s dòcha" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Meadhanan" @@ -7475,7 +7469,7 @@ msgstr "Meadhanan a th’ air uidheam eile" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Meadhanan a chuireadh dragh air cuid a dhaoine no a bhiodh mì-iomchaidh." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "luchd-cleachdaidh air a bheil iomradh" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Iomraidhean" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Chaidh an teachdaireachd a sguabadh às" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "Roghainnean na teachdaireachd" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Teachdaireachdan" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "Mì-stiùireadh" msgid "Missing media" msgstr "Tha meadhanan a dhìth" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Modarataireachd" @@ -7636,7 +7630,7 @@ msgstr "Chaidh an liosta modarataireachd ùrachadh" msgid "Moderation lists" msgstr "Liostaichean modarataireachd" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liostaichean modarataireachd" @@ -7645,7 +7639,7 @@ msgstr "Liostaichean modarataireachd" msgid "moderation settings" msgstr "roghainnean modarataireachd" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Staidean modarataireachd" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cunntasan a chaidh am mùchadh" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cunntasan a chaidh am mùchadh" @@ -7867,7 +7861,6 @@ msgstr "A bheil agad ri aithris a dhèanamh air briseadh còrach-lethbhreac, iar msgid "Nevermind, create a handle for me" msgstr "Coma, cruthaichibh làmhrachan dhomh" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Ùr" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {post ùr} two {phost ùr} few {puist ùra} oth #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Cabadaich ùr" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Gleus ùr" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Luchd-leantainn ùr" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Liosta ùr" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Facal-faire ùr" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Post ùr" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "As ùire an toiseach" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Naidheachdan" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "An t-ath-dhealbh" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Gun sanasachd, gun tracadh a bhriseas a-steach air do phrìobhaideachd, gun ribean com-pàirteachaidh. Tha suim aig Bluesky dha d’ ùine is aire." @@ -8098,7 +8091,7 @@ msgstr "Cha deach suidheachadh cuin a dh’fhalbhas an ùine air" msgid "No feeds found. Try searching for something else." msgstr "Cha deach inbhir sam bith a lorg. Feuch is lorg rudeigin eile." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Gun neach-leantainn fhathast" @@ -8118,7 +8111,7 @@ msgstr "Gun dealbh" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Cha toil le gin seo fhathast" @@ -8135,7 +8128,7 @@ msgstr "Gun liostaichean" msgid "No longer following {0}" msgstr "Chan eil thu a’ leantainn {0} tuilleadh" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Gun mheadhanan fhathast" @@ -8143,7 +8136,7 @@ msgstr "Gun mheadhanan fhathast" msgid "No messages yet" msgstr "Gun teachdaireachdan fhathast" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Cuir cùl ris an sgrios-sgroladh a sparras algairimean ort. Faigh lorg air inbhirean a bheir dhut na tha a dhìth ort seach sgudal a sparradh ort." @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "Chan eil post sam bith an-seo" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Gun phuist fhathast" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Gun luaidh fhathast" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Gun fhreagairtean fhathast" @@ -8217,13 +8210,13 @@ msgstr "Cha robh toradh ann" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Cha robh toradh ann" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Cha d’fhuair sinn toradh sam bith airson “{0}”." @@ -8236,23 +8229,23 @@ msgstr "Cha deach toradh a lorg" msgid "No results found for \"{query}\"" msgstr "Cha deach toradh a lorg airson “{query}”" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Gun toradh." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Gun phacaid tòiseachaidh fhathast" @@ -8265,7 +8258,7 @@ msgstr "Cha chuir, mòran taing" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Gun phuist video fhathast" @@ -8278,7 +8271,7 @@ msgstr "Chan eil duine sam bith" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Cha tuirt duine sam bith fhathast gur toil leotha seo. Saoil an toil leat-sa e air thoiseach air chàch?" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Cha do rinn duine sam bith luaidh air seo fhathast. Saoil an dèan thusa luaidh air air thoiseach air chàch?" @@ -8298,6 +8291,10 @@ msgstr "Dealbhan dlùth-chaidreach gun aonta" msgid "Non-sexual Nudity" msgstr "Lomnochd neo-fheiseil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Chan eil seo ri fhaighinn air an ùrlar seo." msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Cha deach a lorg" @@ -8333,7 +8330,7 @@ msgstr "Fiosrachadh mu cho-roinneadh" 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 "An aire: Tha Bluesky na lìonra fosgailte agus poblach. Chan eil an roghainn seo a’ cuingeachadh ach faicsinneachd na susbainte agad ann an aplacaid Bluesky is air an làrach-lìn ach dh’fhaodte nach gèill aplacaidean eile ris an roghainn seo. Dh’fhaoidte gun seall aplacaidean is làraichean-lìn eile an t-susbaint agad do luchd-cleachdaidh a rinn clàradh a-mach." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "An aire: Chan fhaic ach luchd-cleachdaidh a tha clàraichte a-staigh seo." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Cha deach dad a shàbhaladh fhathast" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Roghainnean nam brathan" @@ -8353,11 +8350,12 @@ msgstr "Roghainnean nam brathan" msgid "Notification sounds" msgstr "Fuaimean nam brathan" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Ìoc!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "Ceart ma-thà" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Ceart ma-thà" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Ath-shuidheachadh a’ bhòrdachaidh" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon GIF." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon dealbh." @@ -8454,11 +8454,11 @@ msgstr "Thagh thu co-dhiù aon fhaidhle ris nach eil taic." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Tha co-dhiù aon phost ro fhada ’s chan urrainn dhuinn a shàbhaladh mar dhreachd. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Faodaidh dreachd a bhith # charactar a dh’fhaid air a’ char as motha.} two {Faodaidh dreachd a bhith # charactar a dh’fhaid air a’ char as motha.} few {Faodaidh dreachd a bhith # caractaran a dh’fhaid air a’ char as motha.} other {Faodaidh dreachd a bhith # caractar a dh’fhaid air a’ char as motha.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon video." @@ -8471,7 +8471,7 @@ msgstr "Chan fhaod ach {0} freagairt." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Chan eil taic ach ri faidhlichean WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ìoc!" @@ -8544,7 +8544,7 @@ msgstr "Ìoc!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Fosgail cruthadair nan avatar" @@ -8570,21 +8570,22 @@ msgstr "Fosgail roghainnean nan còmhraidhean" msgid "Open draft" msgstr "Fosgail an dreachd" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Fosgail an clàr-taice air an taobh" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Fosgail ròghnaichear nan emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Fosgail sgrìn an fhiosrachaidh mun inbhir" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Fosgail clàr-taice roghainnean an inbhir" @@ -8627,7 +8628,7 @@ msgstr "Fosgail duilleag dì-bhugachadh na modarataireachd" msgid "Open muted words and tags settings" msgstr "Fosgail roghainnean nam faclan is tagaichean mùchte" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Fosgail a’ phacaid" @@ -8699,7 +8700,7 @@ msgstr "Fosglaidh seo mion-fhiosrachadh a bharrachd mu innteart dì-bhugachaidh" msgid "Opens alt text dialog" msgstr "Fosglaidh seo còmhradh na roghainn teacsa" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Fosglaidh seo an camara air an uidheam" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Fosglaidh seo an sruth airson cunntas Bhluesky ùr a chruthachadh" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Fosglaidh seo an sruth airson clàradh a-steach dhan chunntas Bhluesky agad" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Chaidh am facal-faire ùrachadh!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Cuir na stad" @@ -8925,12 +8926,12 @@ msgstr "Cuir na stad" msgid "Pause GIF" msgstr "Cuir an GIF na stad" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Cuir a’ video na stad" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Daoine" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Daoine a tha @{0} a’ leantainn" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Daoine a leanas ri @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Daoine a tha mi gan leantainn" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Daoine a tha thu gan leantainn" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Dealbhan do dh’inbhich." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Prìnich an t-inbhir" @@ -9034,7 +9035,7 @@ msgstr "Prìnich an t-inbhir" msgid "Pin to home" msgstr "Prìnich ris an dachaigh" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Prìnich ris an dachaigh" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Prìnichte" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Chaidh {0} a phrìneachadh ris an dachaigh" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Prìnichte ris na h-inbhirean agad" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Cluich" @@ -9076,8 +9077,8 @@ msgstr "Cluich {0}" msgid "Play GIF" msgstr "Cluich an GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Cluich a’ video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Sgrìobh do theachdaireachd gu h-ìosal:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Poileataigs" @@ -9269,7 +9270,7 @@ msgstr "Poileataigs" msgid "Porn" msgstr "Pòrnografachd" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Postaich" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Postaich" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Postaich dealbh" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Postaich video" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Postaich na h-uile" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Chaidh am post a bhacadh" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Post le @{0}" @@ -9340,7 +9341,7 @@ msgstr "Chaidh am post a chur am falach leat fhèin" msgid "Post interaction settings" msgstr "Roghainnean eadar-ghabhail a’ phuist" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Roghainnean eadar-ghabhail a’ phuist" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Chaidh am post a phrìneachadh" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Chaidh am post a shàbhaladh" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Chan eil am post prìnichte tuilleadh" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Puist" @@ -9398,6 +9396,10 @@ msgstr "’S urrainn dhut puist a mhùchadh ri linn teacsa a th’ annta, nan ta msgid "Posts hidden" msgstr "Chaidh na puist a chur am falach" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Ceangal a dh’fhaodadh a bhith meallta" @@ -9449,20 +9451,21 @@ msgstr "Prìobhaideachd" msgid "Privacy and security" msgstr "Prìobhaideachd ⁊ tèarainteachd" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Prìobhaideachd ⁊ tèarainteachd" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Roghainnean na prìobhaideachd is na tèarainteachd" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Am poileasaidh prìobhaideachd" msgid "Privacy violation of a minor" msgstr "Briseadh a-steach air prìobhaideachd mion-aoisich" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "A’ pròiseasadh an GIF…" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "A’ pròiseasadh a’ video…" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Poblach, liostaichean luchd-cleachdaidh as urrainn dhut co-roinneadh ach an urrainn do dhaoine am mùchadh no bacadh ri chèile." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Foillsich am post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Foillsich na puist" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Foillsich na freagairtean" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Foillsich an fhreagairt" @@ -9599,12 +9602,12 @@ msgstr "Tha luaidhean air puist à comas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Luaidhean" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Luaidhean air a’ phost seo" @@ -9647,7 +9650,7 @@ msgstr "Cuir an cunntas agad an gnìomh as ùr" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Leugh {0, plural, one {# fhreagairt} two {# fhreagairt} few {# freagairtean} other {# freagairt}} eile" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Leugh am post air a’ bhloga" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Falaich an còrr" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Leugh an còrr" @@ -9687,11 +9690,11 @@ msgstr "Leugh poileasaidh prìobhaideachd Bhluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leugh teirmichean na seirbheise aig Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Fìor-chòmhradh." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Fìor-dhaoine." @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "Air a chleachdadh o chionn goirid" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Na mholamaid" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Ath-cheangail" @@ -9748,7 +9747,7 @@ msgstr "Diùlt an t-iarrtas cabadaich" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Ath-luchdaich na còmhraidhean" @@ -9766,7 +9765,7 @@ msgstr "Ath-luchdaich na còmhraidhean" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Thoir air falbh" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Thoir an cunntas air falbh" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Thoir air falbh o na h-inbhirean agam" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "A bheil thu airson a thoirt air falbh on ghrad-inntrigeadh?" @@ -9862,7 +9861,7 @@ msgstr "A bheil thu airson a thoirt air falbh on ghrad-inntrigeadh?" msgid "Remove from saved feeds" msgstr "Thoir air falbh o na h-inbhirean a shàbhail thu" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Air a thoirt air falbh o na puist a shàbhail thu" @@ -9880,8 +9879,8 @@ msgstr "Thoir an dealbh air falbh" msgid "Remove live status" msgstr "Sguir dhen t-sruth bheò" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Air a thoirt air falbh on liosta" msgid "Removed from saved feeds" msgstr "Air a thoirt air falbh o na h-inbhirean a shàbhail thu" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Air a thoirt air falbh o na puist a shàbhail thu" @@ -9952,7 +9951,7 @@ msgstr "Air a thoirt air falbh o na puist a shàbhail thu" msgid "Removed from starter pack" msgstr "Air a thoirt air falbh on phacaid tòiseachaidh" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Fhreagair iad thu" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Freagairtean" @@ -10037,7 +10037,7 @@ msgstr "Chan urrainnear am post seo a fhreagairt." msgid "Reply" msgstr "Freagair" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Freagair" @@ -10098,8 +10098,8 @@ msgstr "Dèan aithris air a’ chòmhradh" msgid "Report dialog" msgstr "Dèan aithris air a’ chòmhradh" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Dèan aithris air an inbhir" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Rinn thu ath-phostadh" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Ath-phostadh" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Ath-phostaidh a’ phuist seo" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Ath-phostadh de rud a dh’ath-phostaich thusa" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Feuchaidh seo ris a’ ghnìomh mu dheireadh a-rithist is e air fàillig #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Tillidh seo thu gun duilleag-dhachaigh" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Tillidh seo thu gun duilleag roimhpe" @@ -10446,27 +10446,27 @@ msgstr "Sàbhail an latha-breith" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Sàbhail na h-atharraichean" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "A bheil thu airson na h-atharraichean a shàbhaladh?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Sàbhail an dreachd" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "A bheil thu airson an dreachd a shàbhaladh?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Sàbhail an còd QR" msgid "Save these options for next time" msgstr "Sàbhail na roghainnean seo ach am bi iad agam an ath-thuras" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Sàbhail sna h-inbhirean agam" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Inbhirean a shàbhail thu" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Puist a shàbhail thu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Air a shàbhaladh sna h-inbhirean agad" @@ -10520,8 +10520,8 @@ msgstr "Air a shàbhaladh sna h-inbhirean agad" msgid "Say hello!" msgstr "Can halò!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Saidheans" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Sgrolaich chun an taoibh chlì" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Sgrolaich chun an taoibh dheis" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Sgrolaich gun bhàrr" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Lorg" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Dèan lorg sna puist aig {0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Lorg inbhirean a bu toil leat moladh do dhaoine eile." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Lorg barrachd chunntasan" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Lorg barrachd inbhirean" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Lorg GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Chan urrainn dhut lorg a dhèanamh ’s tu gun chlàradh a-steach aig an àm seo" @@ -10709,6 +10709,7 @@ msgstr "Faic dè na dreuchdan bàna aig Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Seall an còrr" @@ -10716,8 +10717,12 @@ msgstr "Seall an còrr" msgid "See more suggested profiles" msgstr "Barrachd phròifilean a mholamaid" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Seall na cunntasan a mholamaid" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Sleamhnachan an t-siridh. Cleachd na saighdean airson gluasad air ais no air adhart agus Space airson a chluich no a chur na stad" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Tagh an roinn-seòrsa “{interestsDisplayName}”" @@ -10748,7 +10753,7 @@ msgstr "Tagh {0}" msgid "Select {langName}" msgstr "Tagh {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Tagh dath" @@ -10764,11 +10769,11 @@ msgstr "Tagh cunntas" msgid "Select an app language" msgstr "Tagh cànan dhan aplacaid" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Tagh avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Tagh emoji" @@ -10780,12 +10785,13 @@ msgstr "Tagh roghainn" msgid "Select app language" msgstr "Tagh cànan dhan aplacaid" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Tagh GIF" msgid "Select GIF \"{0}\"" msgstr "Tagh an GIF “{0}”" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "Tagh prìomh-chànan" msgid "Select telephone code" msgstr "Tagh còd fòn" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Cleachd an emoji {emojiName} mar avatar" @@ -10945,7 +10951,8 @@ msgstr "Cuir an teachdaireachd" msgid "Send post to {name}" msgstr "Cuir am post gu {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Cuir am post gu…" @@ -10963,12 +10970,12 @@ msgstr "Cuir an teachdaireachd on fhòn agad" msgid "Send verification email" msgstr "Cuir teachdaireachd dearbhaidh" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Cuir mar theachdaireachd dhìreach" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Suidhichidh seo am post-d airson ath-shuidheachadh an fhacail-fhaire" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Roghainnean" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Roghainnean a thaobh gnìomhachd dhaoine eile" @@ -11036,49 +11043,49 @@ msgstr "Roghainnean a thaobh gnìomhachd dhaoine eile" msgid "Settings for allowing others to be notified of your posts" msgstr "Na roghainnean a bheir cead do dhaoine eile brathan fhaighinn mu na puist agad" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Roghainnean nam brathan mu dhaoine a dh’innis gur toil leotha rud" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Roghainnean nam brathan mu iomradh" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Roghainnean nam brathan mu luchd-leantainn ùr" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Roghainnean nam brathan mu rud sam bith eile" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Roghainnean nam brathan mu dhaoine a dh’innis gur toil leotha rud a dh’ath-phostaich thusa" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Roghainnean nam brathan mu ath-phostadh de rud a dh’ath-phostaich thusa" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Roghainnean nam brathan mu luaidhean" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Roghainnean nam brathan mu fhreagairtean" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Roghainnean nam brathan mu ath-phostadh" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Co-roinn e co-dhiù" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Co-roinn DID an ùghdair" @@ -11127,7 +11134,7 @@ msgstr "Co-roinn DID an ùghdair" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Còmhradh a’ cheangail cho-roinnidh" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Co-roinn post aig:// URI" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Co-roinn an còd QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Co-roinn an t-inbhir seo" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Co-roinn a’ phacaid tòiseachaidh seo" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Co-roinn a’ phacaid tòiseachaidh seo agus cuidich daoine nad choimhearsnachd a tha air ùr-thighinn gu Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Co-roinn an luchd-aithne agad leinn is faigh lorg air do charaidean" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Deuchainn nan co-roghainnean" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Seall" msgid "Show alt text" msgstr "Seall an roghainn teacsa" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Seall e co-dhiù" @@ -11274,9 +11281,9 @@ msgstr "Seall an liosta co-dhiù" msgid "Show lists of users to select from" msgstr "Seall liostaichean luchd-cleachdaidh airson taghadh a dhèanamh" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Seall barrachd" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Seall rabhadh is criathraich às na h-inbhirean e" msgid "Show when you’re live" msgstr "Leig ris nuair a bhios tu ri craoladh beò" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Innsidh seo cuin a chaidh am post seo a chruthachadh" @@ -11341,15 +11348,15 @@ msgstr "Innsidh seo cuin a chaidh am post seo a chruthachadh" msgid "Shows other accounts you can switch to" msgstr "Seallaidh seo na cunntasan eile as urrainn dhut leum thuca" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Seallaidh seo an t-susbaint" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Seallaidh seo an t-susbaint" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "A bheil thu airson clàradh a-mach?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Feumaidh tu clàradh a-steach" @@ -11469,7 +11476,7 @@ msgstr "Leum seachad air" msgid "Skip contact sharing and continue to the app" msgstr "Leum seachad air co-roinneadh an luchd-aithne ’s lean air adhart chun na h-aplacaid" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "Leum air adhart chun an ath-cheum" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Nas lugha" @@ -11499,7 +11506,7 @@ msgstr "Cuiridh seo an cuimhneachan na dhùsal" msgid "So many thoughts, you should post one" msgstr "Uiread a smuaintean, bu chòir dhut tè dhiubh a phostadh" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Meadhanan sòisealta fo do smachd-sa." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Chuir cuideigin {0} mar fhrith-fhreagairt" @@ -11554,7 +11561,7 @@ msgstr "Chuir cuideigin {0} mar fhrith-fhreagairt" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Chaidh rudeigin ceàrr, feuch ris a-rithist" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist ann am mionaid." msgid "Something went wrong. Please try again." msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Mearachd air choireigin? Innis dhuinn." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spama, giùlan-brèige eile no foill" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Spòrs" @@ -11668,7 +11675,7 @@ msgstr "Tòisich air còmhradh is nochdaidh e an-seo." msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Tòisich air cabadaich ùr" @@ -11682,17 +11689,17 @@ msgstr "Tòisich air daoine a chur ris" msgid "Start adding people!" msgstr "Tòisich air daoine a chur ris!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Tòisich air cabadaich le {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacaid tòiseachaidh" @@ -11715,12 +11722,16 @@ msgstr "Pacaid tòiseachaidh leat fhèin" msgid "Starter pack is invalid" msgstr "Tha a’ phacaid tòiseachaidh seo mì-dhligheach" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pacaidean tòiseachaidh" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Tha e furasta na h-inbhirean is daoine as fheàrr leat a cho-roinneadh le pacaidean tòiseachaidh." @@ -11728,7 +11739,7 @@ msgstr "Tha e furasta na h-inbhirean is daoine as fheàrr leat a cho-roinneadh l msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Bheir pacaid-thòiseachaidh comas dhut na h-inbhirean is daoine as fheàrr leat a sgaoileadh am measg do charaidean." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Tha e furasta na h-inbhirean is daoine as fheàrr leat a cho-roinneadh le do charaidean le pacaidean tòiseachaidh." @@ -11742,7 +11753,7 @@ msgstr "Duilleag na staid" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Ceum {0} à {1}" @@ -11754,7 +11765,7 @@ msgstr "Chaidh an stòras fhalamhachadh, feumaidh tu an aplacaid ath-thòiseacha msgid "Stored as part of a secure code for matching with others" msgstr "Ga chumail mar phàirt de chòd tèarainte airson maidseadh le daoine eile a dhèanamh" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Leabhar-sgeulachd" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Fo-sgrìobh aig @{0} airson na leubailean seo a chleachdadh:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Chaidh a dhearbhadh" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Cunntasan a mholamaid" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Laighe na grèine" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Chan eil taic ris a’ ghleus seo nad dhùthaich aig an ìre-sa! Thoir sùil a-rithist uaireigin eile." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Geàrr leum gu {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "An siostam" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Thoir gnogag gu h-ìosal airson cothrom dhan ionad GPS a thoirt dha Bluesky. Leis an dàta seo, ’s urrainn dhuinn susbaint is gleusan a bhuineas dhan àite far a bheil thusa a shealltann dhut." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Thoir gnogag airson an clàr-taice co-theacsail a dhùnadh" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Thoir gnogag airson a leigeil seachad" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Rinn thu a’ chùis air, tha thu a’ leantainn deichnear!" msgid "Task complete - 10 likes!" msgstr "Rinn thu a’ chùis air, dh’innis thu gur toil leat 10 rudan!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Teagaisg dhan algairim againn dè na rudan as toil leat" @@ -12060,7 +12073,7 @@ msgstr "Na teirmichean" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Cha d’fhuair sinn lorg air a’ phacaid tòiseachaidh sin." msgid "That username is already taken" msgstr "Tha an t-ainm-cleachdaiche seo aig cuideigin eile mar-thà" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Sin agaibh e, a chàirdean!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Sin e!" @@ -12216,7 +12229,7 @@ msgstr "Tha coltas gu bheil duilgheadasan aig an fhrithealaiche. Feuch ris a-rit msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Tha a’ phacaid tòiseachaidh a bu toil leat coimhead air mì-dhligheach. ’S urrainn dhut a’ phacaid tòiseachaidh a sguabadh às an àite sin." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Cuspair a’ chlàir-thaice cho-theacsail" @@ -12238,7 +12251,7 @@ msgstr "Tha an còd dearbhaidh a thug thu seachad mì-dhligheach. Dèan cinnteac msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Cha b’ urrainn dhan t-solaraiche dearbhaidh còd a chur chun na h-àireimh fòn agad. Dèan cinnteach gu bheil an àireamh ceart is feuch ris a-rithist." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "An t-ùrlar" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "Bha duilgheadas ann leis a’ cheangal ris an eadar-lìon, feuch ris a-rithist" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Bha duilgheadas ann leis a’ cheangal ris an eadar-lìon, feuch ris a-r msgid "There was an issue contacting the server" msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche, thoir sùil air a’ cheangal ris an eadar-lìon is feuch ris a-rithist." @@ -12283,8 +12296,8 @@ msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche, thoir sùil a msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Cha b’ urrainn dhuinn na brathan fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Cha b’ urrainn dhuinn na puist fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist." @@ -12309,7 +12322,7 @@ msgstr "Cha b’ urrainn dhuinn am fiosrachadh seirbheise agad fhaighinn dhut" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Cha b’ urrainn dhuinn an t-inbhir seo a thoirt air falbh. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Chan eil na roghainnean seo an sàs ach san inbhir “A’ leantainn”. msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Chaidh bratach a chur ris an tuairisgeul seo ({screenDescription}):" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Chaidh co-dhiù aon oidhirp a dhèanamh an cunntas seo a dhearbhadh ach cha do shoirbhich leis an dearbhadh fhathast." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Tha an cunntas seo a’ sparradh air daoine clàradh a-steach mus fhaicear a’ phròifil aca." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tha an t-inbhir seo falamh! Feuch is lean barrachd dhaoine no cuir na roghainnean cànain agad air gleus." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Tha an t-inbhir seo falamh." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Seo làmhrachan glèidhte. Feuch fear eile." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Chuir thusa an leubail seo an sàs." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Cha do chuir an leubailiche seo an cèill dè na leubailean a dh’fhoillsicheas e agus dh’fhaodte nach eil e gnìomhach." @@ -12621,13 +12634,13 @@ msgstr "Tha an liosta seo falamh." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Tha am post seo a’ cumail a-mach gun deach a chruthachadh <0>{0} ach chunnacas e air Bluesky <1>{1} an toiseach." @@ -12649,7 +12662,7 @@ msgstr "Tha am post seo a’ cumail a-mach gun deach a chruthachadh <0>{0} a msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Tha roghainnean smachd air freagairtean an sàs sa phost seo nach aithne dhuinn. Dh’fhaodte gu bheil an aplacaid agad ro aosta." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Chan fhaic ach luchd-cleachdaidh a tha clàraichte a-staigh seo." @@ -12661,7 +12674,7 @@ msgstr "Sguab ùghdar a’ phuist seo às e" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bidh am post seo am falach o inbhirean is snàithleanan. Cha ghabh seo neo-dhèanamh." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Chuir ùghdar a’ phuist seo à comas luaidhean air a’ phost." @@ -12698,11 +12711,12 @@ msgstr "Cha toir seo ach mionaid no dhà." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Chan eil ainm-taisbeanaidh aig a’ chleachdaiche seo agus ri linn sin, chan urrainn dhut a dhearbhadh." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Chan eil duine sam bith a’ leantainn a’ chleachdaiche seo." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Bhac an cleachdaiche seo thu. Chan fhaic thu an t-susbaint aca." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Tha an cleachdaiche seo air an liosta <0>{0} agus tha iad sin mùcht msgid "This user is new here. Press for more info about when they joined." msgstr "Tha an cleachdaiche seo air ùr-thighinn. Dèan brùthadh airson barrachd fiosrachaidh mun latha a chaidh iad an sàs ann." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Chan eil an cleachdaiche seo a’ leantainn duine sam bith." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Ma nì thu seo, thèid an cunntas Bluesky <0>{currentHandle} agad agus an dàta air fad a tha co-cheangailte ris a sguabadh às gu buan. Thoir an aire gum bi buaidh air seirbheisean <1>AT Protocol eile a chleachdas tu leis a’ chunntas seo." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Bheir seo air falbh @{0} o liosta a’ ghrad-inntrigidh." @@ -12786,7 +12801,7 @@ msgstr "Roghainnean an t-snàithlein" msgid "Threaded" msgstr "Mar shnàithlean" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Roghainnean nan snàithleanan" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Chan urrainn dhut uiread a neach-aithne ion-phortadh airson caraidean a lorg" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Brod nan toradh" @@ -12858,7 +12873,7 @@ msgstr "Brod nan toradh" msgid "Top replies first" msgstr "Brod nam freagairtean an toiseach" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Cuspair" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "Seall mar chraobh" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Air bilean an t-sluaigh" @@ -12902,7 +12919,7 @@ msgstr "Air bilean an t-sluaigh" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Roghainnean a tha a’ treandadh" @@ -12918,11 +12935,11 @@ msgstr "Trolladh" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Èiridh earbsa à dàimhean, coimhearsnachdan is co-chomann agus ri linn sin, tha sinn a’ toirt a-steach gleus <0>an luchd.-dearbhaidh earbsach: buidhnean aig am bi comas dearbhadh a dhèanamh." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "Chan eil seo ri làimh" msgid "Unavailable feed information" msgstr "Chan eil fiosrachadh mun inbhir ri fhaighinn" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "A bheil thu airson an cunntas a dhì-bhacadh?" msgid "Unblock list" msgstr "Dì-bhac an liosta" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Na lean ri {0} tuilleadh" msgid "Unfollow account" msgstr "Na lean an cunntas tuilleadh" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Ma nì thu seo, cha lean thu ris a’ chleachdaiche tuilleadh" @@ -13132,7 +13151,7 @@ msgstr "Susbaint inbheach gun leubail" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Susbaint inbheach gun leubail, susbaint dhroch-dhìolach no gun cho-aonta" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Cha toil tuilleadh" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Neo-mhùch an snàithlean" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Till fuaim a’ video" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Dì-phrìnich" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Dì-phrìnich an t-inbhir" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Dì-phrìnich on dachaigh" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Dì-phrìnich on liosta mhodarataireachd" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Chaidh {0} a dhì-phrìneachadh on dachaigh" @@ -13258,11 +13277,11 @@ msgstr "Cuir crìoch air an fho-sgrìobhadh aig an leubailiche seo" msgid "Unsubscribed from list" msgstr "Chaidh crìoch a chur air an fho-sgrìobhadh aig an liosta" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Chan eil taic ri videothan dhen t-seòrsa {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Cha b’ urrainn dhuinn faicsinneachd na freagairt ùrachadh" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Luchdaich suas dealbh an àite sin" @@ -13355,7 +13374,7 @@ msgstr "Luchdaich suas o na faidhlichean" msgid "Upload from Library" msgstr "Luchdaich suas on leabhar-lann" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "A’ luchdadh suas an GIF…" @@ -13369,7 +13388,7 @@ msgstr "A’ luchdadh suas nan dealbhan…" msgid "Uploading link thumbnail..." msgstr "A’ luchdadh suas dealbhag a’ cheangail…" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "A’ luchdadh suas a’ video…" @@ -13408,7 +13427,7 @@ msgstr "Cleachd seo airson clàradh a-steach gun aplacaid eile leis an làmhrach msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Cleachd seòladh post-d a’ chunntais agad no seòladh puist-d ceart eile agad air eagal ’s gum bi aig KWS no Bluesky fios a chur thugad." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "Dh’fhàillig an dearbhadh, feuch ris a-rithist." msgid "Verification settings" msgstr "Roghainnean dearbhaidh" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Roghainnean dearbhaidh" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Cha b’ urrainn dhuinn a’ video a phròiseasadh" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Inbhir video" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Video o {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video o {0}. Thoir gnogag air airson a chluich no a chur na stad" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Geamannan video" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Tha a’ video na stad" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Tha a’ video ga chluich" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Cha deach a’ video a lorg." @@ -13653,7 +13672,7 @@ msgstr "Cha deach a’ video a lorg." msgid "Video settings" msgstr "Roghainnean a’ video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Chaidh a’ video a luchdadh suas" @@ -13662,17 +13681,17 @@ msgstr "Chaidh a’ video a luchdadh suas" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videothan" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Feumaidh a’ video a bhith nas giorra na 3 mionaidean." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Seall" @@ -13691,9 +13710,9 @@ msgstr "Seall an t-avatar aig {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Seall a’ phròifil aig {0}" @@ -13724,13 +13743,13 @@ msgstr "Seall am bloga airson barrachd fiosrachaidh" msgid "View debug entry" msgstr "Seall an t-innteart dì-bhugachaidh" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Seall am mion-fhiosrachadh" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Seall an snàithlean slàn" @@ -13761,7 +13780,7 @@ msgstr "Seall barrachd" msgid "View more trending videos" msgstr "Seall barrachd videothan a tha a’ treandadh" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Seall am post" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Seall an t-seirbheis leubailidh aig @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Seall na dhearbh an cleachdaiche seo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Seall an luchd-cleachdaidh as toil leotha an t-inbhir seo" @@ -13831,7 +13850,7 @@ msgstr "Seall na liostaichean modarataireachd agad" msgid "View your muted accounts" msgstr "Seall na cunntasan a mhùch thu" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Seall an dearbhadh a rinn thu" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Tha duilgheadasan aig an lìonra againn, feuch ris a-rithist" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Tha sinn a’ toirt a-steach ìre eile de dhearbhadh air Bluesky – cromag fhollaiseach." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Tha sinn duilich ach chan urrainn dhuinn an liosta seo fhuasgladh. Ma mh msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Tha sinn duilich ach cha b’ urrainn dhuinn na faclan a mhùch thu a luchdadh an-dràsta fhèin. Feuch ris a-rithist." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "Tha sinn duilich ach chan fhaigh thu cothrom air an sgrìn seo an-dràsta fhèin." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Tha sinn duilich! Tha thu a’ feuchainn ri post a fhreagairt a chaidh a sguabadh às." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Dè do naidheachd?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Cò aig a bheil cead-dearbhaidh?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Oich!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "A bheil thu airson seo a shàbhaladh mar dhreachd mus coimhead thu air na dreachdan agad?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "A bheil thu airson seo a shàbhaladh mar dhreachd airson a dheasachadh uaireigin eile?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Sgrìobh post" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Sgrìobh post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Sgrìobh do fhreagairt" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Tha thu airson Bluesky a chleachdadh ann an àite far a bheil an lagh a sparradh oirnn dearbhadh dè an aois a tha thu mus fhaigh thu cothrom air an aplacaid." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "Chan eil thu ri sruthadh beò tuilleadh" msgid "You are not allowed to upload videos." msgstr "Chan eil cead agad videothan a luchdadh." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Chan eil thu a’ leantainn duine sam bith fhathast" @@ -14362,7 +14383,7 @@ msgstr "Chaidh do dhearbhadh. Caillidh tu d’ inbhe dearbhaidh ma dh’atharrai msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Chaidh do dhearbhadh. Caillidh tu d’ inbhe dearbhaidh ma dh’atharraicheas tu an làmhrachan agad. <0>Barrachd fiosrachaidh." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "’S urrainn dhut na rudan sa bheil ùidh agad a chur air gleus uair sam bith sna roghainnean “Susbaint is meadhanan”." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "’S urrainn dhut clàradh a-steach leis an fhacal-fhaire ùr agad a-nis." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "’S urrainn dhut dreachdan a shàbhaladh anns am bi suas ri mìle caractar." @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "’S urrainn dhut seo ùrachadh sna roghainnean agad uair sam bith." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "Dhearbh thu an seòladh puist-d agad. ’S urrainn dhut an còmhradh seo msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-dràsta fhèin. Feuch ris a-rithist an ceann greis." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Tha atharraichean gun sàbhaladh agad san dreachd seo, a bheil thu airson an sàbhaladh?" @@ -14563,7 +14585,7 @@ msgstr "Tha atharraichean gun sàbhaladh agad san dreachd seo, a bheil thu airso msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Tha atharraichean gun sàbhaladh agad. A bheil thu airson an sàbhaladh mus coimhead thu air na dreachdan agad?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Cha do chruthaich thu pacaid tòiseachaidh fhathast!" @@ -14614,7 +14636,7 @@ msgstr "Chan fhaod thu barrachd air {STARTER_PACK_MAX_SIZE, plural, one {{STARTE msgid "You may only add up to 3 feeds" msgstr "Chan fhaod thu barrachd air trì inbhirean a chur ris" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Feumaidh tu a bhith co-dhiù 13 bliadhna a dh’aois mus urrainn dhut Bluesky a chleachadh. Leugh <0>teirmichean na seirbheise againn airson barrachd fiosrachaidh." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Feumaidh tu co-dhiù seachdnar a leantainn mus urrainn dhut pacaid tòiseachaidh a ghintinn." @@ -14639,7 +14661,7 @@ msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nam meadhanan agad a thoirt msgid "You need to verify your email address before you can enable email 2FA." msgstr "Feumaidh tu an seòladh puist-d agad a dhearbhadh mus urrainn dhut 2FA air a’ phost-d a chur an comas." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "’S mathaid gum b’ fheàirrde dhut an aplacaid ath-thòiseachadh an-dràsta." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Chuir thu {0} mar fhrith-fhreagairt" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "Dh’atharraich thu latha do bhreith o chionn goirid" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Bidh tu a’ leantainn an luchd-cleachdaidh ’s na h-inbhirean a mholamaid-ne turas a bhios an cunntas ùr deiseil agad!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Bidh tu a’ leantainn an luchd-cleachdaidh a mholamaid-ne turas a bhios an cunntas ùr deiseil agad!" @@ -14791,7 +14813,7 @@ msgstr "Seo deireadh na susbainte ghnìomhach." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Seo deireadh an inbhir agad! Faigh lorg air barrachd chunntasan a leanas thu." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Tha uiread a dhreachdan agad ’s a tha ceadaichte" @@ -14799,7 +14821,7 @@ msgstr "Tha uiread a dhreachdan agad ’s a tha ceadaichte" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Rinn thu uiread a dh’iarrtas ’s a tha ceadaichte mar-thà. Feuch ris a-rithist an ceann greis." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus dà msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus videothan)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Chan eil video sam bith eile agad a choimheadas tu air. Deagh-àm airson rudeigin eile a dhèanamh fad greis?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "An cunntas agad" @@ -14835,11 +14857,11 @@ msgstr "Chaidh an cunntas agad a chur na dhàil" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Chan eil an cunntas agad aosta gu leòr fhathast airson videothan a luchdadh suas. Feuch ris a-rithist an ceann greis." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Chaidh na rudan sa bheil ùidh agad ùrachadh!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Ma bhios fhios againn dè na rudan sa bheil ùidh agad, bidh e nas fhasa dhuinn stuth a shealltainn dhut a chòrdas riut!" @@ -14967,11 +14989,11 @@ msgstr "Chaidh am facal-faire agad atharrachadh! Cleachd am fear ùr o seo a-mac msgid "Your password must be at least 8 characters long." msgstr "Feumaidh co-dhiù 8 caractaran bhith san fhacal-faire agad." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Chaidh am post agad a chur" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Chaidh na puist agad a chur" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "An cànan as fheàrr leat" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Dealbh na pròifil agad" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Dealbh na pròifil agad ann an cearcallan co-mheadhanach de dhealbhan pròifil aig daoine eile" @@ -14992,7 +15014,7 @@ msgstr "Dealbh na pròifil agad ann an cearcallan co-mheadhanach de dhealbhan pr msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Chan fhaic luchd-cleachdaidh Bhluesky eile a’ phròifil, na puist, inbhirean is liostaichean agad tuilleadh. ’S urrainn dhut an cunntas agad ath-ghnìomhachadh uair sam bith." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Chaidh do fhreagairt a chur" @@ -15005,7 +15027,7 @@ msgstr "Thèid an aithris agad a chur gu <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Ma leigeis tu ris dè na rudan sa bheil ùidh agad, bidh e nas fhasa susbaint a shealltainn dhut a bhuineas riut-sa." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/gl/messages.po b/src/locale/locales/gl/messages.po index fadea6e9e7..bd961bc7c5 100644 --- a/src/locale/locales/gl/messages.po +++ b/src/locale/locales/gl/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: gl\n" +"Language: gl_ES\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Galician\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contén contido incrustado)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} seguindo" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Non é posíbel enviar mensaxes a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {citas}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicación} other {republicacións}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 días" msgid "7 days" msgstr "7 días" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Accesibilidade" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Axustes de accesibilidade" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Conta silenciada por listaxe" msgid "Account options" msgstr "Opcións da conta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Conta elimada de acceso rápido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Engadir texto alternativo (opcional)" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Engade esta canle ás túas canles" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Adultos" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permitir acceso ás mensaxes directas" msgid "Already have a code?" msgstr "Xa tes un código?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "Un código de verificación foi enviado a {0}. Ingresa ese código a con msgid "An error has occurred" msgstr "Produciuse un erro" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Ocurreu un erro" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ocurreu un error ao xerar o teu paquete de inicio. Queres probar de novo?" @@ -1640,11 +1600,11 @@ msgstr "Ocurreu un error ao xerar o teu paquete de inicio. Queres probar de novo msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Ocurreu un erro ao cargar o vídeo. Por favor, proba de novo." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Ocurreu un erro mentres cargaba o vídeo. Por favor, proba de novo." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Un problema non presente nestas opcións" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Ocurreu un erro mentres tentabas abrir as conversas." +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasinais da app" @@ -1891,8 +1849,8 @@ msgstr "Apelar esta decisión" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arquivada dende {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publicación arquivada" @@ -1980,7 +1938,7 @@ msgstr "Tes a certeza de que desexas eliminar isto das túas canles?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Tes a certeza de querer desbotar esta publicación?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Reprodución auto. de vídeos e GIFs" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Antes de crear un paquete de inicio, primeiro tes que verificar o teu correo." @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Aniversario" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contas bloqueadas" @@ -2282,7 +2250,7 @@ msgstr "Se bloqueas unha conta non poderá responder os teus fíos, mencionarte 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 "Se bloqueas unha conta non poderá responder os teus fíos, mencionarte nin interactuar contigo de ningunha manera. Non verás o seu contido e non poderá ver o teu." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Se bloqueas a un etiquetador aínda poderá seguir aplicando etiquetas na túa conta." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non pode confirmar a autenticidade da data solicitada." @@ -2330,7 +2299,7 @@ msgstr "Bluesky é unha rede aberta onde podes elixir o teu proveedor de aloxame msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky é unha rede aberta onde ti podes escoller o teu propio provedor. Se acabas de chegar, recomendámosche a opción predefinida de Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky é mellor con amizades!" @@ -2358,7 +2327,7 @@ msgstr "Termos do Servizo do Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky elexirá un conxunto de contas recomendadas na túa rede." @@ -2425,24 +2394,25 @@ msgstr "Explora máis suxerencias na páxina Explorar" msgid "Browse other feeds" msgstr "Explorar outras canles" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Navegar publicacións de {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Navegar publicacións etiquetadas con {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Navegar tema {displayName}" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Por {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Por <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo e a <1>Polític msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Cámara" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Cancelar a reactivación e pechar a sesión" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelar procura" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Axustes da conversa" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "Escoller método de verificación do dominio" msgid "Choose Feeds" msgstr "Escolle Canles" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Escolle para min" @@ -2854,7 +2825,7 @@ msgstr "Escolle xente" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Elixe esta color como o teu avatar" @@ -2879,7 +2850,7 @@ msgstr "Escolle a túa propia liña de tempo! Fíos feitos pola comunidade axuda msgid "Choose your password" msgstr "Escolleu o teu contrasinal" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "O teu alcume" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Preme para reintentar a mensaxe fallida" @@ -3003,7 +2974,7 @@ msgstr "Preme para reintentar a mensaxe fallida" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Preme para reintentar a mensaxe fallida" msgid "Close" msgstr "Pechar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Pechar xanela activa" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Pechar esta xanela" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Pecha a alerta de actualización de contrasinal" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modo de color" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Bandas deseñadas" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrices da comunidade" @@ -3141,7 +3112,7 @@ msgstr "Directrices da comunidade" msgid "Complete onboarding and start using your account" msgstr "Completa a incorporación e comeza a usar a túa conta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa o desafío" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Escribir nova publicación" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "Redactar resposta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimindo vídeo..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contacta co soporte" @@ -3253,7 +3224,7 @@ msgstr "Contido e Multimedia" msgid "Content and media" msgstr "Contido e multimedia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contido e Multimedia" @@ -3265,10 +3236,6 @@ msgstr "Contido bloqueado" msgid "Content filters" msgstr "Filtros de contido" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Advertencia de contido" msgid "Content warnings" msgstr "Advertencia de contido" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fondo do menú contextual, preme para pechar o menú." @@ -3302,7 +3269,7 @@ msgstr "Fondo do menú contextual, preme para pechar o menú." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Continuar fío..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Versión de compilación copiada ao portapapeis" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "Copiar Ligazón" msgid "Copy link to list" msgstr "Copia ligazón á lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar ligazón ao chío" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "Copiar texto da mensaxe" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de dereitos de autor" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Non se puido saír deste conversa" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Non se puido cargar esta canle" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Non se puido silenciar a conversa" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crear" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Crear un código QR para o paquete de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crea un paquete de inicio" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea un paquete de inicio para min" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Crear conta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crea unha conta" @@ -3666,15 +3633,15 @@ msgstr "Crea unha conta" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crea outro" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Escuro" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuro" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema escuro" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Por Defecto" @@ -3894,7 +3861,7 @@ msgstr "Borrar a miña conta" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Borrar un chío" @@ -3988,7 +3955,7 @@ msgstr "Xanela: axustar quen pode interactuar con este chío" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Atenuar" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Deshabilitado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Desbotar" msgid "Discard changes?" msgstr "Desbotar cambios?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Desbotar borrador?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Desbotar publicación?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Evitar que as aplicacións amosen a miña conta ás persoas desconectadas" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Evitar que as aplicacións amosen a miña conta ás persoas desconectada msgid "Discover new custom feeds" msgstr "Descubre novas canles personalizadas" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descobre Novas Canles" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Desbotar" @@ -4103,19 +4070,19 @@ msgstr "Desbotar" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Desbotar erro" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Desbotar a guía de introdución" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Amosar insignias de texto alternativo máis grandes" msgid "Display name" msgstr "Amosar o nome" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Listo" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Doble toque para pechar a xanela" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Duplo toque para marcar cun \"gústame\"" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Editar imaxe" msgid "Edit interaction settings" msgstr "Editar axustes de interacción" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar as Miñas Canles" @@ -4406,6 +4374,11 @@ msgstr "Editar as Miñas Canles" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Persoas" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Editar quen pode responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edita o teu paquete de inicio" @@ -4500,8 +4473,8 @@ msgstr "Insertar código HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Insertar chío" @@ -4509,7 +4482,7 @@ msgstr "Insertar chío" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta este chío no teu sitio web. Simplemente copia o seguinte fragmento e pégao no código HTML do teu sitio web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reprodutor de vídeo incrustado" @@ -4533,7 +4506,7 @@ msgstr "Activar contido para persoas adultas" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Activar medios externos" msgid "Enable media players for" msgstr "Reproducir multimedia de" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "Habilitar os vídeos en tendencia na túa canle \"Descubrir\"" msgid "Enabled" msgstr "Activado" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin das canles" @@ -4608,7 +4582,7 @@ msgstr "Ingresa unha palabra ou etiqueta" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Poñer a pantalla completa" @@ -4650,11 +4624,11 @@ msgstr "Introduce o teu alcume e contrasinal" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erro" @@ -4684,7 +4658,7 @@ msgstr "Ocorreu un erro ao gardar o ficheiro" msgid "Error receiving captcha response." msgstr "Error ao recibir a resposta do captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "Todo o mundo pode responder" msgid "Everybody can reply to this post." msgstr "Todo o mundo pode responder a este chío." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Todos" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "Excluír á contas que segues" msgid "Excludes users you follow" msgstr "Exclúe ás contas que segues" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Saír da pantalla completa" @@ -4755,11 +4729,11 @@ msgstr "Expandir listaxe de persoas" msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou minimizar o chío completo ao que estás respondendo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "Medios explícitos ou potencialmente perturbadores." msgid "Explicit sexual images." msgstr "Imaxes sexuais explícitas." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "Medios externos" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "É posíbel que medios externos permitan que outros sitios recopilen datos sobre ti e o teu dispositivo. Non se envía ou solicita ningún tipo de información ata que presiones o botón de \"play\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Medios externos" @@ -4886,7 +4860,7 @@ msgstr "Erro ao mudar o nome de usuario. Téntao de novo." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Error ao cargar as preferencias das canles." #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Error ao cargar as canles suxeridas." -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Error ao cargar as suxerencias de seguimento." @@ -5027,12 +5002,12 @@ msgstr "Error ao cargar as suxerencias de seguimento." msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Canles" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menú de canles" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Canles actualizadas!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Cremos que estas canles poden gustarche." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "Ficheiro gardado exitosamente!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Procurar contas para seguir" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Seguir a {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Sigue 7 contas" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que coñeces" @@ -5544,7 +5515,7 @@ msgstr "Seguidores que coñeces" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Seguindo {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Seguindo a {handle}" @@ -5578,21 +5549,21 @@ msgstr "Seguindo a {handle}" msgid "Following feed preferences" msgstr "Preferencias das canles de Seguimento" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencias das canles de Seguimento" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Séguete" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fonte" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tamaño de fonte" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Para unha mellor experiencia, recomendamos que uses a fonte do tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "Para sempte" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Esquecéches o teu contrasinal?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Xera un paquete de inicio" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Obtén axuda" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Dálle ao teu perfil unha cara bonita" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Cancelo" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Tes problemas?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Axuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Axuda a que as persoas saiban que non es un bot subindo unha foto ou creando un avatar." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "Oculto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Oculto debido aos teus axustes de moderación." @@ -6148,9 +6122,9 @@ msgstr "Oculto debido aos teus axustes de moderación." msgid "Hidden list" msgstr "Listaxe oculta" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Listaxe oculta" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Ocultar" @@ -6198,7 +6172,7 @@ msgstr "Ocultar rechouchío para todo o mundo" msgid "Hide reply for me" msgstr "Ocultar rechouchío para min" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "Ocultar este rechouchío?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Ocultar temas de tendencia" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Ocultar os temas de tendencia?" @@ -6240,7 +6214,7 @@ msgstr "Ocultar listaxe de persoas" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Oculta o contido" @@ -6293,8 +6267,8 @@ msgstr "Vaites! Non puidemos cargar ese servizo de moderación." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espera! Estamos dando acceso a vídeos gradualmente e aínda estás na listaxe de espera. Volve a consultar máis adiante." -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se desexas cambiar o teu contrasinal, enviarémosche un código para verificar que esta é a túa conta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Por agora só estás ti! Engade máis persoas ao teu paquete inicial buscando arriba." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Tarefa ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "Únete á conversa" msgid "Journalism" msgstr "Xornalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etiquetado por {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etiquetado pola persoa autora." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquetas" @@ -6852,7 +6824,7 @@ msgstr "Etiquetas engadidas" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "As etiquetas son anotacións sobre persoas e contido. Poden usarse para ocultar, advertir e categorizar a rede." @@ -6864,7 +6836,7 @@ msgstr "Etiquetas na túa conta" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Axustes de Idiomas" @@ -6874,7 +6846,7 @@ msgstr "Axustes de Idiomas" msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Máis grande" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Último" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Aprender máis" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Obtén máis información sobre como aloxar o teu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Aprender máis sobre esta advertencia" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Aprender máis." @@ -6993,8 +6965,8 @@ msgstr "Deixar" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Saír de Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "queda por ir." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Déixame escoller" @@ -7057,7 +7029,7 @@ msgstr "Imos!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Claro" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Dálle «gústame» a 10 chíos" @@ -7085,7 +7057,7 @@ msgstr "Dálle «gústame» a 10 chíos" msgid "Like 10 posts to train the Discover feed" msgstr "Dálle «gústame» a 10 publicacións para entrenar as canles de Descubrimento." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Dar «gústame» a esta canle" @@ -7093,8 +7065,8 @@ msgstr "Dar «gústame» a esta canle" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Gustoulle a" @@ -7111,27 +7083,45 @@ msgstr "Gustoulle a" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Gústame" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Gústame en este chío" @@ -7144,7 +7134,7 @@ msgstr "Lineal" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Listaxe" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "A listaxe xa non está silenciada" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Cargar máis" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Cargar máis canles suxeridas" @@ -7292,8 +7282,8 @@ msgstr "Cargar máis canles suxeridas" msgid "Load new notifications" msgstr "Cargar notificacións novas" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Rexistro" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Fai un para min" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marcar como lido" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medios que poden resultar perturbadores ou inapropiados para algunhas audiencias." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "persoas mencionadas" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mencións" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mensaxe eliminada" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensaxes" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderación" @@ -7636,7 +7630,7 @@ msgstr "Listaxe de moderación actualizada" msgid "Moderation lists" msgstr "Listaxes de moderación" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listaxes de Moderación" @@ -7645,7 +7639,7 @@ msgstr "Listaxes de Moderación" msgid "moderation settings" msgstr "axustes de moderación" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Estados de moderación" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Non importa, crea un alcume para min" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Novo" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Novo chat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Novo contrasinal" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Novo chío" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Primeiro as respostas máis recentes" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Noticias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Nova imaxe" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Non se encontraron canles. Intenta buscar algo máis." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Aínda sen gústames" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Xa non segues a {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Aínda non hai mensaxes" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Aínda non hai citas." @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Sen resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sen resultados" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "Non se encontraron resultados" msgid "No results found for \"{query}\"" msgstr "Non se encontraron resultados para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Non, grazas" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Ninguén" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "A ninguén lle gustou isto. Ao mellor deberías darlle unha oportunidade!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ninguén citou isto. Poderías levar a dianteira e citalo antes que ninguén! " @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Nudez non sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Non se encontrou" @@ -8333,7 +8330,7 @@ msgstr "Nota sobre compartir" 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 é unha rede aberta e pública. Esta configuración só limita a visibilidade do teu contido na aplicación e no sitio web de Bluesky, e é posíbel que outras aplicacións non respecten esta configuración. O teu contido aínda se pode mostrar ás persoas que pecharon sesión por outras aplicacións e sitios web." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Axustes de notificacións" @@ -8353,11 +8350,12 @@ msgstr "Axustes de notificacións" msgid "Notification sounds" msgstr "Sons de notificacións" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Ai, non!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "Ben" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Está ben" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Restablecemento da incorporación" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Falta o texto alternativo nunha ou máis imaxes." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Falta o texto alternativo nun ou máis vídeos." @@ -8471,7 +8471,7 @@ msgstr "Só {0} pode responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Só se admiten ficheiros WebVTT (.vtt)." @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Vaites!" @@ -8544,7 +8544,7 @@ msgstr "Vaites!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Abrir o creador de avatares" @@ -8570,21 +8570,22 @@ msgstr "Abrir as opcións de conversa" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Abrir menú lateral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Abrir o selector de emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Abrir pantalla de información da canle" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Abre o menú de opcións das canles" @@ -8627,7 +8628,7 @@ msgstr "Abrir a páxina da depuración de moderación" msgid "Open muted words and tags settings" msgstr "Abrir os axustes de palabras e etiquetas silenciadas" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "Abre detalles adicionales para una entrada de depuración." msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Abrir cámara do dispositivo" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Abrir o fluxo para crear unha nova conta Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Abrir o fluxo para iniciar sesión na túa conta Bluesky existente" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Contrasinal actualizado!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausar" @@ -8925,12 +8926,12 @@ msgstr "Pausar" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar vídeo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Persoas" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persoas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persoas siguindo a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Imaxes pensadas para persoas adultas." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar canle" @@ -9034,7 +9035,7 @@ msgstr "Fixar canle" msgid "Pin to home" msgstr "Fixar no inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixar no Inicio" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Fixado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} fixouse á páxina de inicio" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "As túas canles fixadas" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reproducir" @@ -9076,8 +9077,8 @@ msgstr "Reproducir {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproducir vídeo" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Política" @@ -9269,7 +9270,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Chiar" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Chiar" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar todo" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Chío de @{0}" @@ -9340,7 +9341,7 @@ msgstr "Chío ocultado por ti" msgid "Post interaction settings" msgstr "Axustes de interacción do chío" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Axustes de interacción da publicación" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Chío fixado" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Chío desfixado" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Chíos" @@ -9398,6 +9396,10 @@ msgstr "Os chíos pódense silenciar en función do seu texto, das súas etiquet msgid "Posts hidden" msgstr "Chíos ocultos" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Privacidade" msgid "Privacy and security" msgstr "Privacidade e seguranza" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidade e Seguranza" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Política de privacidade" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Procesando vídeo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Citas deshabilitadas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citas deste chío" @@ -9647,7 +9650,7 @@ msgstr "Reactiva a túa conta" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Ler menos" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Ler máis" @@ -9687,11 +9690,11 @@ msgstr "Le a Política de privacidade de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Le as Condicións de servizo de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomendados" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconectar" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recargar as conversas" @@ -9766,7 +9765,7 @@ msgstr "Recargar as conversas" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Eliminar" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Eliminar a conta" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Eliminar das miñas canles" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Eliminar o acceso rápido?" @@ -9862,7 +9861,7 @@ msgstr "Eliminar o acceso rápido?" msgid "Remove from saved feeds" msgstr "Eliminar das canles gardadas" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Eliminar a imaxe" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Eliminado da listaxe" msgid "Removed from saved feeds" msgstr "Eliminado das miñas canles gardadas" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respostas" @@ -10037,7 +10037,7 @@ msgstr "As respostas a este chío están desactivadas." msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Denunciar conversación" msgid "Report dialog" msgstr "Xanela da denuncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Denunciar canle" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Rechouchiado por ti" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Rechouchíos deste chío" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Tenta de novo a última acción, que errou" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Volve á páxina de inicio" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Volve á páxina anterior" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Gardar cambios" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Gardar código QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Gardar nas miñas canles" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Canles guardadas" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardado nas túas canles" @@ -10520,8 +10520,8 @@ msgstr "Guardado nas túas canles" msgid "Say hello!" msgstr "Di ola!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Ciencia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Desprázate cara arriba" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Busca canles que queiras suxerir aos demais." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Buscar GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Ver empregos en Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecciona unha cor" @@ -10764,11 +10769,11 @@ msgstr "Seleccionar conta" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecciona un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecciona un emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Seleccionar GIF" msgid "Select GIF \"{0}\"" msgstr "Seleccionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Seleccionar o emoji {emojiName} como o teu avatar" @@ -10945,7 +10951,8 @@ msgstr "Enviar mensaxe" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Enviar chío a..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Enviar correo de verificación" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Enviar vía mensaxe directa" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Establece o correo electrónico para restablecer o contrasinal" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Axustes" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Compartir de todas as maneiras" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Xanela para compartir ligazón" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Compartir código QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Compartir esta canle" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Compartir este paquete de inicio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparte este paquete de iniciación e axuda a xente a unirse á túa comunidade en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Probador de Preferencias Compartidas" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Ver" msgid "Show alt text" msgstr "Ver texto alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Ver de todas as maneiras" @@ -11274,9 +11281,9 @@ msgstr "Mostrar listaxe de todas as maneiras" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Ver máis" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Mostrar advertencia e filtrar desde as canles" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Amosa información sobre cando foi creada esta publicación" @@ -11341,15 +11348,15 @@ msgstr "Amosa información sobre cando foi creada esta publicación" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Pechar sesión?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "É necesario iniciar sesión" @@ -11469,7 +11476,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Máis pequeno" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Produciuse un erro, téntao de novo" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Ocorreu un erro? Dínolo." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Deportes" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Iniciar un novo chat" @@ -11682,17 +11689,17 @@ msgstr "Comeza a engadir xente" msgid "Start adding people!" msgstr "Comeza a engadir xente!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquete de inicio" @@ -11715,12 +11722,16 @@ msgstr "Paquete de inicio creado por ti" msgid "Starter pack is invalid" msgstr "O paquete de inicio non é válido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Paquetes de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Os paquetes de inicio permítenche compartir facilmente as túas canles e persoas favoritas coas túas amizades." @@ -11728,7 +11739,7 @@ msgstr "Os paquetes de inicio permítenche compartir facilmente as túas canles msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Páxina de estado" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "O almacenamento borrado, cómpre reiniciar a aplicación agora." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Libro de contos" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Suscríbete a @{0} para usar estas etiquetas:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Cambiar para {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toca para descartar" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Tarefa acadada - 10 seguidores!" msgid "Task complete - 10 likes!" msgstr "Tarefa completada - 10 gústame!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Ensínalle ao noso algoritmo o que che gusta" @@ -12060,7 +12073,7 @@ msgstr "Condicións" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Non se puido atopar ese paquete de inicio." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Iso é todo, parroquia!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Iso é todo!" @@ -12216,7 +12229,7 @@ msgstr "Semella que o servidor está a experimentar problemas. Por favor, ténta msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "O paquete de inicio que estás tentando ver non é válido. Podes eliminar este paquete de inicio no seu lugar." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "O código de verificación que proporcionaches non é válido. Asegúrat msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Produciuse un problema ao contactar co servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Houbo un problema ao contactar co servidor. Comproba a túa conexión a Internet e téntao de novo." @@ -12283,8 +12296,8 @@ msgstr "Houbo un problema ao contactar co servidor. Comproba a túa conexión a msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Houbo un problema ao recuperar as notificacións. Toca aquí para tentalo de novo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Houbo un problema ao recuperar os chíos. Toca aquí para tentalo de novo." @@ -12309,7 +12322,7 @@ msgstr "Houbo un problema recollendo a túa información no servizo" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Produciuse un problema ao eliminar esta canle. Comproba a túa conexión a Internet e téntao de novo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Estas opcións só se aplicarán ao seguinte fío." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Esta {screenDescription} foi marcada:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta conta solicitou que as persoas inicien sesión para ver o seu perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Esta canle está baleira! É posíbel que teñas que seguir a máis persoas ou axustar a túa configuración de idioma." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Esta canle está baleira." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Este nome de usuario está reservado. Fai o favor de escoller un diferente." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Esta etiqueta foi aplicada por ti." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este etiquetador non declarou que etiquetas publica e é posíbel que non estea activo." @@ -12621,13 +12634,13 @@ msgstr "Esta lista está baleira." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicación declara que foi feita en <0>{0}, pero foi vista por primeira vez por Bluesky en <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Esta publicación declara que foi feita en <0>{0}, pero foi vista po msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Este chío ocultarase das canles e dos fíos. Isto non se pode desfacer." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "A persoa autora deste chío desactivou os chíos de citas." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Esta persoa non ten seguidores." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Esta persoa bloqueoute. Non podes ver o seu contido." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Esta persoa está incluída na listaxe <0>{0} que silenciaches." msgid "This user is new here. Press for more info about when they joined." msgstr "Esta persoa é nova aquí. Preme para obter máis información sobre cando se uniron." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Este persoa non segue a ninguén." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Isto eliminará @{0} da listaxe de acceso rápido." @@ -12786,7 +12801,7 @@ msgstr "Preferencias de Fíos" msgid "Threaded" msgstr "Enfiado" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferencias de fíos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Arriba" @@ -12858,7 +12873,7 @@ msgstr "Arriba" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tema" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendencia" @@ -12902,7 +12919,7 @@ msgstr "Tendencia" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Desbloquear Conta?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Deixa de seguir a {0}" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "No me gusta" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Activar o fío" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Activar o audio do vídeo" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Desfixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desfixar canle" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Desfixar do inicio" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Desfixar a listaxe de moderación" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} desfixada do Inicio" @@ -13258,11 +13277,11 @@ msgstr "Cancelar a subscrición a esta etiquetadora" msgid "Unsubscribed from list" msgstr "Cancelouse a subscrición da listaxe" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Produciuse un erro ao actualizar a visibilidade das respostas" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Carga unha foto no seu lugar" @@ -13355,7 +13374,7 @@ msgstr "Cargar desde ficheiros" msgid "Upload from Library" msgstr "Cargar desde a biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Cargando imaxes..." msgid "Uploading link thumbnail..." msgstr "Cargando miniatura da ligazón..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Cargando vídeo..." @@ -13408,7 +13427,7 @@ msgstr "Úsao para iniciar sesión noutra aplicación xunto co teu identificador msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "Vídeo" msgid "Video failed to process" msgstr "Non se puido procesar o vídeo" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Canle de vídeo" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Vídeo de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videoxogos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Vídeo en pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Vídeo en reprodución" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Non se encontrou o vídeo." @@ -13653,7 +13672,7 @@ msgstr "Non se encontrou o vídeo." msgid "Video settings" msgstr "Axustes do video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Vídeo cargado" @@ -13662,17 +13681,17 @@ msgstr "Vídeo cargado" msgid "Video: {0}" msgstr "Vídeo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vídeos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Ver o avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ver o perfil de {0}" @@ -13724,13 +13743,13 @@ msgstr "Consulta a publicación do blog para obter máis detalles" msgid "View debug entry" msgstr "Ver a entrada de depuración" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ver detalles" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ver fío completo" @@ -13761,7 +13780,7 @@ msgstr "Ver máis" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Consulta o servizo de etiquetado proporcionado por @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Consulta as persoas ás que lles gusta esta canle" @@ -13831,7 +13850,7 @@ msgstr "Consulta as túas listaxes de moderación" msgid "View your muted accounts" msgstr "Consulta as túas contas silenciadas" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Temos problemas de rede, téntao de novo" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Sentímolo, mais non puidemos resolver esta lista. Se isto persiste, pó msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Sentímolo, mais non puidemos cargar as túas palabras silenciadas neste momento. Téntao de novo." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentímolo! Eliminouse o chío ao que estás respondendo." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Que hai de novo?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Vaia!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Escribe un chío" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escribe a túa resposta" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Non tes permiso para cargar vídeos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Agora podes iniciar sesión co teu novo contrasinal." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Podes actualizar posteriormente desde as túas preferencias." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Alcanzaches temporalmente o límite de cargas de vídeos. Téntao de novo máis tarde." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Aínda non creaches un paquete de inicio!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Só podes engadir ata 3 canles" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Debes seguir polo menos a outras sete persoas para xerar un paquete de inicio." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirás a máis persoas e as súas canles suxeridas unha vez remates de crear a túa conta!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirás a persoas suxeridas unha vez remates de crear a túa conta! " @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Chegaches ao final das túas canles! Busca máis contas que seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados bytes po msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados vídeos por hoxe)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Xa non hai máis vídeos para ver. Igual é bo momento para descansar un anaco?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "A túa conta" @@ -14835,11 +14857,11 @@ msgstr "A túa conta foi suspendida" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A túa conta aínda non ten suficiente antigüidade para subir vídeos. Por favor, inténtao de novo máis tarde." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "O teu contrasinal debe ter polo menos 8 caracteres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "O teu perfil, chíos, canles e listaxes non estarán visíbeis para outras persoas de Bluesky. Podes reactivar a túa conta en calquera momento iniciando sesión." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/haw/messages.po b/src/locale/locales/haw/messages.po index 41c2a8e225..00db2020c8 100644 --- a/src/locale/locales/haw/messages.po +++ b/src/locale/locales/haw/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: haw\n" +"Language: haw_US\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Hawaiian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1600,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1665,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1849,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1938,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2262,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2299,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2425,28 +2394,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2825,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2974,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3112,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3236,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3269,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3591,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3624,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3633,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3665,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3861,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3955,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,19 +4070,19 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4374,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4473,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4482,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4582,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4658,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4729,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4860,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +5002,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5515,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "" @@ -6198,7 +6172,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,12 +6748,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6788,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6824,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6836,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6846,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6889,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6965,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7029,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7057,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7065,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7083,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7282,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7630,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7639,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8330,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8350,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8471,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8544,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8570,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8727,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8926,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9077,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "" @@ -9269,7 +9270,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9341,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,12 +10703,13 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13374,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13672,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13681,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13743,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" @@ -13818,8 +13837,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13850,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14154,8 @@ msgstr "" msgid "what’s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index 1577f5867a..cdcc2f1ff2 100644 --- a/src/locale/locales/hi/messages.po +++ b/src/locale/locales/hi/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: hi\n" +"Language: hi_IN\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(एम्बेडेड सामग्री मौजूद है)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# घंटा} other {# घंटे}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# पसंद} other {# पसंद}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} फ़ॉलोइंग" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} को संदेश भेजा नहीं जा सकता" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {फ़ॉलोइंग} other {फ़ॉ #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {क्वोट}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {रीपोस्ट}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 दिन" msgid "7 days" msgstr "7 दिन" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "सुलभता" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "सुलभता के सेटिंग" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "सूची द्वारा खाता म्यूट किय msgid "Account options" msgstr "खाते के विकल्प" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "जल्द पहुँच से खाता हटाया गया" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "विवरण जोड़ें (वैकल्पिक)" msgid "Add another account" msgstr "एक और खाता जोड़ें" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "एक और पोस्ट जोड़ें" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "आपके फ़ीड मे यह फ़ीड जोड़ें" msgid "Add to lists" msgstr "सूचियों में जोड़ें" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "वयस्क" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "आपके सीधे संदेशों तक पहुँच msgid "Already have a code?" msgstr "पहले से कोड है?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "{0} को ईमेल भेजा गया है। इसमें msgid "An error has occurred" msgstr "त्रुटि हुई" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "त्रुटि हुई" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "आपके स्टार्टर पैक बनाने में त्रुटि हुई। फिर से प्रयास करें?" @@ -1640,11 +1600,11 @@ msgstr "आपके स्टार्टर पैक बनाने मे msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "वीडियो लोड करते समय त्रुटि हुई। बाद में फिर प्रयास करें।" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "वीडियो लोड करते समय में त्रुटि हुई। फिर से प्रयास करें।" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "समस्या जो इन विकल्पों में से नहीं है" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "बातचीत खोलते समय समस्या हुई" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "ऐप पासवर्ड नाम में कम से कम 4 msgid "App passwords" msgstr "ऐप पासवर्ड" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ऐप पासवर्ड" @@ -1891,8 +1849,8 @@ msgstr "इस निर्णय पर अपील करें" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0} से पुरालेखित" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "पुरालेखित पोस्ट" @@ -1980,7 +1938,7 @@ msgstr "क्या आप सच में इसे अपने फ़ीड msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "क्या आप सच में इस पोस्ट को ख़ारिज करना चाहेंगे?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "वीडियो और GIF स्वतः चलाएँ" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "स्टार्टर पैक बनाने से पहले, आपको अपना ईमेल सत्यापित करना होगा।" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "जन्मदिन" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "अवरुद्ध" msgid "Blocked accounts" msgstr "अवरुद्ध किए गए खाते" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "अवरुद्ध किए गए खाते" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "अवरुद्ध करने पर भी यह लेबलकर्ता आपके खाते पर लेबल लगा सकता है।" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky दावा किए गए तिथि के प्रामाणिकता की पुष्टि नहीं कर सकता।" @@ -2330,7 +2299,7 @@ msgstr "Bluesky एक खुला नेटवर्क है जहाँ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky दोस्तों के साथ बेहतर है!" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky आपके नेटवर्क से कुछ अनुशंसित खाते चुनेगा।" @@ -2425,24 +2394,25 @@ msgstr "एक्सप्लोर पृष्ठ पर और सुझा msgid "Browse other feeds" msgstr "अन्य फ़ीड देखें" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "{displayName} के बारे में पोस्ट देखें" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "{displayName} से टैग किए गए पोस्ट देखें" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "{displayName} विषय देखें" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "{0} के द्वारा" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "<0>{0} के द्वार" @@ -2504,11 +2474,11 @@ msgstr "खाता बनाने से आप <0>सेवा की शर msgid "By creating an account you agree to the <0>Terms of Service." msgstr "खाता बनाने से आप <0>सेवा की शर्तों से सहमत हैं।" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "कैमरा" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "खोज रद्द करें" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "बातचीत म्यूट किया गया" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "बातचीत सेटिंग" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "बातचीत अनम्यूट किया गया" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "डोमेन सत्यापन विधि चुनें" msgid "Choose Feeds" msgstr "फ़ीड चुनें" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "मेरे लिए चुनें" @@ -2854,7 +2825,7 @@ msgstr "लॉग चुनें" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "इस रंग को अपना अवतार के रूप में चुनें" @@ -2879,7 +2850,7 @@ msgstr "आपका अपना टाइमलाइन चुनें! स msgid "Choose your password" msgstr "अपना पासवर्ड चुनें" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "आपका उपयोगकर्ता हैंडल" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "असफल संदेश को फिर से भेजने के लिए क्लिक करें" @@ -3003,7 +2974,7 @@ msgstr "असफल संदेश को फिर से भेजने क #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "असफल संदेश को फिर से भेजने क msgid "Close" msgstr "बंद करें" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "सक्रिय डायलॉग बंद करें" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "यह डायलॉग बंद करें" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "पासवर्ड अपडेट सूचना बंद करता है" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "रंग मोड" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "कॉमिक" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "समुदाय दिशानिर्देश" @@ -3141,7 +3112,7 @@ msgstr "समुदाय दिशानिर्देश" msgid "Complete onboarding and start using your account" msgstr "समाप्त करें और खाते का उपयोग शुरू करें" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "चुनौती पूरी करें" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "नया पोस्ट बनाएँ" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "जवाब लिखें" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "वीडियो कंप्रेस हो रहा है..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "सहायता से संपर्क करें" @@ -3253,7 +3224,7 @@ msgstr "सामाग्री और मीडिया" msgid "Content and media" msgstr "सामग्री और मीडिया" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "सामग्री और मीडिया" @@ -3265,10 +3236,6 @@ msgstr "सामग्री अवरुद्ध" msgid "Content filters" msgstr "सामग्री फ़िल्टर" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "सामग्री चेतावनी" msgid "Content warnings" msgstr "सामग्री चेतावनियाँ" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "संदर्भ मेनू पृष्ठभूमि, मेनू बंद करने के लिए क्लिक करें " @@ -3302,7 +3269,7 @@ msgstr "संदर्भ मेनू पृष्ठभूमि, मेन #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "थ्रेड को जारी रखें..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "बिल्ड संस्कारण क्लिपबोर्ड पर कॉपी की गई" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "ऐप पासवर्ड कॉपी करें" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "लिंक कॉपी करें" msgid "Copy link to list" msgstr "सूची पर लिंक कॉपी करें" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "पोस्ट की लिंक कॉपी करें" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "संदेश पाठ कॉपी करें" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "TXT रिकॉर्ड मूल्य कॉपी करें " #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "कॉपीराइट नीति" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "बातचीत छोड़ी नहीं जा सकी" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "फ़ीड लोड नहीं किया जा सका" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "बातचीत म्यूट नहीं किया जा सका" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "बनाएँ" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "स्टार्टर पैक के लिए QR कोड बनाएँ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "स्टार्टर पैक बनाएँ" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "मेरे लिए स्टार्टर पैक बनाएँ" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "साइन अप करें" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "खाता बनाएँ" @@ -3666,15 +3633,15 @@ msgstr "खाता बनाएँ" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "इसके बदले अवतार बनाएँ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "एक और बनाएँ" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "संस्कृति" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "अँधेरा" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "अँधेरा" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "अँधेरा थीम" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "डिफ़ॉल्‍ट" @@ -3894,7 +3861,7 @@ msgstr "मेरा खाता मिटाएँ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "पोस्ट मिटाएँ" @@ -3988,7 +3955,7 @@ msgstr "डायलॉग: चुनें कि इस पोस्ट से msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "मंद" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "अक्षम" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "ख़ारिज करें" msgid "Discard changes?" msgstr "बदलाव ख़ारिज करें?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "ड्राफ़्ट ख़ारिज करें?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "पोस्ट ख़ारिज करें?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "लॉग आउट उपयोगकर्ताओं को मेरा खाता दिखाने से ऐप्स को मना करें" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "लॉग आउट उपयोगकर्ताओं को मे msgid "Discover new custom feeds" msgstr "नए कस्टम फ़ीड की खोज करें" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "नए फ़ीड की खोज करें" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "ख़ारिज करें" @@ -4103,19 +4070,19 @@ msgstr "ख़ारिज करें" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "त्रुटि ख़ारिज करें" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "शुरुआती गाइड ख़ारिज करें" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "वैकल्पिक पाठ बटन को बड़े आका msgid "Display name" msgstr "प्रदर्शन का नाम" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "हो गया" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "डायलॉग बंद करने के लिए दो बार दबाएँ" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "छवि संपादित करें" msgid "Edit interaction settings" msgstr "संपर्क सेटिंग संपादित करें" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "मेरे फ़ीड संपादित करें" @@ -4406,6 +4374,11 @@ msgstr "मेरे फ़ीड संपादित करें" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "लोग संपादित करें" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "संपादित करें कि कौन जवाब दे सकता है" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "अपना स्टार्टर पैक संपादित करें" @@ -4500,8 +4473,8 @@ msgstr "HTML कोड एंबेड करें" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "पोस्ट एंबेड करें" @@ -4509,7 +4482,7 @@ msgstr "पोस्ट एंबेड करें" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "इस पोस्ट को अपने वेबसाइट में एंबेड करें। नीचे लिखे कोड को कॉपी करें और अपने वेबसाइट के HTML कोड में चिपकाएँ।" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "एम्बेडेड वीडियो प्लेयर" @@ -4533,7 +4506,7 @@ msgstr "वयस्क सामग्री सक्षम करें" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "बाहरी मीडिया सक्षम करें" msgid "Enable media players for" msgstr "इनके लिए मीडिया प्लेयर सक्षम करें" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "सक्षम" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "फ़ीड का अंत" @@ -4608,7 +4582,7 @@ msgstr "शब्द या टैग दर्ज करें" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "फ़ुलस्क्रीन में जाएँ" @@ -4650,11 +4624,11 @@ msgstr "अपने उपयोगकर्ता नाम और पास msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "त्रुटि" @@ -4684,7 +4658,7 @@ msgstr "फ़ाइल सहेजते समय त्रुटि हुई" msgid "Error receiving captcha response." msgstr "CAPTCHA उत्तर पाने मे त्रुटि हुई" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "सब जवाब दे सकते हैं" msgid "Everybody can reply to this post." msgstr "सब इस पोस्ट का जवाब दे सकते हैं" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "सब" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "सब" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "आपके फ़ॉलो किए गए उपयोगकर् msgid "Excludes users you follow" msgstr "आपके फ़ॉलो किए गए उपयोगकर्ताओं के अलावा सब पर लागू होता है" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "फ़ुलस्क्रीन से निकलें" @@ -4755,11 +4729,11 @@ msgstr "उपयोगकर्ताओं की सूची बढ़ाता msgid "Expand or collapse the full post you are replying to" msgstr "जिस पोस्ट का जवाब दे रहे हैं उसे बढ़ाता या संक्षिप्त करता है" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "अश्लील या संभावित व्यथित क msgid "Explicit sexual images." msgstr "अश्लील यौन छवि" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "बाहरी मीडिया प्राथमिकताएँ" @@ -4886,7 +4860,7 @@ msgstr "हैंडल बदलने में असफल। कृपय #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "फ़ीड प्राथमिकताएँ लोड करने में असफल" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "अनुशंसित फ़ीड लोड करने में असफल" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "अनुशंसित फ़ॉलो लोड करने में असफल" @@ -5027,12 +5002,12 @@ msgstr "अनुशंसित फ़ॉलो लोड करने मे msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "फ़ीड" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "फ़ीड मेनू" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "फ़ीड अपडेट की गई!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "फ़ीड जो हमें लगता है आपको पसंद आए।" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "फ़ाइल सफलतापूर्वक सहेजी गई!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "फ़ॉलो करने के लिए खाते खोजे msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "{0} को फ़ॉलो करें" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "10 खाते फ़ॉलो करें" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "7 खातों को फ़ॉलो करें" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "@{0} के फ़ॉलोअर जिन्हें आप जानते हैं" @@ -5544,7 +5515,7 @@ msgstr "फ़ॉलोअर जिन्हें आप जानते ह #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "{0} को फ़ॉलो करते हैं" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "आपको फ़ॉलो करते हैं" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "फ़ॉन्ट" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "फ़ॉन्ट आकार" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "सुरक्षा कारणों से, आप इसे फिर से देख नहीं सकेंगे। यदि आप इस ऐप पासवर्ड को खो देते हैं, तो आपको एक नया ऐप पासवर्ड उत्पन्न करना होगा।" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "बहतरीन अनुभव के लिए, हम थीम फ़ॉन्ट का उपयोग करने की सलाह देते हैं।" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "हमेशा" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "पासवर्ड भूल गए?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "<0/> से" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "स्टार्टर पाक उत्पन्न करें" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "सहायता लें" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "अपने प्रोफ़ाइल को एक चेहरा दें" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "हैशटैग" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "मुश्किल हो रही है?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "सहायता" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "तस्वीर अपलोड कर के या अवतार बनाकर लोगों को जताएँ की आप एक रोबोट नहीं हैं।" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "छिपाई गई सूची" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "छिपाई गई सूची" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "छिपाएँ" @@ -6198,7 +6172,7 @@ msgstr "सब के लिए जवाब छिपाएँ" msgid "Hide reply for me" msgstr "मेरे लिए जवाब छिपाएँ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "यह पोस्ट छिपाएँ?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "रुझान छिपाएँ" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "रुझान छिपाएँ?" @@ -6240,7 +6214,7 @@ msgstr "उपयोगकर्ता सूची छुपाएँ" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "अरे, हम उस मॉडरेशन सेवा को ल msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "कृपया रुकिए। हम धीरे-धीरे वीडियो तक पहुँच दे रहें हैं, और आप अभी भी पंक्ति में हैं। बाद में प्रयास करें!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "यदि आप अपना पासवर्ड बदलना चाहते हैं, हम आपको एक कोड भेजेंगे यहा सत्यापित करने के किए कि यह आपका खाता है।" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "अभी इसमें बस आप ही हैं! ऊपर खोजकर अपने स्टार्टर पैक में और लोगों को जोड़ें।" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "काम आईडी: {0}" @@ -6816,8 +6788,8 @@ msgstr "बातचीत में शामिल हों" msgid "Journalism" msgstr "पत्रकारिता" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0} द्वारा लेबल किया गया।" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "रचयिता द्वारा लेबल किया गया।" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "लेबल" @@ -6852,7 +6824,7 @@ msgstr "लेबल जोड़े गए" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "लेबल लोगों और सामग्री का नामांकन है। इन्हें नेटवर्क को छिपाने, चेतावनी देने, और वर्गीकरण के लिए उपयोग किया जा सकता है।" @@ -6864,7 +6836,7 @@ msgstr "आपके खाते पर लेबल" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "भाषा सेटिंग" @@ -6874,7 +6846,7 @@ msgstr "भाषा सेटिंग" msgid "Languages" msgstr "भाषा" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "बड़ा" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "नए" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "अधिक जानें" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "PDS को ख़ुद होस्ट करने के बारे में अधिक जानें।" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "इस चेतावनी के बारे में अधिक जानें" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "अधिक जानें।" @@ -6993,8 +6965,8 @@ msgstr "निकलें" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Bluesky से बाहर जा रहे हैं" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "बाक़ी" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "मुझे चुनने दें।" @@ -7057,7 +7029,7 @@ msgstr "चलो चलें!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "रोशन" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "रोशन" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "पसंद" @@ -7076,7 +7048,7 @@ msgstr "पसंद" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "पसंद करें ({0, plural, one {# पसंद} other {# पसंद}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10 पोस्ट पसंद करें" @@ -7085,7 +7057,7 @@ msgstr "10 पोस्ट पसंद करें" msgid "Like 10 posts to train the Discover feed" msgstr "डिस्कवर फ़ीड को प्रशिक्षित करने के लिए 10 पोस्ट पसंद करें" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "इस फ़ीड को पसंद करें" @@ -7093,8 +7065,8 @@ msgstr "इस फ़ीड को पसंद करें" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "इन्होनें पसंद किया" @@ -7111,27 +7083,45 @@ msgstr "इन्होनें पसंद किया" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "पसंद" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "इस पोस्ट पर पसंद" @@ -7144,7 +7134,7 @@ msgstr "रेखीय" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "सूची" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "सूची अनम्यूट की गई" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "और लोड करें" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "और अनुशंसित फ़ीड लोड करें" @@ -7292,8 +7282,8 @@ msgstr "और अनुशंसित फ़ीड लोड करें" msgid "Load new notifications" msgstr "नई अधिसूचनाएँ लोड करें" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "लॉग" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "मेरे लिए एक बनाएँ" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "पढ़ा हुआ मार्क करें" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "मीडिया" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "मीडिया जो कुछ दर्शकों के लिए भयावह या अनुचित हो सकता है" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "उल्लेखित उपयोगकर्ता" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "उल्लेख" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "संदेश मिटाई गई" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "संदेश" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "मॉडरेशन" @@ -7636,7 +7630,7 @@ msgstr "मॉडरेशन सूची अपडेट की गई" msgid "Moderation lists" msgstr "मॉडरेशन सूचियाँ" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "मॉडरेशन सूचियाँ" @@ -7645,7 +7639,7 @@ msgstr "मॉडरेशन सूचियाँ" msgid "moderation settings" msgstr "मॉडरेशन सेटिंग" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "मॉडरेशन स्थिति" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "म्यूट किए गए खाते" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "म्यूट किए गए खाते" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "छोड़ें, मेरे लिए हैंडल बनाएँ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "नया" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "नया बातचीत" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "नई सूची" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "नया पासवर्ड" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "नया पोस्ट" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "सबसे नया जवाब पहले" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "समाचार" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "अगली छवि" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "कोई फीड नहीं मिली। कुछ और खोजने का प्रयास करें।" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "अभी तक कोई पसंद नहीं" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "{0} को और फ़ॉलो नहीं कर रहे" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "अभी तक कोई संदेश नहीं" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "कोई क्वोट नहीं" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "कोई परिणाम नहीं" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "कोई परिणाम नहीं" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "कोई परिणाम नहीं मिले" msgid "No results found for \"{query}\"" msgstr "\"{query}\" के लिए कोई परिणाम नहीं मिला" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "नहीं धन्यवाद" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "कोई नहीं" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "इसे अभी तक किसी ने पसंद नहीं किया है। शायद सबसे पहले आपको करना चाहिए!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "इसे अभी तक किसी ने क्वोट नहीं किया है। शायद सबसे पहले आपको करना चाहिए!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "ग़ैर-यौन नग्नता" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "नहीं मिला" @@ -8333,7 +8330,7 @@ msgstr "साझा करने के बारे में" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "टिप्पणी: Bluesky एक खुला और सार्वजनिक नेटवर्क है। यह सेटिंग आपके सामग्री की दृश्यता केवल Bluesky ऐप और वेबसाइट पर सीमित करता है, और अन्य ऐप इस सेटिंग की अवमानना कर सकते हैं। अन्य ऐप और वेबसाइट पर आपके सामग्री को लॉग आउट उपयोगकर्ताओं को दिखा सकते हैं।" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "अधिसूचना सेटिंग" @@ -8353,11 +8350,12 @@ msgstr "अधिसूचना सेटिंग" msgid "Notification sounds" msgstr "अधिसूचना ध्वनि" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "अरे नहीं!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "ठीक" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "ठीक है" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "ज्ञानप्राप्ति रीसेट" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "एक या अधिक GIF के विवरण नहीं हैं।" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "एक या अधिक छवियों पर वैकल्पिक पाठ नहीं है।" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "एक या अधिक वीडियो के विवरण नहीं हैं।" @@ -8471,7 +8471,7 @@ msgstr "केवल {0} जवाब दे सकता है" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "केवल वेबवीटीटी (.vtt) फ़ाइलें समर्थित हैं" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "अरे!" @@ -8544,7 +8544,7 @@ msgstr "अरे!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "अवतार निर्माता खोलें" @@ -8570,21 +8570,22 @@ msgstr "बातचीत विकल्प खोलें" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "ड्रॉअर मेनू खोलें" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "इमोजी चयन खोलें" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "फ़ीड जानकारी स्क्रीन खोलें" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "फ़ीड विकल्प मेनू खोलें" @@ -8627,7 +8628,7 @@ msgstr "मॉडरेशन डीबग पृष्ठ खोलें" msgid "Open muted words and tags settings" msgstr "म्यूट किए गए शब्द और टैग सेटिंग खोलें" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "डीबग प्रविष्टि के लिए अतिर msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "उपकरण कर कैमरा खोलता है" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "नया Bluesky खाता बनाने का साधन खोलता है" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "अपने मौजूदा Bluesky खाते में साइन इन करने का साधन खोलता है" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "पासवर्ड अपडेट किया गया!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "रोकें" @@ -8925,12 +8926,12 @@ msgstr "रोकें" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "वीडियो रोकें" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "लोग" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0} द्वारा फ़ॉलो किए गए लोग" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0} को फ़ॉलो करते लोग" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "वयस्कों के लिए छवि।" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "फ़ीड पिन करें" @@ -9034,7 +9035,7 @@ msgstr "फ़ीड पिन करें" msgid "Pin to home" msgstr "होम में पिन करें" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "होम में पिन करें" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "पिन किया गया" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "होम में {0} पिन किया गया" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "आपके फ़ीड में पिन किया गया" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "चलाएँ" @@ -9076,8 +9077,8 @@ msgstr "{0} चलाएँ" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "वीडियो चलाएँ" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "राजनीति" @@ -9269,7 +9270,7 @@ msgstr "राजनीति" msgid "Porn" msgstr "अश्लील" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "पोस्ट करें" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "पोस्ट करें" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "सभी पोस्ट करें" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} द्वारा पोस्ट" @@ -9340,7 +9341,7 @@ msgstr "पोस्ट आपके द्वारा छिपाया ग msgid "Post interaction settings" msgstr "पोस्ट संपर्क सेटिंग" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "पोस्ट पिन किया गया" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "पोस्ट पिन से हटाया गया" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "पोस्ट" @@ -9398,6 +9396,10 @@ msgstr "पोस्ट को उनके पाठ, उनके टैग, msgid "Posts hidden" msgstr "पोस्ट छिपाए गए" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "गोपनीयता" msgid "Privacy and security" msgstr "गोपनियता और सुरक्षा" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "गोपनियता और सुरक्षा" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "गोपनीयता नीति" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "वीडियो प्रसंस्करण हो रहा है..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "उपयोगकर्ताओं की सार्वजनिक, साझा योग्य सूचियाँ जिन्हें एक साथ म्यूट या अवरुद्ध किया जा सकता है।" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "क्वोट पोस्ट अक्षम किए गए" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "क्वोट" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "इस पोस्ट के क्वोट" @@ -9647,7 +9650,7 @@ msgstr "खाता फिर सक्रिय करें" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "Bluesky गोपनियता नीति पढ़ें" msgid "Read the Bluesky Terms of Service" msgstr "Bluesky सेवा की शर्तें पढ़ें" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "अनुशंसित" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "फिर कनेक्ट करें" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "बातचीत फिर लोड करें" @@ -9766,7 +9765,7 @@ msgstr "बातचीत फिर लोड करें" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "हटाएँ" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "खाता हटाएँ" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "मेरे फ़ीड से हटाएँ" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "जल्द पहुँच से हटाएँ?" @@ -9862,7 +9861,7 @@ msgstr "जल्द पहुँच से हटाएँ?" msgid "Remove from saved feeds" msgstr "सहेजे फ़ीड से हटाएँ" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "छवि हटाएँ" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "सूची से हटाया गया" msgid "Removed from saved feeds" msgstr "सहेजे फ़ीड से हटाया गया" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "जवाब" @@ -10037,7 +10037,7 @@ msgstr "इस पोस्ट पर जवाब अक्षम है" msgid "Reply" msgstr "जवाब दें" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "जवाब दें" @@ -10098,8 +10098,8 @@ msgstr "बातचीत की शिकायत करें" msgid "Report dialog" msgstr "शिकायत डायलॉग" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "फ़ीड की शिकायत करें" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "आपने रीपोस्ट किया" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "इस पोस्ट के रीपोस्ट" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "पिछली क्रिया का फिर से प्रय #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "होम पृष्ठ पर वापस जाता है" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "पिछले पृष्ठ पर वापस जाता है" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "बदलाव सहेजें" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR कोड सहेजें" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "मेरे फ़ीड में सहेजें" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "सहेजे गए फ़ीड" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "आपके फ़ीड में सहेजा गया" @@ -10520,8 +10520,8 @@ msgstr "आपके फ़ीड में सहेजा गया" msgid "Say hello!" msgstr "नमस्ते कहें!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "विज्ञान" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "ऊपर जाएँ" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "खोजें" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "फ़ीड खोजें जो आप दूसरों को दिखाना चाहते हैं" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF खोजें" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Bluesky में नौकरियाँ देखें" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "सीक स्लाइडर। एरो की से आगे और पीछे सीक करें, और स्पेस से चालू/बंद करें" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "रंग चुनें" @@ -10764,11 +10769,11 @@ msgstr "खाता चुनें" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "अवतार चुनें" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "इमोजी चुनें" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "GIF चुनें" msgid "Select GIF \"{0}\"" msgstr "\"{0}\" GIF चुनें" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} इमोजी को अपने अवतार के रूप में चुनें" @@ -10945,7 +10951,8 @@ msgstr "संदेश भेजें" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "इन्हें पोस्ट भेजें" @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "सत्यापन ईमेल भेजें" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "सीधा संदेश द्वारा भेजें" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "पासवर्ड रीसेट करने के लिए ईमेल चुनता है" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "सेटिंग" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "फिर भी साझा करें" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "लिंग डायलॉग साझा करें" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "QR कोड साझा करें" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "इस फ़ीड को साझा करें" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "इस स्टार्टर पैक को साझा करे msgid "Share this starter pack and help people join your community on Bluesky." msgstr "इस स्टार्टर पैक को साझा करें और लोगों को Bluesky पर आपके समुदाय में जुड़ने सहायता करें।" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "साझा की गई प्राथमिकताओं का परीक्षक" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "दिखाएँ" msgid "Show alt text" msgstr "वैकल्पिक पाठ दिखाएँ" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "फिर भी दिखाएँ" @@ -11274,9 +11281,9 @@ msgstr "फिर भी सूची दिखाएँ" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "अधिक दिखाएँ" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "चेतावनी दिखाएँ और फ़ीड से फ़ि msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "साइन आउट करें?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "साइन इन आवश्यक" @@ -11469,7 +11476,7 @@ msgstr "छोड़ें" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "छोटा" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "कोई गड़बड़ हुई, फिर प्रयास करें" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "कुछ गड़बड़ है? हमें बताएँ।" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "खेल" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "नया बातचीत शुरू करें" @@ -11682,17 +11689,17 @@ msgstr "लोगों को जोड़ना शुरू करें" msgid "Start adding people!" msgstr "लोगों को जोड़ना शुरू करें!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "{displayName} से बातचीत शुरू करें" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "स्टार्टर पैक" @@ -11715,12 +11722,16 @@ msgstr "आपके द्वारा स्टार्टर पैक" msgid "Starter pack is invalid" msgstr "स्टार्टर पैक अमान्य है" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "स्टार्टर पैक" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "स्टार्टर पैक आपको अपने पसंदीदा फ़ीड और लोगों को अपने दोस्तों के साथ आसानी से साझा करने देते हैं" @@ -11728,7 +11739,7 @@ msgstr "स्टार्टर पैक आपको अपने पसं msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "स्थिति पृष्ठ" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "{1} से चरण {0}" @@ -11754,7 +11765,7 @@ msgstr "स्टोरेज खाली की गई, आपको ऐप msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "कहानी की किताब" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "इन लेबलों का उपयोग करने के लिए @{0} की सदस्यता लें:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "सिस्टम" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "ख़ारिज करने के लिए दबाएँ" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "कार्य समाप्त - 10 फ़ॉलो!" msgid "Task complete - 10 likes!" msgstr "कार्य समाप्त - 10 पसंद!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "हमारे एल्गोरिथ्म को सिखाएँ कि आपको क्या पसंद है" @@ -12060,7 +12073,7 @@ msgstr "शर्तें" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "वह स्टार्टर पैक नहीं मिला।" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "बस इतना ही, दोस्तों!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "लगता है सर्वर को समस्याएँ ह msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "आप जिस स्टार्टर पैक को देखने का प्रयास कर रहे हैं, वह अमान्य है। आप इस स्टार्टर पैक को मिटा सकते हैं।" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "आपका दर्ज किया गया सत्यापन msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "थीम" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "सर्वर से संपर्क करने में समस्या हुई" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "सर्वर से संपर्क करने में समस्या हुई, कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।" @@ -12283,8 +12296,8 @@ msgstr "सर्वर से संपर्क करने में सम msgid "There was an issue fetching notifications. Tap here to try again." msgstr "अधिसूचनाएँ लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "पोस्ट लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।" @@ -12309,7 +12322,7 @@ msgstr "आपके सेवा जानकारी को लाने म msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "इस फ़ीड को हटाने में समस्या हुई। कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "ये सेटिंग केवल फ़ॉलोइंग फ़ी msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "यह {screenDescription} फ्लैग किया गया है:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "इस खाते ने अनुरोध किया है कि उपयोगकर्ता उनका प्रोफ़ाइल देखने के लिए साइन इन करे।" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "यह फ़ीड खाली है! आपको अधिक उपयोगकर्ताओं को फ़ॉलो करना पड़ेगा या अपने भाषा सेटिंग को बदलना पड़ेगा।" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "यह फ़ीड खाली है।" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "यह हैंडल सुरक्षित है। कृपया कुछ और चुनें।" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "यह लेबल आपके द्वारा लगाई गई msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "इस लेबलकर्ता ने घोषित नहीं किया है कि वह क्या लेबल लगाता है, और शायद निष्क्रिय है।" @@ -12621,13 +12634,13 @@ msgstr "यह सूची खाली है।" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "यह पोस्ट <0>{0} को बनने का दावा करता है, पर इसे Bluesky पर सबसे पहले <1>{1} को देखा गया।" @@ -12649,7 +12662,7 @@ msgstr "यह पोस्ट <0>{0} को बनने का दाव msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "इस पोस्ट को फ़ीड और थ्रेड से छिपा दिया जाएगा। इसे पूर्ववत नहीं किया जा सकता।" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "इस पोस्ट के लेखक ने क्वोट पोस्ट अक्षम किए हैं।" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "इस उपयोगकर्ता के कोई फ़ॉलोअर नहीं हैं" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "इस उपयोगकर्ता ने आपको अवरुद्ध किया है। आप उनके सामग्री नहीं देख सकते।" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "यह उपयोगकर्ता <0>{0} सूची में msgid "This user is new here. Press for more info about when they joined." msgstr "यह उपयोगकर्ता यहाँ नया है। वे कब जुड़े, इसके बारे में अधिक जानकारी के लिए दबाएँ" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "यह उपयोगकर्ता किसी को फ़ॉलो नहीं करता।" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "यह @{0} को जल्द पहुँच सूची से हटा देगा।" @@ -12786,7 +12801,7 @@ msgstr "थ्रेड प्राथमिकताएँ" msgid "Threaded" msgstr "थ्रेड" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "थ्रेड प्राथमिकताएँ" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "बहतरीन" @@ -12858,7 +12873,7 @@ msgstr "बहतरीन" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "विषय" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "रुझान" @@ -12902,7 +12919,7 @@ msgstr "रुझान" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "खाता अनअवरुद्ध करें?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "{0} को अनफ़ॉलो करें" msgid "Unfollow account" msgstr "खाता अनफ़ॉलो करें" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "नापसंद करें" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "थ्रेड अनम्यूट करें" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "वीडियो अनम्यूट करें" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "पिन से हटाएँ" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "फ़ीड को पिन से हटाएँ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "होम से पिन से हटाएँ" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "मॉडरेशन सूची को पिन से हटाएँ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} को होम पिन से हटाया गया" @@ -13258,11 +13277,11 @@ msgstr "इस लेबलकर्ता की सदस्यता छो msgid "Unsubscribed from list" msgstr "सूची की सदस्यता छोड़ी गई" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "जवाब दृश्यता का अपडेट असफल" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "इसके बदले फ़ोटो अपलोड करें" @@ -13355,7 +13374,7 @@ msgstr "फ़ाइलों से अपलोड करें" msgid "Upload from Library" msgstr "लाइब्रेरी से अपलोड करें" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "छवि अपलोड हो रहा है..." msgid "Uploading link thumbnail..." msgstr "लिंक थंबनेल अपलोड हो रहा है..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "वीडियो अपलोड हो रहा है..." @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "वीडियो" msgid "Video failed to process" msgstr "वीडियो संसाधित करने में असफल" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "वीडियो गेम" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "वीडियो नहीं मिला" @@ -13653,7 +13672,7 @@ msgstr "वीडियो नहीं मिला" msgid "Video settings" msgstr "वीडियो सेटिंग" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "वीडियो अपलोड किया गया" @@ -13662,17 +13681,17 @@ msgstr "वीडियो अपलोड किया गया" msgid "Video: {0}" msgstr "वीडियो: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "{0} का अवतार देखें" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0} का प्रोफ़ाइल देखें" @@ -13724,13 +13743,13 @@ msgstr "अधिक जानकारी के लिए ब्लॉग प msgid "View debug entry" msgstr "डीबग प्रविष्टि देखें" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "विवरण देखें" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "पूरा थ्रेड देखें" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "@{0} द्वारा दी गई लेबल सेवा देखें" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "इस फ़ीड को पसंद करने वाले उपयोगकर्ता देखें" @@ -13831,7 +13850,7 @@ msgstr "अपने मॉडरेशन सूची देखें" msgid "View your muted accounts" msgstr "अपने म्यूट किए गए खाते देखें" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "हमें नेटवर्क समस्याएँ हो रही हैं, फिर प्रयास करें।" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "हमें क्षमा करें, पर हम इस सू msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "हमें क्षमा करें, पर हम अभी आपके म्यूट शब्द लोड नहीं कर सके। कृपया फिर प्रयास करें।" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "हमें क्षमा करें! आप जिस पोस्ट को जवाब दे रहे हैं उसे मिटा दिया गया है।" @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "क्या चल रहा है?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "उफ़!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "पोस्ट लिखें" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "अपना जवाब दें" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "आपको वीडियो अपलोड करने की अनुमति नहीं है।" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "अब आप अपने नए पासवर्ड के साथ साइन इन कर सकते हैं।" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "आप इसे बाद में अपने सेटिंग में बदल सकते हैं।" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "आप अस्थायी रूप से वीडियो अपलोड की सीमा तक पहुँच गए हैं। कृपया बाद मे फिर प्रयास करें।" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "आपने अभी तक कोई स्टार्टर पैक नहीं बनाई है!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "आप अधिकतम केवल 3 फ़ीड जोड़ सकते हैं" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "स्टार्टर पैक उत्पन्न करने के लिए आपको कम से कम सात अन्य लोगों को फ़ॉलो करना होगा।" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "अपना खाना बनाने के बाद आप सुझाए गए उपयोगकर्ताओं और फ़ीड को फ़ॉलो करेंगे!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "अपना खाना बनाने के बाद आप सुझाए गए उपयोगकर्ताओं को फ़ॉलो करेंगे!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "आप अपने फ़ीड के अंत तक पहुँच गए! कुछ और खातों को फ़ॉलो करें!" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "आप वीडियो अपलोड करने की दैन msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "आप वीडियो अपलोड करने की दैनिक सीमा तक पहुँच गए (अत्यधिक वीडियो)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "आपका खाता" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "आपका खाता वीडियो अपलोड करने के जितना पुराना नहीं है। कृपया बाद मे फिर प्रयास करें।" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/hu/messages.po b/src/locale/locales/hu/messages.po index e70caf2455..1e9955f4c0 100644 --- a/src/locale/locales/hu/messages.po +++ b/src/locale/locales/hu/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: hu\n" +"Language: hu_HU\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "{interestsDisplayName} kategória (aktív)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(letiltott személy üzenete elrejtve)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(beágyazott tartalom)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(törölt üzenet)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(érvénytelen meghívó)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(a csatlakozásod előtti üzenet)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# órája} other {# órája}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, other {#}} feljegyzést alkalmaztak a bejegyzésedre" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, other {#}} feljegyzés" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# kedvelés} other {# kedvelés}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# tag}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {#} other {#}} új csatlakozási kérelem" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {#}} személy reagált – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (fiók)" @@ -251,36 +252,13 @@ msgstr "{0} fel lett véve a csoportba" msgid "{0} and {1} added to chat" msgstr "{0} és {1} fel lett véve a csoportba" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} és {1} kedveli ezt a bejegyzést" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} és {others, plural, one {{1} további} other {{2} további}} személy kedveli ezt a bejegyzést" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} és {othersLabel} kedveli ezt a bejegyzést" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} követett" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} letiltott Téged" @@ -324,14 +302,6 @@ msgstr "{0} kilépett" msgid "{0} left the group" msgstr "{0} elhagyta a csoportot" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} kedveli ezt a bejegyzést" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "50/{0}" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} {1} emojival reagált" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} és {memberCount, plural, other {#}} további személy fel lett véve a csoportba" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} és {others, plural, one {{2} további} other {{3} további}} személy kedveli ezt a bejegyzést" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} és {othersLabel} kedveli ezt a bejegyzést" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} hitelesített Téged" msgid "{following} following" msgstr "{following} követett" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} nem vehető fel a csoportba" @@ -698,7 +660,7 @@ msgstr "{handle} nem vehető fel a csoportba" msgid "{handle} can't be messaged" msgstr "{handle} jelenleg nem fogad üzeneteket" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} jelenleg nem fogad üzeneteket" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# olvasatlan értesítés} other {# olv msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {# névjegyet találtunk}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} további} other {{1} további}} személy" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} {timeAgoString} csatlakozott a Blueskyhoz" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} {timeAgoString} csatlakozott a Blueskyhoz egy kezdőcsomag igénybevételével" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, other {#}} karakter maradt" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} válaszolt" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} válaszolt neki: {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} válaszolt Neked" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {# felkérés}}" msgid "{requestCount}+ requests" msgstr "Több, mint {requestCount} kérelem" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} órája" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} egy megbízható hitelesítő" @@ -842,13 +795,13 @@ msgstr "{userName} hitelesítései" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {követett} other {követett}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {idézés}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {megosztás}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, other {mentés}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} kedvelés" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> vett fel Téged" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Jelentkezz be<1> vagy <2>regisztrálj<3>, <4>ha szeretnél a Blueskyon híreket, sport- és politikai bejegyzéseket, vagy bármi mást keresni!" @@ -971,7 +924,7 @@ msgstr "30 napig" msgid "7 days" msgstr "7 napig" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "A Bluesky néhány hírfolyamát ábrázoló illusztráció. Az alábbi hírfolyamok vannak megjelenítve: News, Booksky, Game Dev, Blacksky és Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Hálózati hiba történt. Ellenőrizd az internetkapcsolatot" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Új kód elküldve" msgid "A new form of verification" msgstr "A hitelesítés egy új formája" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Válasz egy olyan üzenetre, amely a csatlakozásod előttről származik" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "A bejegyzésíró felületet ábrázoló képernyőkép, amelyen egy új, „Piszkozatok” feliratú gomb található, szivárványos tűzijátékok mellett. A szövegmezőben – magyarra fordítva – a következő szöveg olvasható: „Hallottátok már? A Blueskyon mostantól piszkozatokat is lehet menteni!!!”." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Az egyik címzettet nem követi a feladó." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Kérelem elküldve. Az elfogadást csoport tulajdonosa fogja bírálni." msgid "Accessibility" msgstr "Akadálymentesítés" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Akadálymentesítés" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Elnémított fiók (lista által)" msgid "Account options" msgstr "Fióklehetőségek" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Fiók levéve a listáról" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Másokat hitelesíteni csak a <0><1/> recés pipával rendelkező fiókok képesek. Ezeket a megbízható hitelesítőket a Bluesky jelöli ki." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Mások tevékenységei" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Tevékenységértesítések" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Helyettesítő szöveg hozzáadása (nem kötelező)" msgid "Add another account" msgstr "Fiók felvétele a listára" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Válaszlánc folytatása" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Válaszlánc bővítése" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Új szűrő hozzáadása" @@ -1253,7 +1213,7 @@ msgstr "Automatizálási feljegyzés alkalmazása" msgid "Add emoji reaction" msgstr "Emoji-reakció hozzáfűzése" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Szűrő hozzáadása" @@ -1338,7 +1298,7 @@ msgstr "Add hozzá ezt a hírfolyamot a gyűjteményedhez!" msgid "Add to lists" msgstr "Felvétel listára" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Bejegyzés mentése" @@ -1400,7 +1360,7 @@ msgstr "Pornó" msgid "Adult content" msgstr "Felnőtt tartalom" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Megengedi a személyes üzenetekhez való hozzáférést" msgid "Already have a code?" msgstr "Már van kódod?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Már van fiókod?" @@ -1614,7 +1574,7 @@ msgstr "Küldtünk egy e-mailt a(z) {0} címre. Ez a levél egy ellenőrzőkódo msgid "An error has occurred" msgstr "Hiba történt" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Hiba történt" @@ -1631,7 +1591,7 @@ msgstr "Hiba történt a javasolt fiókok lekérése közben." msgid "An error occurred while fetching the feed." msgstr "A hírfolyam lekérdezése meghiúsult." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "A kezdőcsomag létrehozása meghiúsult. Szeretnéd újra megpróbálni?" @@ -1640,11 +1600,11 @@ msgstr "A kezdőcsomag létrehozása meghiúsult. Szeretnéd újra megpróbálni msgid "An error occurred while hiding suggestion. {0}" msgstr "Hiba történt a javaslat elrejtése közben. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "A videó betöltése meghiúsult. Próbáld újra később." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "A videó betöltése meghiúsult. Próbáld újra." @@ -1684,7 +1644,7 @@ msgstr "Hiba történt. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Egy telefonkönyvből a Bluesky alkalmazásba áramló profilképeket ábrázoló kép" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Illusztráció, amely számos Bluesky-bejegyzést ábrázol megosztási-, kedvelési- és hozzászólási ikonok között" @@ -1705,17 +1665,15 @@ msgstr "Meghívóval bárki csatlakozhat anélkül, hogy kézileg hozzá kelljen msgid "An issue not included in these options" msgstr "Olyan probléma, amit nem lehet a többi kategóriába sorolni" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Hiba történt a csoportbeszélgetés létrehozása közben. Próbáld újra." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Hiba történt a csevegés indítása közben. Próbáld újra." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "A csevegés megnyitása meghiúsult" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Hiba történt a csoportbeszélgetés létrehozása közben. Próbáld újra." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Bármikor" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Bárki" @@ -1802,7 +1760,7 @@ msgstr "Bármelyik követőtől" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "A jelenlegi meghívó érvényét veszti és a jövőben már nem használhatják a csatlakozáshoz. Új meghívót bármikor létrehozhatsz." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Egy alkalmazásjelszónak legalább 4 karakter hosszúnak kell lennie" msgid "App passwords" msgstr "Alkalmazásjelszók" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Alkalmazásjelszók" @@ -1891,8 +1849,8 @@ msgstr "Döntés fellebbezése" msgid "Appeal this label" msgstr "Feljegyzés fellebbezése" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Lekéréses kérelem alkalmazása" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archiválás dátuma: {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Archivált bejegyzés" @@ -1926,19 +1884,19 @@ msgstr "Egészen biztos vagy benne?" #. placeholder {1}: link(languages[1]) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 msgid "Are you searching for posts in {0} or {1}?" -msgstr "" +msgstr "Szeretnéd a találatokat {0} vagy {1} nyelvre szűrni?" #. placeholder {0}: link(languages[0]) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 msgid "Are you searching for posts in {0}?" -msgstr "" +msgstr "Szeretnéd a találatokat {0} nyelvre szűrni?" #. List formatting: {0}, {1}, or {2} #. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) #. placeholder {1}: link(last) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 msgid "Are you searching for posts in {0}or {1}?" -msgstr "" +msgstr "Szeretnéd a találatokat {0}vagy {1} nyelvre szűrni?" #. placeholder {0}: appPassword.name #: src/screens/Settings/AppPasswords.tsx:210 @@ -1980,7 +1938,7 @@ msgstr "Biztosan el akarod távolítani ezt a hírfolyamgyűjteményedből?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Biztosan vissza akarod vonni a(z) „{0}” csoportbeszélgetéshez intézett csatlakozási kérelmedet?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Biztosan el akarod vetni ezt a bejegyzést?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Sarki Fény" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Automatikus fiók" @@ -2033,7 +1991,7 @@ msgstr "Automatikus" msgid "Automation label" msgstr "Automatizálási feljegyzés" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatizálási feljegyzés" @@ -2050,12 +2008,16 @@ msgstr "Videók és GIF-ek automatikus lejátszása" msgid "Available" msgstr "Elérhető" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "A bejegyzés- vagy válaszírás előtt ellenőriznünk kell az e-mail-címedet." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "A kezdőcsomag létrehozása előtt ellenőriznünk kell az e-mail-címedet." @@ -2135,10 +2097,10 @@ msgstr "A feliratkozás előtt vissza kell igazolnod az e-mail-címedet." #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Az életkor-igazolási folyamat megkezdéséhez töltsd ki az alábbi me msgid "Beta Feature" msgstr "Kísérleti funkció" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Kísérleti funkciók" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Kísérleti funkciók bekapcsolva" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Születési dáum" msgid "Birthday" msgstr "Születésnap" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Letiltva" msgid "Blocked accounts" msgstr "Letiltott fiókok" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Letiltott fiókok" @@ -2282,7 +2250,7 @@ msgstr "Az Általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre 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 "Az Általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled. A letiltott fiókok bejegyzéseit nem fogod látni és ez fordítva is érvényes." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "A feljegyző letiltása nem akadályozza meg abban, hogy feljegyzéseket helyezzen a fiókodra." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "A Bluesky nem tudja megerősíteni a létrehozás dátumát." @@ -2330,7 +2299,7 @@ msgstr "A Bluesky egy nyílt hálózat, ahol saját szolgáltatót választhatsz msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "A Bluesky egy nyílt hálózat, ahol saját szolgáltatót választhatsz. Ha kezdő felhasználó vagy, akkor az alapértelmezett Bluesky Social lehetőséget javasoljuk." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "A Bluesky ismerősökkel még jobb!" @@ -2358,7 +2327,7 @@ msgstr "A Bluesky felhasználási feltételei" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "A Bluesky titkosítva tárolja a névjegyeidet. Ha törölsz egy névjegyet, akkor a Bluesky ugyancsak azonnal törli azt." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "A Bluesky egy javasolt felhasználócsoportot fog kijelölni a hálózatodon." @@ -2425,24 +2394,25 @@ msgstr "További javaslatokat a Felfedezés oldalon találsz" msgid "Browse other feeds" msgstr "További hírfolyamok" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "A(z) „{displayName}” témakörrel kapcsolatos bejegyzések" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "A(z) „{displayName}” címkével ellátott bejegyzések" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "A(z) {displayName} kezdőcsomag böngészése" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "A(z) „{0}” témakör böngészése" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "A(z) „{displayName}” témakör böngészése" @@ -2461,8 +2431,8 @@ msgstr "Gomb a kezdőoldali idővonalra ugráshoz" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Szerző: {0}" @@ -2473,9 +2443,9 @@ msgstr "Szerző: @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Szerző: <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeketTerms of Service." msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeket." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Saját" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2504,7 @@ msgstr "Kamera-hozzáférés szükséges" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Kamera-hozzáférés szükséges" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Újraaktiválás megszakítása és kilépés" msgid "Cancel reply" msgstr "Válaszolás megszakítása" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Keresés megszakítása" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "A létrehozandó lista egy másolat a kezdőcsomag jelenlegi állapotáról. A kezdőcsomagban történt későbbi változtatások nem lesznek automatikusan szinkronizálva a listára is." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Csevegés elnémítva" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "A csevegés nem található." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Beállítások" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "A csoport tulajdonosa nem hagyhatja el azt." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "A címzettet nem követi a feladó." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Csevegési kérelmek" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Csevegési kérelmek" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Csevegések" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Csevegés némítása feloldva" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Csevegések" @@ -2837,7 +2808,7 @@ msgstr "Tartományhitelesítési módszer" msgid "Choose Feeds" msgstr "Hírfolyamok böngészése" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Létrehozás automatikusan" @@ -2854,7 +2825,7 @@ msgstr "Személyek kiválasztása" msgid "Choose post languages" msgstr "Válaszd ki a megjelenítendő bejegyzések nyelvét" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Szín használata profilképként" @@ -2879,7 +2850,7 @@ msgstr "Válaszd ki, hogy milyen idővonalakat akarsz böngészni! A közösség msgid "Choose your password" msgstr "Jelszó megadása" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Felhasználónév megadása" @@ -2966,7 +2937,7 @@ msgstr "A meghívó megtekintéséhez kattints ide" msgid "Click to open tag menu for {0}" msgstr "A(z) {0} címke menüjének megnyitása" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Üzenetküldés megkísérlése ismét" @@ -3003,7 +2974,7 @@ msgstr "Üzenetküldés megkísérlése ismét" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Üzenetküldés megkísérlése ismét" msgid "Close" msgstr "Bezárás" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Az előtérben lévő párbeszédablak bezárása" @@ -3047,7 +3018,7 @@ msgstr "Reklámcsík bezárása" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Képnézegető bezárása" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Menü bezárása" @@ -3090,7 +3061,7 @@ msgstr "A bejövő kérelmeket jelző reklámcsík bezárása" msgid "Close this dialog" msgstr "Párbeszédablak bezárása" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Köszöntő-párbeszédablak bezárása" @@ -3098,7 +3069,7 @@ msgstr "Köszöntő-párbeszédablak bezárása" msgid "Closes password update alert" msgstr "Jelszófrissítési figyelmeztetés bezárása" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "A bejegyzésíró bezárása és a piszkozat elvetése" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Színséma" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Színmód" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Képregények" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Közösségi irányelvek" @@ -3141,7 +3112,7 @@ msgstr "Közösségi irányelvek" msgid "Complete onboarding and start using your account" msgstr "Regisztrációs varázsló befejezése és a Bluesky használatának megkezdése" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Biztonsági kihívás" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Új bejegyzés írása" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Egy bejegyzés legfeljebb {0, plural, other{#}} karakter hosszú lehet" @@ -3160,11 +3131,11 @@ msgstr "Egy bejegyzés legfeljebb {0, plural, other{#}} karakter hosszú lehet" msgid "Compose reply" msgstr "Válaszírás" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIF tömörítése folyamatban…" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Videó tömörítése folyamatban…" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Kapcsolatfelvétel az ügyfélszolgálattal" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Támogatás" @@ -3253,7 +3224,7 @@ msgstr "Tartalom és mellékletek" msgid "Content and media" msgstr "Tartalom és mellékletek" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Tartalom és mellékletek" @@ -3265,10 +3236,6 @@ msgstr "Letiltottad a tartalmat" msgid "Content filters" msgstr "Tartalomszűrés" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Javasolt tartalmak a hálózatról." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Tartalmak nyelve" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Önkárosítás ábrázolása vagy népszerűsítése" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Tartalomfigyelmeztetés" msgid "Content warnings" msgstr "Tartalomfigyelmeztetések" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "A környezetérzékeny menü háttere. Kattints ide a menü bezárásához." @@ -3302,7 +3269,7 @@ msgstr "A környezetérzékeny menü háttere. Kattints ide a menü bezárásáh #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Válaszlánc folytatása…" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Csoportnév megadása" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,15 +3335,15 @@ msgstr "A csoportbeszélgetés nem található." msgid "Copied build version to clipboard" msgstr "Buildszám a vágólapra helyezve" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" -msgstr "" +msgstr "Hivatkozás vágólapra helyezve" #: src/components/dms/ChatInvite/Root.tsx:99 #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Alkalmazásjelszó másolása" msgid "Copy at:// URI" msgstr "„at://” URI másolása" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Szerző DID-jének másolása" @@ -3449,10 +3416,10 @@ msgstr "Hivatkozás másolása" msgid "Copy link to list" msgstr "Lista hivatkozásának másolása" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Bejegyzés hivatkozásának másolása" @@ -3470,8 +3437,8 @@ msgstr "Kezdőcsomag hivatkozásának másolása" msgid "Copy message text" msgstr "Üzenet szövegének másolása" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Bejegyzés „at://” URI-jének másolása" @@ -3490,7 +3457,7 @@ msgstr "TXT-rekord értékének másolása" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Jogi irányelvek" @@ -3540,11 +3507,11 @@ msgstr "Az ismerőseid követése meghiúsult. {0}" msgid "Could not leave chat" msgstr "A csevegés elhagyása meghiúsult" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "A csevegés elhagyása meghiúsult." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "A hírfolyam betöltése meghiúsult" @@ -3562,7 +3529,7 @@ msgstr "A profil betöltése meghiúsult" msgid "Could not mute chat" msgstr "A csevegés elnémítása meghiúsult" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "A tag eltávolítása meghiúsult." @@ -3600,14 +3567,14 @@ msgstr "Országhívószám" #. Advanced search: Example of a “none of these words” search. Paired with “cats dogs”. #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 msgid "cows pigs" -msgstr "tehén malac" +msgstr "boci malac" #. Text on button to create a new starter pack #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Létrehozás" @@ -3624,26 +3591,26 @@ msgstr "Lista létrehozása a kezdőcsomag alapján" msgid "Create a QR code for a starter pack" msgstr "QR-kód létrehozása egy kezdőcsomaghoz" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Kezdőcsomag létrehozása" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Kezdőcsomag létrehozása" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Automatikus létrehozás" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Regisztráció" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Regisztráció" @@ -3666,15 +3633,15 @@ msgstr "Regisztráció" msgid "Create an account without using this starter pack" msgstr "Fiók létrehozása a kezdőcsomag igénybevétele nélkül" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Profilkép létrehozása" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Másik létrehozása" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Csoportbeszélgetés létrehozása" @@ -3743,7 +3710,7 @@ msgstr "Kultúra" msgid "Current beta features" msgstr "Jelenleg elérhető kísérleti funkciók" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Jelenlegi csevegés" @@ -3770,8 +3737,8 @@ msgstr "Káros szer- vagy droghasználat" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Lekapcsolt" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Lekapcsolt" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Sötét téma" @@ -3814,7 +3781,7 @@ msgstr "Javasolt nyelv elutasítása" msgid "Deepfake adult content" msgstr "Hamisított felnőtt tartalom („deepfake”)" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Alapértelmezett" @@ -3894,7 +3861,7 @@ msgstr "Fiók törlése" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Bejegyzés törlése" @@ -3988,7 +3955,7 @@ msgstr "Párbeszédablak: A bejegyzés kapcsolatbalépési jogosultságainak tes msgid "Dialog: Set search filters" msgstr "Keresésszűrési párbeszédablak" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Félhomályos" @@ -4002,7 +3969,7 @@ msgstr "Letiltás" msgid "Disable 2FA" msgstr "Kétlépcsős azonosítás kikapcsolása" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Feliratok ki" @@ -4045,9 +4012,9 @@ msgstr "Letiltva" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Elvetés" msgid "Discard changes?" msgstr "Változtatások elvetése" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Piszkozat elvetése" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Bejegyzés elvetése" @@ -4079,6 +4046,10 @@ msgstr "A Germ DM szétkapcsolása" msgid "Discourage apps from showing my account to logged-out users" msgstr "A fiók kijelentkezett felhasználók elől való elrejtésének kérelmezése" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Hírfolyamok felfedezése" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "A fiók kijelentkezett felhasználók elől való elrejtésének kérelm msgid "Discover new custom feeds" msgstr "Egyéni hírfolyamok felfedezése" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Új hírfolyamok felfedezése" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Új hírfolyamok felfedezése" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Bezárás" @@ -4103,19 +4070,19 @@ msgstr "Bezárás" msgid "Dismiss banner" msgstr "Reklámcsík bezárása" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Hiba bezárása" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Gyorstalpaló bezárása" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Érdeklődési körök bezárása" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Élőeseményes reklámcsík elrejtése" @@ -4142,7 +4109,7 @@ msgstr "A helyettesítő szövegek jelvényeinek megnagyobbítása" msgid "Display name" msgstr "Megjelenítendő név" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Hagyd el a trollokat és a szenzációhajhászokat! Találj rá valódi emberekre és beszélgess olyan témákról, amelyek igazán foglalkoztatnak!" @@ -4205,8 +4172,8 @@ msgstr "Ne aggódj! A korábbi üzeneteid és beállításaid nem vesztek el és #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Ne aggódj! A korábbi üzeneteid és beállításaid nem vesztek el és msgid "Done" msgstr "Kész" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Koppints kétszer vagy tartsd lenyomva az üzenetet egy reakció hozzáfűzéséhez." -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Koppints kétszer a párbeszédablak bezárásához" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Koppints kétszer a kedveléshez" @@ -4328,6 +4295,7 @@ msgstr "Étkezési zavar" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Kép szerkesztése" msgid "Edit interaction settings" msgstr "Kapcsolatbalépési beállítások szerkesztése" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Érdeklődési körök szerkesztése" @@ -4397,7 +4365,7 @@ msgstr "Élőadásos állapot szerkesztése" msgid "Edit moderation list" msgstr "Moderálólista szerkesztése" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Hírfolyamgyűjtemény szerkesztése" @@ -4406,6 +4374,11 @@ msgstr "Hírfolyamgyűjtemény szerkesztése" msgid "Edit name" msgstr "Átnevezés" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "{0} értesítéseinek szerkesztése" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Személyek szerkesztése" @@ -4444,7 +4417,7 @@ msgstr "Felhasználólista szerkesztése" msgid "Edit who can reply" msgstr "Válaszjogosultsági beállítások szerkesztése" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Kezdőcsomag szerkesztése" @@ -4500,8 +4473,8 @@ msgstr "HTML-kód beágyazása" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Bejegyzés beágyazása" @@ -4509,7 +4482,7 @@ msgstr "Bejegyzés beágyazása" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Jelenítsd meg ezt a bejegyzést a honlapodon! Másold ki az alábbi kódrészletet és illeszd be a honlapod HTML-kódjába." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Beágyazott videólejátszó" @@ -4533,7 +4506,7 @@ msgstr "Felnőtt tartalmak megjelenítése" msgid "Enable beta features" msgstr "Kísérleti funkciók engedélyezése" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Feliratok be" @@ -4550,12 +4523,13 @@ msgstr "Külső videólejátszók engedélyezése" msgid "Enable media players for" msgstr "Az alábbi külső videólejátszók vannak engedélyezve:" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Egy fiók értesítéseit a profilján, a <0>harang ikonon <1/> keresztül elérhető menüben módosíthatod." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Leküldéses értesítések engedélyezése" @@ -4581,7 +4555,7 @@ msgstr "Felkapott videók megjelenítése a Követett hírfolyamon" msgid "Enabled" msgstr "Engedélyezve" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "A hírfolyam véget ért" @@ -4608,7 +4582,7 @@ msgstr "Szó vagy címke megadása" msgid "Enter code" msgstr "Kód megadása" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Belépés teljes képernyős módba" @@ -4650,11 +4624,11 @@ msgstr "Add meg a felhasználónevedet és a jelszavadat" msgid "Enters full screen" msgstr "Teljes képernyős mód" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Szórakozás" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Hiba" @@ -4684,7 +4658,7 @@ msgstr "A fájl mentése meghiúsult" msgid "Error receiving captcha response." msgstr "A captcha válaszának fogadása meghiúsult." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Hiba: {error}" @@ -4696,8 +4670,8 @@ msgstr "Bárki válaszolhat" msgid "Everybody can reply to this post." msgstr "Bárki válaszolhat erre a bejegyzésre." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Bárkitől" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Bárkitől" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Minden más" @@ -4738,7 +4712,7 @@ msgstr "Követett felhasználók kihagyása a szűrésből" msgid "Excludes users you follow" msgstr "A követett felhasználók bejegyzéseit nem szűri" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Kilépés a teljes képernyős módból" @@ -4755,11 +4729,11 @@ msgstr "Lista kibontása" msgid "Expand or collapse the full post you are replying to" msgstr "A válasz forrásaként származó bejegyzés kibontása/összecsukása" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Továbbiak" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Bejegyzés teljes szövegének kibontása/összecsukása" @@ -4802,15 +4776,15 @@ msgstr "A nyugalom megzavarására alkalmas képek és videók." msgid "Explicit sexual images." msgstr "Szexuális tartalmakat ábrázoló képek." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Felfedezés" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Az alkalmazás felfedezése" @@ -4844,7 +4818,7 @@ msgstr "Külső videólejátszó" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "A külső videólejátszók beágyazásának engedélyezése lehetővé teszi más honlapok számára az adatgyűjtést Rólad vagy az eszközödről. A Lejátszás gomb megnyomásáig semmilyen adatot sem küldünk vagy kérünk le." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Külső videólejátszók" @@ -4886,7 +4860,7 @@ msgstr "A felhasználónév megváltoztatása meghiúsult. Próbáld újra." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "A hivatkozás másolása meghiúsult" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "A csoportbeszélgetés elhagyása meghiúsult" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "A csevegések betöltése meghiúsult" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "A hírfolyamok betöltése meghiúsult" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "A hírfolyambeállítások betöltése meghiúsult" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Az értesítési beállítások betöltése meghiúsult." @@ -5012,14 +4987,14 @@ msgstr "A betöltés meghiúsult." msgid "Failed to load profiles" msgstr "A profilok betöltése meghiúsult" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Az ajánlott hírfolyamok betöltése meghiúsult" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "A javasolt személyek betöltése meghiúsult" @@ -5027,12 +5002,12 @@ msgstr "A javasolt személyek betöltése meghiúsult" msgid "Failed to lock group chat" msgstr "A csoportbeszélgetés zárolása meghiúsult" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "A csevegések megjelölése olvasottként meghiúsult" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "A kérelem visszavonása meghiúsult. Próbáld újra később." msgid "Failed to resolve location. Please try again." msgstr "A tartózkodási hely megállapítása meghiúsult. Próbáld újra." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "A piszkozat mentése meghiúsult" @@ -5191,7 +5166,7 @@ msgstr "Hamis vagy automatikusan üzemeltetett fiók" msgid "False information about elections" msgstr "Választási dezinformáció" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Hírfolyam" @@ -5212,7 +5187,7 @@ msgstr "Hírfolyamszerző" msgid "Feed identifier" msgstr "Hírfolyam-azonosító" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Hírfolyammenü" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Visszajelzés elküldve az üzemeltetőnek" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Hírfolyamok frissítve" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "További ajánlott hírfolyamok." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Frissítések keresése" @@ -5273,21 +5244,21 @@ msgstr "Frissítések keresése" msgid "File saved successfully!" msgstr "A fájl mentése sikeresen megtörtént" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Szűrés szerző szerint" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Szűrés szerző szerint (jelenleg: {currentLabel})" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 msgid "Filter by media" -msgstr "Szűrés mellékletek szerint" +msgstr "Szűrés mellékletek alapján" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 msgid "Filter by media (currently: {currentLabel})" -msgstr "Szűrés mellékletek szerint (jelenleg: {currentLabel})" +msgstr "Szűrés mellékletek alapján (jelenleg: {currentLabel})" #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" @@ -5304,13 +5275,13 @@ msgstr "Szűrés nyelv alapján (Jelenlegi: {currentLanguageLabel})" #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" -msgstr "" +msgstr "Találatok szűrése {0} nyelvre" #: src/screens/Settings/ActivityPrivacySettings.tsx:106 msgid "Filter who can opt to receive notifications for your activity" msgstr "A saját tevékenységekről szóló értesítések engedélyeinek megszabása" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Értesítések forrásainak szűrése" @@ -5352,8 +5323,8 @@ msgstr "Követendő fiókok felfedezése" msgid "Find and invite friends" msgstr "Barátok meghívása" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Ismerősök felkutatása" @@ -5387,7 +5358,7 @@ msgstr "Ismerősök felkutatása" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "A Bluesky – a telefonszámod hitelesítése után – képes segíteni az ismerőseid felkutatásában, a készülékeden és az adatbázisunkban található névjegyek összehasonlításával. A folyamat végén Te döntheted el, hogy kiket kívánsz bejelölni. <0>További információ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Találj rá a Veled együttérző emberekre!" @@ -5429,7 +5400,7 @@ msgstr "Fókuszálás a keresőmezőre" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "{0} követése" msgid "Follow {displayName}" msgstr "{displayName} követése" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} követése" @@ -5453,11 +5424,11 @@ msgstr "{handle} követése" msgid "Follow 10 accounts" msgstr "Kövess 10 fiókot!" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Kezdetnek kövess 10 személyt!" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Kövess 7 fiókot!" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Csak követők csatlakozhatnak" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "@{0} Általad ismert követői" @@ -5544,7 +5515,7 @@ msgstr "Ismert követők" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Mostantól követed: {0}" msgid "Following {displayName}" msgstr "Mostantól követed: {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Mostantól követed: {handle}" @@ -5578,21 +5549,21 @@ msgstr "Mostantól követed: {handle}" msgid "Following feed preferences" msgstr "Követett hírfolyam" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Követett hírfolyam" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Követ Téged" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Betűtípus" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Betűméret" @@ -5612,13 +5583,13 @@ msgstr "Biztonsági okokból egy ellenőrzőkódot fogunk küldeni a(z) <0>{curr msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Biztonsági okokból ezt többé nem tekintheted meg. Ha elveszted ezt a jelszót, akkor újat kell létrehoznod." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "A legjobb élmény érdekében a témabetűtípus használatát javasoljuk." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Javasolt" @@ -5628,7 +5599,7 @@ msgstr "Javasolt" msgid "Forever" msgstr "Örökké" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Szűrd ki a zajt!" @@ -5647,14 +5618,16 @@ msgstr "Elfelejtett jelszó" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Négy szövegbuborék, amelyek egy csoportbeszélgetést szimbolizálnak. Első üzenet: „Hallottátok? A Blueskyon már csoportbeszélgetések is vannak!” Második üzenet: „azta, na ne mondd!” Harmadik üzenet: „Nahát! 50-en is összejöhetünk!” Negyedik üzenet: „Még meghívókat is küldhetünk!”" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Szabadítsd fel a hírfolyamodat!" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" -msgstr "Forrás" +msgstr "Szerző" #: src/screens/Hashtag.tsx:123 msgid "From {sanitizedAuthor}" @@ -5672,9 +5645,9 @@ msgstr "A(z) <0/> hírfolyamból" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 msgid "From these people" -msgstr "Az alábbi személyektől" +msgstr "az alábbi személyek által közzétett bejegyzések" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Kezdőcsomag létrehozása" @@ -5718,39 +5691,39 @@ msgstr "Korai hozzáférést szerezhetsz bizonyos próba alatt álló újabb fun msgid "Get help" msgstr "Súgó" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Értesítés, ha valaki regisztrál a kezdőcsomagoddal, megváltozik a hitelesítési állapotod vagy más egyéb esemény történik." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Értesítés, ha valaki követni kezd Téged." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Értesítés, ha valaki kedveli az egyik bejegyzésedet." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Értesítés, ha valaki kedveli az egyik megosztott bejegyzésedet." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Értesítés, ha valaki megemlít Téged." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Értesítés, ha valaki idézi az egyik bejegyzésedet." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Értesítés, ha valaki válaszol az egyik bejegyzésedre." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Értesítés, ha valaki megosztja az egyik bejegyzésedet." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Értesítés, ha valaki megosztja az egyik megosztott bejegyzésedet." @@ -5762,15 +5735,15 @@ msgstr "Értesítés, ha vannak bejövő csevegési kérelmeid." msgid "Get notifications when people send you messages." msgstr "Értesítés, ha vannak bejövő üzeneteid." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Értesítés, ha egy követett bejegyzéssel kapcsolatban történik valami." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Feliratkozás értesítésekre" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Értesülhetsz kívánt fiókok új tevékenységeiről." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Feliratkozás {name} új bejegyzéseire" @@ -5799,11 +5772,11 @@ msgstr "Rendben" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF sikeresen feltöltve" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Adj arcot a profilodnak!" @@ -5813,20 +5786,20 @@ msgstr "Az erőszak népszerűsítése" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Élő adás indítása az alábbi időintervallumra:" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "{0} profiljának megnyitása" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Csoportbeszélgetés átnevezve" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Csoportbeszélgetés beállításai" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Egy csoportbeszélgetésnek legfeljebb {0, plural, one {#} other {#}} tagja lehet." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "A csoport zárolva van" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Csoportnév" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "A csoportbeszélgetés címe túl hosszú. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Korlát: # karakter.}}" @@ -6077,7 +6051,7 @@ msgstr "Veszélyes vagy káros tevékenységek" msgid "Harming or endangering minors" msgstr "Kiskorúak veszélyeztetése vagy károsítása" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Címke" @@ -6098,7 +6072,7 @@ msgstr "Ha már rendelkezel kóddal, <0>kattints ide." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Tévesen állapítottuk meg a tartózkodási helyedet? <0>Koppints ide a GPS-es ellenőrzéshez." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Problémába ütköztél?" @@ -6114,7 +6088,7 @@ msgstr "A visszaélések elkerülése érdekében a Bluesky 7 napig megtartja, m msgid "Help" msgstr "Súgó" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Segíts másoknak megbizonyosodni arról, hogy valódi személy vagy egy profilkép létrehozásával!" @@ -6140,7 +6114,7 @@ msgstr "Üdvözletem!" msgid "Hidden" msgstr "Rejtett tartalom" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Elrejtve a moderálási beállítások alapján." @@ -6148,9 +6122,9 @@ msgstr "Elrejtve a moderálási beállítások alapján." msgid "Hidden list" msgstr "Rejtett lista" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Rejtett lista" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Elrejtés" @@ -6198,7 +6172,7 @@ msgstr "Válasz elrejtése mindenkinek" msgid "Hide reply for me" msgstr "Válasz elrejtése helyileg" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Kártya elrejtése" @@ -6218,12 +6192,12 @@ msgstr "Válasz elrejtése" msgid "Hide translation" msgstr "Fordítás elrejtése" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Felkapott témakörök elrejtése" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Felkapott témakörök elrejtése" @@ -6240,7 +6214,7 @@ msgstr "Felhasználólista elrejtése" msgid "Hide verification badges" msgstr "Hitelesítési jelvények elrejtése" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Tartalom elrejtése" @@ -6293,8 +6267,8 @@ msgstr "Hmmmm… Ez a moderálási szolgáltatás nem található." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Egy pillanat! A videófeltöltés lehetősége még nem mindenki számára elérhető. Próbáld újra később." -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Tárhelyszolgáltató: {0}" msgid "Hosting provider: Bluesky" msgstr "Tárhelyszolgáltató: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Felkapott" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "A folyamat leírása:" @@ -6409,6 +6379,7 @@ msgstr "Ha frissíted az e-mail-címedet, akkor a jelenleg beállított kétlép msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "A jelszó megváltoztatásához egy ellenőrzőkódot fogunk küldeni, hogy igazolhasd a kiléted." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "A saját fiókodra vonatkozó értesítési beállításokat a <0>Beállítások menü Adatvédelem és biztonság almenüjében szabhatod személyre." @@ -6548,7 +6519,7 @@ msgstr "Alkalmazáson belüli, leküldéses, mindenkitől" msgid "In-app, push, people you follow" msgstr "Alkalmazáson belüli, leküldéses, az Általad követett személyektől" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Nincsenek beérkező üzenetek" @@ -6560,13 +6531,14 @@ msgstr "Elfogytak a beérkező üzenetek." #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" -msgstr "Bejegyzéstípusok" +msgstr "Megtartás" #. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 @@ -6589,7 +6561,7 @@ msgstr "Az alábbi dátumig közzétett bejegyzések megtartása" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 msgid "Include these results" -msgstr "Az alábbi találatok megtartása" +msgstr "Szűrés bejegyzéstípus alapján" #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Még csak Te szerepelsz a kezdőcsomagban. A fenti keresővel másokat is hozzáadhatsz." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Állásazonosító: {0}" @@ -6816,8 +6788,8 @@ msgstr "Csatlakozz hozzánk!" msgid "Journalism" msgstr "Sajtó" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Szerkesztés folytatása" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "A KWS honlapja" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Feljegyezte a(z) {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Feljegyezte a szerző." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Feljegyzések" @@ -6852,7 +6824,7 @@ msgstr "Feljegyzések alkalmazva" msgid "Labels applied to this post" msgstr "A bejegyzésre alkalmazott feljegyzések" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "A feljegyzések felhasználókra és tartalmakra elhelyezett különleges címkék. A hálózat ezeket használja a különböző tartalmak kategóriákba sorolására, elrejtésére és a megtekintés előtti figyelmeztetések megjelenítésére." @@ -6864,7 +6836,7 @@ msgstr "A fiókodra helyezett feljegyzések" msgid "Language" msgstr "Nyelv" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Nyelvi beállítások" @@ -6874,7 +6846,7 @@ msgstr "Nyelvi beállítások" msgid "Languages" msgstr "Nyelvek" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Nagyobb" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Legutóbbi kérelem: épp most" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Legújabb" @@ -6904,14 +6876,14 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "További információ" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "További információ" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." -msgstr "" +msgstr "<0>További információ a részletes keresőről." #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 msgid "Learn more about age assurance" @@ -6937,8 +6909,8 @@ msgstr "További információ a névjegyimportálásról" msgid "Learn more about self hosting your PDS." msgstr "További információ a személyes adatkiszolgálók üzemeltetéséről." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "További információ a tartalommoderálásról" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "A változtatásokról és a visszajelzés mikéntjéről a blogbejegyzésünkben olvashatsz (angol nyelven)." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "További információ erről a figyelmeztetésről" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "További információ a <0>fiókbeállításokban." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "További információ." @@ -6993,8 +6965,8 @@ msgstr "Elhagyás" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "A Bluesky elhagyása" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Ha elhagyod ezt a csoportbeszélgetést, akkor az zárolva marad és nem leszel képes újra csatlakozni." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Csoportbeszélgetés elhagyva." @@ -7042,7 +7014,7 @@ msgstr "Csoportbeszélgetés elhagyva." msgid "left to go." msgstr "maradt." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Fiókok választása kézileg" @@ -7057,7 +7029,7 @@ msgstr "Gyerünk!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Világos" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Világos" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Tetszik" @@ -7076,7 +7048,7 @@ msgstr "Tetszik" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Tetszik ({0, plural, one {# kedvelés} other {# kedvelés}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Kedvelj 10 megjegyzést!" @@ -7085,7 +7057,7 @@ msgstr "Kedvelj 10 megjegyzést!" msgid "Like 10 posts to train the Discover feed" msgstr "Kedvelj 10 megjegyzést a Követett hírfolyam idomításához!" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Hírfolyam kedvelése" @@ -7093,8 +7065,8 @@ msgstr "Hírfolyam kedvelése" msgid "Like this labeler" msgstr "Feljegyző kedvelése" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Kedvelők" @@ -7111,27 +7083,45 @@ msgstr "Kedvelők" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {#} other {#}} felhasználó kedveli" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "{0} kedveli ezt a bejegyzést" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "{0} és {1} kedveli ezt a bejegyzést" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {#} other {#}} felhasználó kedveli" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Kedvelések" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Megosztott bejegyzések kedvelése" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "A bejegyzést kedvelők" @@ -7144,7 +7134,7 @@ msgstr "Egyszerű" msgid "Link copied to clipboard" msgstr "Vágólapra helyezve" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "A listán szereplő személyek némítása feloldva" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "ÉLŐ" msgid "Live event happening now: {0}" msgstr "Jelenlegi élő esemény: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Élő esemény elrejtve" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Élő esemény ismét megjelenítve" @@ -7279,12 +7269,12 @@ msgstr "Az élő adások kísérleti fázisban vannak" msgid "Live link" msgstr "Élő adás hivatkozása" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Továbbiak" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "További javasolt hírfolyamok" @@ -7292,8 +7282,8 @@ msgstr "További javasolt hírfolyamok" msgid "Load new notifications" msgstr "Új értesítések betöltése" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "A csoportbeszélgetés zárolása" msgid "Locked" msgstr "Zárolva" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Napló" @@ -7387,7 +7377,7 @@ msgstr "Szerelmes GIF-ek" msgid "Make adjustments to email settings for your account" msgstr "A fiók e-mail-beállításainak testreszabása" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Automatikus létrehozás" @@ -7418,15 +7408,15 @@ msgstr "Kézi" msgid "Mark all as read" msgstr "Összes megjelölése olvasottként" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Összes csevegés megjelölése olvasottként" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Megjelölés olvasottként" msgid "Marked all as read" msgstr "Összes üzenet megjelölve olvasottként" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Olvasottnak jelölve" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Olvasottnak jelölve" @@ -7456,8 +7446,12 @@ msgstr "Olvasottnak jelölve" msgid "Maybe later" msgstr "Talán később" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Te" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Mellékletek" @@ -7475,7 +7469,7 @@ msgstr "A mellékletek egy másik eszközön érhetők el" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "A nyugalom megzavarására alkalmas vagy felnőtt témákat ábrázoló képek." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Tag eltávolítva a csoportbeszélgetésből." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "a megemlített felhasználók" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Említések" @@ -7502,7 +7496,7 @@ msgstr "Említések" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 msgid "Mentions of these people" -msgstr "Az alábbi személyeket megemlítő bejegyzések" +msgstr "az alábbi személyeket megemlítő bejegyzések" #: src/components/Menu/index.tsx:119 msgid "Menu" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Üzenet törölve" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Az üzenet elküldése meghiúsult." @@ -7563,15 +7557,15 @@ msgstr "Az üzenet túl hosszú ({MAX_DM_GRAPHEME_LENGTH}/{graphemeCount})" msgid "Message options" msgstr "Üzenetlehetőségek" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Üzenetek" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "A másik fél üzenetei el vannak rejtve, mivel letiltott Téged." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "A másik fél üzenetei el vannak rejtve, mivel letiltottad őt." @@ -7592,7 +7586,7 @@ msgstr "Félrevezető tartalom" msgid "Missing media" msgstr "Hiányzó melléklet" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderálás" @@ -7636,7 +7630,7 @@ msgstr "Moderálólista frissítve" msgid "Moderation lists" msgstr "Moderálólisták" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderálólisták" @@ -7645,7 +7639,7 @@ msgstr "Moderálólisták" msgid "moderation settings" msgstr "moderálási beállítások" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderálási állapotok" @@ -7786,7 +7780,7 @@ msgstr "Elnémítva" msgid "Muted accounts" msgstr "Elnémított fiókok" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Elnémított fiókok" @@ -7867,7 +7861,6 @@ msgstr "Szerzői jogsértést, jogi követelést vagy szabályzatszegést jelent msgid "Nevermind, create a handle for me" msgstr "Mégse – hozzon létre egy felhasználónevet automatikusan" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Új" @@ -7893,11 +7886,11 @@ msgstr "{firstAuthorName} új {postsCount, plural, one {bejegyzést} other {beje #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Új csevegés" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Új funkció" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Új követők" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Csoportbeszélgetés létrehozása" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Csoportbeszélgetés létrehozása" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Új csoportbeszélgetés az alábbi személyekkel:" @@ -7966,13 +7959,13 @@ msgstr "Új lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Új csevegési kérelmek" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Új üzenetek" @@ -7982,12 +7975,12 @@ msgstr "Új üzenetek" msgid "New password" msgstr "Új jelszó" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Új bejegyzés" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "A legújabb válaszok elöl" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Hírek" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Következő kép" msgid "Night" msgstr "Éjfél" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Ilyen egy közösségi oldal hirdetések, magánéletsértő nyomonkövetés és visszarángatás nélkül. A Bluesky tiszteletben tartja az idődet és a figyelmedet." @@ -8098,14 +8091,14 @@ msgstr "Nem jár le" msgid "No feeds found. Try searching for something else." msgstr "Nincs találat. Próbálj megadni egy másik keresési kifejezést." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Még nincsenek követők" #. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the user’s search query. #: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25 msgid "No GIFs found for \"{query}\"." -msgstr "A(z) „{query}” kifejezésre nincs találat." +msgstr "A(z) „{query}” kifejezésre nincsenek találatok." #. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue). #: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36 @@ -8118,7 +8111,7 @@ msgstr "Nincs előnézet" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Még nincsenek kedvelések" @@ -8135,7 +8128,7 @@ msgstr "Még nincsenek listák" msgid "No longer following {0}" msgstr "Abbahagytad {0} követését" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Még nincsenek mellékletek" @@ -8143,7 +8136,7 @@ msgstr "Még nincsenek mellékletek" msgid "No messages yet" msgstr "Még nincsenek üzenetek" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Vess véget a szeméttel teli hírfolyamok örökös görgetésének! Inkább találj olyan tartalmakat, amelyek érted és nem ellened dolgoznak!" @@ -8184,12 +8177,12 @@ msgstr "Jelenleg senki sem küldhet üzeneteket" msgid "No posts here" msgstr "Még nincsenek bejegyzések" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Még nincsenek bejegyzések" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Még nincsenek idézések" @@ -8202,7 +8195,7 @@ msgstr "Még nincsenek előzmények. Ha kiválasztasz egy GIF-et, akkor a jövő msgid "No replies" msgstr "Válaszok nélküli bejegyzések" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Még nincsenek válaszok" @@ -8217,42 +8210,42 @@ msgstr "Nincs találat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" -msgstr "Nincs találat" +msgstr "Nincsenek találatok" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." -msgstr "A(z) „{0}” kifejezésre nincs találat." +msgstr "A(z) „{0}” kifejezésre nincsenek találatok." #: src/components/Lists.tsx:203 #: src/components/Lists.tsx:218 msgid "No results found" -msgstr "Nincs találat" +msgstr "Nincsenek találatok" #: src/view/screens/Feeds.tsx:466 msgid "No results found for \"{query}\"" -msgstr "A(z) „{query}” kifejezésre nincs találat" +msgstr "A(z) „{query}” kifejezésre nincsenek találatok" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." -msgstr "" +msgstr "A jelenlegi szűrőkkel nincsenek találatok a(z) „<0>{query}” kifejezésre." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." -msgstr "A(z) „<0>{query}” kifejezésre nincs találat." +msgstr "A(z) „<0>{query}” kifejezésre nincsenek találatok." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." -msgstr "" +msgstr "A jelenlegi szűrőkkel nincsenek találatok a keresett kifejezésre." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." -msgstr "Nincs találat." +msgstr "Nincsenek találatok." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Még nincsenek kezdőcsomagok" @@ -8265,7 +8258,7 @@ msgstr "Köszönöm, nem" msgid "No translation received from your device." msgstr "Az eszköz nem szolgált fordítással." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Még nincsenek videós bejegyzések" @@ -8278,7 +8271,7 @@ msgstr "Senki" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ezt a tartalmat még senki sem kedvelte. Talán Te lehetnél az első!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ezt a tartalmat még senki sem idézte. Talán Te lehetnél az első!" @@ -8298,6 +8291,10 @@ msgstr "Intim területeket ábrázoló nem szexuális képek" msgid "Non-sexual Nudity" msgstr "Nemszexuális meztelenség" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Nincs" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Ezen a platformon nem elérhető." msgid "Not followed by anyone you’re following" msgstr "Nincsenek ismert követők" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Ez a tartalom nem található" @@ -8333,7 +8330,7 @@ msgstr "Korlátozott láthatóság" 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 "Megjegyzés: A Bluesky egy nyílt és nyilvános hálózat. Ez a beállítás csak a Bluesky alkalmazásban és -honlapon korlátozza a tartalmaid láthatóságát és nem biztos, hogy más alkalmazások is tiszteletben tartják. Lehetséges, hogy más alkalmazásokban és honlapokon ugyanúgy láthatóak maradnak a tartalmaid kijelentkezett felhasználók számára is." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Megjegyzés: Ez a bejegyzés csak a bejelentkezett felhasználók számára látható." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Még semmit sem mentettél" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Értesítési beállítások" @@ -8353,11 +8350,12 @@ msgstr "Értesítési beállítások" msgid "Notification sounds" msgstr "Értesítési hangok" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Jaj, ne!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Rendben" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Regisztrációs varázslót alaphelyzetbe állítva" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Az egyik címzett nem kíván részt venni csoportbeszélgetésekben." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Az egyik címzett letiltott Téged, ezért nem veheted fel vele a kapcsolatot." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Legalább egy GIF-ről hiányzik a helyettesítő szöveg." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Legalább egy képről hiányzik a helyettesítő szöveg." @@ -8454,11 +8454,11 @@ msgstr "A kiválasztott fájlok közül legalább egy nem támogatott formátum msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "A kiválasztott fájlok közül legalább egy túl nagy. A korlát {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Legalább egy piszkozat túl hosszú. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {Korlát: # karakter.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg." @@ -8471,7 +8471,7 @@ msgstr "Csak {0} válaszolhatnak." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "{1, selectordinal, one {Az #} other {A #}} kiválasztottból csak az első {0} fényképet lehetett csatolni. A korlát {MAX_GALLERY_IMAGES} melléklet." @@ -8509,17 +8509,17 @@ msgstr "Csak a csoportbeszélgetés tulajdonosa által követett személyek csat #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" -msgstr "Csak a mellékletekkel rendelkező bejegyzések megtartása" +msgstr "Csak a mellékletekkel rendelkező bejegyzések megjelenítése" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 msgid "Only posts with videos" -msgstr "Csak a csatolt videókkal rendelkező bejegyzések megtartása" +msgstr "Csak a videós mellékletekkel rendelkező bejegyzések megjelenítése" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 msgid "Only replies" -msgstr "" +msgstr "Csak válaszok" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Csak a WebVTT (.vtt) formátum támogatott" @@ -8532,19 +8532,19 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Hoppá! Ez a profil nem létezik. Próbálj beolvasni egy másikat." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Hoppá!" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 msgid "Open advanced search options" -msgstr "" +msgstr "Részletes keresési beállítások megnyitása" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Profilképkészítő megnyitása" @@ -8570,21 +8570,22 @@ msgstr "Beszélgetési beállítások megnyitása" msgid "Open draft" msgstr "Piszkozat szerkesztése" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Oldalsó menü megnyitása" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Emojiválasztó megnyitása" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Hírfolyam tulajdonságainak megnyitása" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Hírfolyambeállítások megnyitása" @@ -8627,7 +8628,7 @@ msgstr "Moderálási hibakeresési oldal megnyitása" msgid "Open muted words and tags settings" msgstr "Elnémított szavak és címkék beállításainak megnyitása" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Csomag megnyitása" @@ -8699,7 +8700,7 @@ msgstr "Hibakeresési bejegyzés részleteinek megnyitása" msgid "Opens alt text dialog" msgstr "Helyettesítő szöveget tartalmazó ablak megnyitása" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Az eszköz kamerájának megnyitása" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Regisztrációs varázsló indítása" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Bejelentkezési varázsló megnyitása" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Megváltoztattad a jelszavad!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Szünet" @@ -8925,12 +8926,12 @@ msgstr "Szünet" msgid "Pause GIF" msgstr "GIF szüneteltetése" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Videó szüneteltetése" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Személyek" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "A(z) {ownerName} által követett személyek kérelmezhetik a csatlakozást" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "A(z) @{0} által követett személyek" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Az őt követő személyek: @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Követett személyektől" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Az Általad követett személyek kérelmezhetik a csatlakozást" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Az Általad követett személyek" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Felnőtteknek szánt képek." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Hírfolyam kitűzése" @@ -9034,7 +9035,7 @@ msgstr "Hírfolyam kitűzése" msgid "Pin to home" msgstr "Kitűzés a kezdőoldalra" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Kitűzés a kezdőoldalra" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Kitűzve" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "A(z) {0} hírfolyam kitűzve" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Kitűzted a hírfolyamot" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Lejátszás" @@ -9076,8 +9077,8 @@ msgstr "{0} lejátszása" msgid "Play GIF" msgstr "GIF lejátszása" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Videó lejátszása" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Üzenet megadása:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politika" @@ -9269,7 +9270,7 @@ msgstr "Politika" msgid "Porn" msgstr "Pornó" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Közzététel" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Bejegyzés" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Fénykép közzététele" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Videó közzététele" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Összes közzététele" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Közzététel mégis" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Letiltott bejegyzés" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} bejegyzése" @@ -9340,7 +9341,7 @@ msgstr "Elrejtetted a bejegyzést" msgid "Post interaction settings" msgstr "Kapcsolatbalépési beállítások" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Kapcsolatbalépési beállítások" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Bejegyzés kitűzve" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Bejegyzés elmentve" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,14 +9378,15 @@ msgstr "Bejegyzés kitűzése felolva" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Bejegyzések" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 msgid "Posts and replies" -msgstr "" +msgstr "Nincs szűrés" #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." @@ -9398,6 +9396,10 @@ msgstr "A különböző bejegyzéseket a szövegük, címkéik vagy mindkettő msgid "Posts hidden" msgstr "Rejtett bejegyzések" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Bejegyzések, válaszok" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potenciálisan félrevezető hivatkozás" @@ -9449,20 +9451,21 @@ msgstr "Adatvédelem" msgid "Privacy and security" msgstr "Adatvédelem és biztonság" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Adatvédelem és biztonság" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Adatvédelmi- és biztonsági beállítások" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Adatvédelmi irányelvek" msgid "Privacy violation of a minor" msgstr "Kiskorúak személyes jogainak megsértése" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIF feldolgozása folyamatban…" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Videó feldolgozása folyamatban…" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Nyilvános, megosztható fióklisták a tömeges elnémításhoz vagy letiltáshoz." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Bejegyzés közzététele" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Bejegyzések közzététele" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Válaszok közzététele" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Válasz közzététele" @@ -9599,12 +9602,12 @@ msgstr "Idézés letiltva" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Idézések" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "A bejegyzés idézései" @@ -9647,21 +9650,21 @@ msgstr "Fiók újraaktiválása" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "{0, plural, other {# további válasz}} megjelenítése" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" -msgstr "" +msgstr "További információ a részletes keresésről (angol nyelven)" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Blogbejegyzés megtekintése (angolul)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Kevesebb" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Több" @@ -9687,11 +9690,11 @@ msgstr "A Bluesky adatvédelmi irányelveinek megtekintése" msgid "Read the Bluesky Terms of Service" msgstr "A Bluesky felhasználói feltételeinek megtekintése" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Valódi párbeszéd." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Valódi emberek." @@ -9721,10 +9724,6 @@ msgstr "Keresési előzmények" msgid "Recently used" msgstr "Legutóbb használt" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Javasolt" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Újracsatlakozás" @@ -9748,7 +9747,7 @@ msgstr "Csevegési kérelem elutasítása" msgid "Reject join request" msgstr "Csatlakozási kérelem elutasítása" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Beszélgetések újratöltése" @@ -9766,7 +9765,7 @@ msgstr "Beszélgetések újratöltése" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Eltávolítás" @@ -9790,10 +9789,10 @@ msgstr "Biztosan el akarod távolítani {displayName} felhasználót?" #: src/screens/Search/components/SearchHistory.tsx:182 msgid "Remove {q}" -msgstr "" +msgstr "A(z) „{q}” kifejezés eltávolítása" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Fiók eltávolítása" @@ -9839,21 +9838,21 @@ msgstr "Hírfolyam eltávolítása" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 msgid "Remove filter" -msgstr "" +msgstr "Szűrő eltávolítása" #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Eltávolítás a csevegésből" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Eltávolítás a hírfolyamgyűjteményből" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Eltávolítás a fióklistáról" @@ -9862,7 +9861,7 @@ msgstr "Eltávolítás a fióklistáról" msgid "Remove from saved feeds" msgstr "Eltávolítás a mentett hírfolyamok közül" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Eltávolítás a mentett bejegyzések közül" @@ -9880,8 +9879,8 @@ msgstr "Kép eltávolítása" msgid "Remove live status" msgstr "Élőadásos állapot eltávolítása" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Tag eltávolítása" @@ -9943,7 +9942,7 @@ msgstr "Személy levéve a listáról" msgid "Removed from saved feeds" msgstr "Eltávolítva a mentett hírfolyamok közül" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Eltávolítva a mentett bejegyzések közül" @@ -9952,7 +9951,7 @@ msgstr "Eltávolítva a mentett bejegyzések közül" msgid "Removed from starter pack" msgstr "Profil eltávolítva a kezdőcsomagból" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Válasz a bejegyzésedre" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "{senderName} üzenete, amelyre válaszoltak. Ugrás koppintásra" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Az eredeti üzenet a csatlakozásod előttről származik" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Üzenet, amelyre válaszoltak. Ugrás koppintásra" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Válaszok" @@ -10037,7 +10037,7 @@ msgstr "A bejegyzés alatti válaszadás le van tiltva." msgid "Reply" msgstr "Válasz" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Válasz közzététele" @@ -10098,8 +10098,8 @@ msgstr "Beszélgetés jelentése" msgid "Report dialog" msgstr "Párbeszédablak jelentése" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Hírfolyam jelentése" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Megosztottad" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Megosztások" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "A bejegyzés megosztásai" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Megosztott bejegyzések megosztása" @@ -10253,7 +10253,7 @@ msgstr "Kérelem elküldve" msgid "Requests" msgstr "Kérelmek" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "A legutóbb meghiúsult folyamat újrapróbálása" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Vissza a kezdőoldalra" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Vissza az előző oldalra" @@ -10446,27 +10446,27 @@ msgstr "Születési dátum mentése" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Változtatások mentése" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Változtatások mentése" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Mentés" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Piszkozat mentése" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR-kód mentése" msgid "Save these options for next time" msgstr "Beállítások megjegyzése" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Mentés a hírfolyamgyűjteménybe" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Mentett hírfolyamok" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Mentett bejegyzések" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Hírfolyam elmentve" @@ -10520,8 +10520,8 @@ msgstr "Hírfolyam elmentve" msgid "Say hello!" msgstr "Köszönj!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Írj valakinek!" @@ -10535,7 +10535,7 @@ msgstr "Beolvasás" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "QR-kód beolvasása" @@ -10543,15 +10543,15 @@ msgstr "QR-kód beolvasása" msgid "Science" msgstr "Tudomány" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Görgetés balra" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Görgetés jobbra" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Ugrás az üzenethez, amelyre válaszoltak" @@ -10564,8 +10564,8 @@ msgstr "Vissza a tetejére" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Keresés" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Keresés @{0} bejegyzései között" @@ -10612,11 +10612,11 @@ msgstr "Keresés: {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Keresd meg az ajánlani kívánt hírfolyamokat!" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "További fiókok keresése" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "További hírfolyamok keresése" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF-ek keresése" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "A kereséshez jelenleg bejelentkezés szükséges" @@ -10661,7 +10661,7 @@ msgstr "Profilok keresése" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 msgid "Search query" -msgstr "" +msgstr "Keresési kifejezés" #: src/screens/Profile/ProfileSearch.tsx:38 msgid "Search..." @@ -10709,6 +10709,7 @@ msgstr "Állások a Blueskynál" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Továbbiak" @@ -10716,8 +10717,12 @@ msgstr "Továbbiak" msgid "See more suggested profiles" msgstr "További javasolt profilok megjelenítése" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "További felkapott témakörök megjelenítése" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Javasolt fiókok megtekintése" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Lejátszásvezérlő sáv. Az előre-/visszatekeréshez használd a nyílbillentyűket és a szüneteltetéshez/lejátszáshoz nyomd meg a szóközt." #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "{interestsDisplayName} kategória kiválasztása" @@ -10748,7 +10753,7 @@ msgstr "{0} kiválasztása" msgid "Select {langName}" msgstr "{langName} kiválasztása" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Szín kiválasztása" @@ -10764,11 +10769,11 @@ msgstr "Fiók kiválasztása" msgid "Select an app language" msgstr "Alkalmazás nyelvének megadása" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Profilkép kiválasztása" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Emoji kiválasztása" @@ -10780,12 +10785,13 @@ msgstr "Lehetőség kiválasztása" msgid "Select app language" msgstr "Alkalmazás nyelvének megadása" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Feliratfájl (.vtt) társítása" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "A(z) {name} csevegés kiválasztása" @@ -10801,7 +10807,7 @@ msgstr "Hossz megadása" #. placeholder {0}: labels[filter.field].title #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 msgid "Select filter type (currently: {0})" -msgstr "" +msgstr "Szűrőtípus megadása (jelenleg: {0})" #: src/screens/Login/index.tsx:166 msgid "Select from an existing account" @@ -10826,7 +10832,7 @@ msgstr "GIF kiválasztása" msgid "Select GIF \"{0}\"" msgstr "„{0}” GIF kiválasztása" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Csoportbeszélgetés tagjainak megadása" @@ -10864,7 +10870,7 @@ msgstr "Elsődleges nyelv megadása" msgid "Select telephone code" msgstr "Országhívószám megadása" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "A(z) {emojiName} emoji kiválasztása profilképként" @@ -10945,7 +10951,8 @@ msgstr "Üzenet küldése" msgid "Send post to {name}" msgstr "Bejegyzés küldése neki: {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Címzett kiválasztása" @@ -10963,12 +10970,12 @@ msgstr "Üzenet küldése a telefonról" msgid "Send verification email" msgstr "Visszaigazoló e-mail küldése" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Továbbítás személyes üzenetben" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Küldés csevegésben" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Tárhelyszolgáltató kézi beállítása" msgid "Sets email for password reset" msgstr "E-mail cím beállítása jelszóvisszaállításhoz" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Beállítások" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Saját tevékenységértesítési beállítások" @@ -11036,49 +11043,49 @@ msgstr "Saját tevékenységértesítési beállítások" msgid "Settings for allowing others to be notified of your posts" msgstr "Mások Tőled érkező értesítéseit érintő beállítások" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Kedveléses értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Megemlítéses értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Új követős értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Egyéb értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Megosztott bejegyzések kedveléséses értesítéseinek beállításai" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Új csevegési kérelmek értesítéseinek beállításai" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Új üzenetek értesítéseinek beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Megosztott bejegyzések megosztásos értesítéseinek beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Idézéses értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Válaszos értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Megosztásos értesítések beállításai" @@ -11115,8 +11122,8 @@ msgstr "Korcsoport megosztása" msgid "Share anyway" msgstr "Továbbítás mégis" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Szerző DID-jének továbbítása" @@ -11127,7 +11134,7 @@ msgstr "Szerző DID-jének továbbítása" msgid "Share feedback" msgstr "Visszajelzés küldése" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Hivatkozásmegosztási párbeszédablak" msgid "Share my profile" msgstr "Saját profil megosztása" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Bejegyzés „at://” URI-jének továbbítása" @@ -11169,14 +11176,14 @@ msgstr "Profil megosztása" msgid "Share QR code" msgstr "QR-kód továbbítása" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Hírfolyam továbbítása" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" -msgstr "" +msgstr "Keresés továbbítása" #: src/screens/StarterPack/StarterPackScreen.tsx:440 msgid "Share this starter pack" @@ -11186,8 +11193,8 @@ msgstr "Kezdőcsomag továbbítása" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Oszd meg ezt a kezdőcsomagot, hogy mások is csatlakozhassanak a Blueskyos közösségedhez!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Oszd meg velünk a névjegyeidet és kutatsd fel az ismerőseidet" msgid "Share your thoughts…" msgstr "Visszajelzés megadása…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "„Megosztott beállítások” tesztelő" @@ -11219,7 +11226,7 @@ msgstr "Az Apple-fiókodban szereplő korcsoport megosztásával megállapíthat msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "A Google-fiókodban szereplő korcsoport megosztásával megállapíthatjuk, hogy felnőtt vagy-e, de a <0>pontos életkorodat és születésnapodat nem. Ezek az adatok a jelenlegi eszközödön maradnak, ezért csak itt oldják fel az életkorhoz kötött funkciókat. Ha szeretnél minden platformon hozzáférést nyerni, akkor <1>igénybe veheted megbízható partnerünk, a KWS szolgáltatását is." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Megjelenítés" msgid "Show alt text" msgstr "Helyettesítő szöveg megjelenítése" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Megjelenítés mégis" @@ -11274,8 +11281,8 @@ msgstr "Lista megjelenítése mégis" msgid "Show lists of users to select from" msgstr "Választható felhasználólisták megjelenítése" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Továbbiak" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból" msgid "Show when you’re live" msgstr "Saját élő állapot megjelenítése" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "További információ a bejegyzés dátumáról" @@ -11341,15 +11348,15 @@ msgstr "További információ a bejegyzés dátumáról" msgid "Shows other accounts you can switch to" msgstr "További fiókok megjelenítése váltás céljából" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Tartalom megjelenítése" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Tartalom megjelenítése" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Kijelentkezés" msgid "Sign up" msgstr "Regisztráció" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Bejelentkezés szükséges" @@ -11469,7 +11476,7 @@ msgstr "Kihagyás" msgid "Skip contact sharing and continue to the app" msgstr "Kihagyás és az alkalmazás használatának folytatása" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Üres bejegyzések kihagyása" @@ -11487,7 +11494,7 @@ msgstr "Lépés kihagyása" msgid "slide" msgstr "csúszka" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Kisebb" @@ -11499,7 +11506,7 @@ msgstr "Emlékeztető elhalasztása" msgid "So many thoughts, you should post one" msgstr "Csak gyűlnek a gondolatok… Szeretnél közzétenni egyet?" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Közösségi oldal, amelyet Te irányítasz." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Valaki elhagyta a csoportot." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Valaki {0} emojival reagált" @@ -11554,7 +11561,7 @@ msgstr "Valaki {0} emojival reagált" msgid "Someone reacted {0} to {target}" msgstr "Valaki {0} emojival reagált erre: {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Valaki válaszolt" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Valami balul sült el. Próbáld újra" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Valami balul sült el. Próbáld újra." msgid "Something went wrong. Please try again." msgstr "Valami balul sült el. Próbáld újra." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Valami nem stimmel? Vedd fel velünk a kapcsolatot!" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Hamis/kéretlen tartalom vagy átverés" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "A megkezdett beszélgetések itt fognak megjelenni." msgid "Start a group chat" msgstr "Csoportbeszélgetés indítása" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Új csevegés indítása" @@ -11682,17 +11689,17 @@ msgstr "Személyek felvétele" msgid "Start adding people!" msgstr "Vegyél fel személyeket!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Csevegés létrehozása" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Csevegés indítása vele: {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Kezdőcsomag" @@ -11715,12 +11722,16 @@ msgstr "Kezdőcsomag – Saját" msgid "Starter pack is invalid" msgstr "Ez a kezdőcsomag érvénytelen" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Kezdőcsomagok" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Kezdőcsomagok" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "A kezdőcsomagokkal könnyen megoszthatod a kedvenc hírfolyamaidat és személyeidet." @@ -11728,7 +11739,7 @@ msgstr "A kezdőcsomagokkal könnyen megoszthatod a kedvenc hírfolyamaidat és msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Egy kezdőcsomag segítségével megoszthatod a kedvenc hírfolyamaidat és személyeidet." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Egy kezdőcsomag segítségével megoszthatod a kedvenc hírfolyamaidat és személyeidet." @@ -11742,7 +11753,7 @@ msgstr "Állapot" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "{1}/{0}. lépés" @@ -11754,7 +11765,7 @@ msgstr "Adatok törölve. Indítsd újra az alkalmazást." msgid "Stored as part of a secure code for matching with others" msgstr "Ezeket az adatokat egy titkosított kód részeként tároljuk ismerősfelkutatás céljából" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Mesekönyv" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Feliratkozás a(z) {publicationTitle} kiadványra a következőn: {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Az alábbi feljegyzési kategóriák használatához iratkozz fel a(z) @{0} nevű szolgáltatóra:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Fiók hitelesítve" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Javasolt" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Javasolt fiókok" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Szürkület" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Ez a funkció a Te országodban még nem támogatott. Próbáld újra később." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Egy felfüggesztett fiók nem vehet részt csoportbeszélgetésekben." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Egy felfüggesztett fiók nem vehet részt csevegésekben." @@ -11921,8 +11934,8 @@ msgstr "Váltás rá: {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Rendszer" @@ -11945,7 +11958,7 @@ msgstr "Társalogjatok sok szem közt." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Koppints az alábbi gombra, hogy hozzáférést biztosíts a Blueskynak a tartózkodási helyedhez. Ezzel az információval automatikusan és pontosan meghatározhatjuk a régiódban megjeleníthető tartalmakat és beállításokat." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Részletek" @@ -11976,7 +11989,7 @@ msgstr "Koppints ide a helyi menü bezárásához" msgid "Tap to copy this invite link" msgstr "Koppints ide a meghívó hivatkozásának másolásához" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Koppints ide a bezáráshoz" @@ -12003,7 +12016,7 @@ msgstr "Koppints ide a(z) „{0}” reakció eltávolításához" msgid "Tap to request access to join this group chat" msgstr "Koppints ide a csatlakozási kérelem küldéséhez" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Koppints ide az újrapróbálkozáshoz" @@ -12016,7 +12029,7 @@ msgstr "Koppints ide a(z) {0} reakció megtekintéséhez" msgid "Tap to show all reactions" msgstr "Koppints ide az összes reakció megtekintéséhez" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Koppints ide a reakciók megtekintéséhez" @@ -12032,7 +12045,7 @@ msgstr "Feladat teljesítve – 10 követés!" msgid "Task complete - 10 likes!" msgstr "Feladat teljesítve – 10 kedvelés!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" "Tanítsd meg az algoritmusnak,\n" @@ -12062,7 +12075,7 @@ msgstr "Feltételek" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12115,11 +12128,11 @@ msgstr "Ez a kezdőcsomag nem található." msgid "That username is already taken" msgstr "Ez a felhasználónév már foglalt" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Ez van, srácok!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Ez minden!" @@ -12218,7 +12231,7 @@ msgstr "Hibát tapasztaltunk a kiszolgálóval. Próbáld újra egy pár percen msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "A kezdőcsomag érvénytelen. Ha szeretnéd, törölheted a listáról." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "A helyi menühöz kapcsolódó személy" @@ -12240,7 +12253,7 @@ msgstr "A megadott ellenőrzőkód érvénytelen. Nézd meg, hogy helyes kódot msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "A hitelesítési szolgáltató képtelen volt kódot küldeni a telefonszámodra. Ellenőrizd a megadott telefonszámot, majd próbáld újra." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Téma" @@ -12268,7 +12281,7 @@ msgstr "A GIF-ek betöltése meghiúsult. Ellenőrizd az internetkapcsolatot, ma msgid "There was a problem with your internet connection, please try again" msgstr "Hálózati hiba történt. Próbáld újra" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12276,7 +12289,7 @@ msgstr "Hálózati hiba történt. Próbáld újra" msgid "There was an issue contacting the server" msgstr "Megszakadt a kapcsolat a kiszolgálóval" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Megszakadt a kapcsolat a kiszolgálóval. Ellenőrizd az internetkapcsolatot, majd próbáld újra." @@ -12285,8 +12298,8 @@ msgstr "Megszakadt a kapcsolat a kiszolgálóval. Ellenőrizd az internetkapcsol msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Az értesítések frissítése meghiúsult. Koppints ide az újrapróbálkozáshoz." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "A bejegyzések lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz." @@ -12311,7 +12324,7 @@ msgstr "A kiszolgálód adatainak lekérése meghiúsult" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "A hírfolyam eltávolítása meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12370,12 +12383,12 @@ msgstr "Ezek az alapértelmezett beállítások" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 msgid "These domains" -msgstr "" +msgstr "az alábbi tartományokból származó bejegyzések" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 msgid "These hashtags" -msgstr "" +msgstr "az alábbi címkékkel rendelkező bejegyzések" #: src/screens/Settings/FollowingFeedPreferences.tsx:66 msgid "These settings only apply to the Following feed." @@ -12384,9 +12397,9 @@ msgstr "Az alábbi beállítások csak a Követett hírfolyamra vonatkoznak." #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 msgid "These URLs" -msgstr "" +msgstr "az alábbi hivatkozásokat tartalmazó bejegyzések" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Csoporttulajdonos" @@ -12394,7 +12407,7 @@ msgstr "Csoporttulajdonos" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Már nem lesz képes ismét csatlakozni, hacsak meg nem hívod őt." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Ez a(z) {screenDescription} feljegyzést kapott:" @@ -12410,7 +12423,7 @@ msgstr "A fiók tulajdonosa ezt a fiókot automatikusnak jelölte meg." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Ez a fiók legalább egy hitelesítési javaslattal rendelkezik, de még nincs hitelesítve." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Ez a fiók azt kérte, hogy a megtekintéséhez jelentkezz be." @@ -12539,7 +12552,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ez a hírfolyam üres. Lehetséges, hogy nem követsz elég felhasználót vagy rosszul van beállítva a hírfolyam." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Ez a hírfolyam üres." @@ -12556,7 +12569,7 @@ msgstr "Ezt a csevegést a tulajdonos zárolta" msgid "This handle is reserved. Please try a different one." msgstr "Ez a felhasználónév le van foglalva. Adj meg egy másikat." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "A megadott kép nem használható. Javasolt formátumok: JPG és PNG." @@ -12598,7 +12611,7 @@ msgstr "Saját feljegyzés." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Ez a feljegyzés a teljes fiókra érvényes és minden bejegyzésén megjelenik." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Ez a feljegyző nem jelentette ki a feljegyzési kategóriáit, ezért lehet, hogy nem aktív." @@ -12623,13 +12636,13 @@ msgstr "Ez a lista üres." msgid "This message is hidden" msgstr "Rejtett üzenet" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Az üzenet el van rejtve, mivel a másik fél letiltott Téged." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Az üzenet el van rejtve, mivel letiltottad a másik felet." @@ -12643,7 +12656,7 @@ msgstr "Ez a személy letiltott Téged" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "A bejegyzés adatai szerint az eredeti létrehozási dátuma <0>{0} volt, de először ekkor jelent meg a Blueskyon: <1>{1}" @@ -12651,7 +12664,7 @@ msgstr "A bejegyzés adatai szerint az eredeti létrehozási dátuma <0>{0} msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ez a bejegyzés egy ismeretlen válaszkapu-típussal rendelkezik. Lehetséges, hogy az alkalmazás verziója elavult." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Ez a bejegyzés csak a bejelentkezett felhasználók számára látható." @@ -12663,7 +12676,7 @@ msgstr "Ezt a bejegyzést törölte a szerző" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ez a bejegyzés el lesz rejtve a hírfolyamokból és a válaszláncokból. Ez a művelet nem vonható vissza." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "A szerző letiltotta az idézést." @@ -12700,11 +12713,12 @@ msgstr "Ez a folyamat csupán néhány percet vesz igénybe." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Ez a felhasználó nem rendelkezik megjelenítendő névvel, ezért nem hitelesíthető." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Ezt a felhasználót még senki sem követi." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "A címzett letiltott Téged, ezért nem veheted fel vele a kapcsolatot." @@ -12714,6 +12728,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Ez a felhasználó letiltott Téged, ezért nem tekintheted meg a tartalmait." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "A címzett nem fogad üzeneteket, ezért nem veheted fel vele a kapcsolatot." @@ -12735,11 +12750,11 @@ msgstr "Ez a felhasználó szerepel a(z) <0>{0} c. listán, amit elnémítot msgid "This user is new here. Press for more info about when they joined." msgstr "Ez a felhasználó nemrég regisztrált. További információért koppints ide." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Ez a felhasználó még senkit sem követ." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "A videó lejátszása meghiúsult. Lehetséges, hogy a böngésző vagy rendszer nem rendelkezik a szükséges kodekkel (H.264/AAC)." @@ -12761,7 +12776,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Ez véglegesen törölni fogja a(z) <0>{currentHandle} Bluesky-fiókot és minden hozzá tartozó adatot. Ez a fiókot használó többi <1>AT Protokoll-szolgáltatást is érinti." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Ezzel @{0} el lesz távolítva a fióklistáról." @@ -12788,7 +12803,7 @@ msgstr "Válaszláncok" msgid "Threaded" msgstr "Egymásba ágyazott" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Válaszlánc-beállítások" @@ -12848,7 +12863,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "A névjegyeid mennyisége meghaladta a korlátot" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Felkapott" @@ -12860,7 +12875,7 @@ msgstr "Felkapott" msgid "Top replies first" msgstr "A legjobbra értékelt válaszok elöl" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Témakör" @@ -12895,7 +12910,9 @@ msgstr "Az ugyanazon nyelvre fordítást nem támogatja ez az eszköz." msgid "Tree view" msgstr "Ágas nézet" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Felkapott" @@ -12904,7 +12921,7 @@ msgstr "Felkapott" msgid "Trending GIFs" msgstr "Felkapott GIF-ek" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Felkapott témakörök beállításai" @@ -12920,13 +12937,13 @@ msgstr "Provokálás („trollkodás”)" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "A bizalom kapcsolatok, közösségek és egy megosztott környezet útján alakul ki, ezért bevezetjük a <0>megbízható hitelesítők rendszerét is – ezek olyan egyesületek, amelyek közvetlenül is képesek hitelesíteni másokat." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." -msgstr "" +msgstr "Próbálkozz másmilyen kifejezéssel vagy kevesebb szűrővel." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." -msgstr "" +msgstr "Próbálkozz másmilyen kifejezéssel." #: src/features/inviteFriends/InviteScannerScreen.tsx:221 #: src/features/inviteFriends/InviteScannerScreen.tsx:226 @@ -12999,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "A csatlakozási kérelmek lekérdezése meghiúsult." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Az egyik címzett nem található." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "A címzett nem található." @@ -13026,12 +13045,12 @@ msgstr "Nem elérhető" msgid "Unavailable feed information" msgstr "Nincs elérhető hírfolyam-információ" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13071,8 +13090,8 @@ msgstr "Fiók tiltásának feloldása" msgid "Unblock list" msgstr "Lista tiltásának feloldása" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13106,7 +13125,7 @@ msgstr "{0} követésének megszüntetése" msgid "Unfollow account" msgstr "Fiók követésének megszüntetése" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Követés megszüntetése" @@ -13134,7 +13153,7 @@ msgstr "Nem megfelelően megjelölt felnőtt tartalom" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Nem megfelelően megjelölt, abuzív vagy kölcsönös beleegyezés nélküli felnőtt tartalom" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Mégse tetszik" @@ -13194,7 +13213,7 @@ msgstr "Csoportbeszélgetés némításának feloldása" msgid "Unmute thread" msgstr "Válaszlánc némításának feloldása" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Videó némításának feloldása" @@ -13204,14 +13223,14 @@ msgid "Unpin" msgstr "Kitűzés feloldása" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Kitűzés feloldása" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Kitűzés feloldása a kezdőoldalról" @@ -13226,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Moderálólista kitűzésének feloldása" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "A(z) {0} hírfolyam kitűzése feloldva" @@ -13260,11 +13279,11 @@ msgstr "Leiratkozás a feljegyzőről" msgid "Unsubscribed from list" msgstr "Leiratkoztál a listáról" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "A vágólap tartalma nem támogatott." -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Nem támogatott videóformátum: {mimeType}" @@ -13330,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "A válasz láthatóságának frissítése meghiúsult" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Fénykép feltöltése" @@ -13357,7 +13376,7 @@ msgstr "Feltöltés a fájlkezelőből" msgid "Upload from Library" msgstr "Feltöltés a galériából" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIF feltöltése folyamatban…" @@ -13371,7 +13390,7 @@ msgstr "Képek feltöltése folyamatban…" msgid "Uploading link thumbnail..." msgstr "Hivatkozás indexképének feltöltése folyamatban…" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Videó feltöltése folyamatban…" @@ -13410,7 +13429,7 @@ msgstr "A másik alkalmazásba a felhasználóneveddel és ezzel jelentkezhetsz msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Add meg a fiókod e-mail-címét vagy egy másik, tulajdonodat képző e-mail-címet, arra az esetre, ha a jövőben a KWS-nek vagy a Blueskynak fel kell vennie Veled a kapcsolatot." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "felhasználó" @@ -13512,7 +13531,7 @@ msgstr "A hitelesítés meghiúsult. Próbáld újra." msgid "Verification settings" msgstr "Hitelesítési beállítások" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Hitelesítési beállítások" @@ -13620,7 +13639,7 @@ msgstr "Videó" msgid "Video failed to process" msgstr "A videó feldolgozása meghiúsult" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Videófolyam" @@ -13630,24 +13649,24 @@ msgid "Video from {0}: {text}" msgstr "{0} videója: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "{0} videója. Koppints ide a lejátszáshoz/szüneteltetéshez." #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videojátékok" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Videó szüneteltetve" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Videó lejátszása folyamatban" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "A videó nem található." @@ -13655,7 +13674,7 @@ msgstr "A videó nem található." msgid "Video settings" msgstr "Videóbeállítások" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "A videó feltöltése sikeresen befejeződött" @@ -13664,17 +13683,17 @@ msgstr "A videó feltöltése sikeresen befejeződött" msgid "Video: {0}" msgstr "Videó: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videók" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "A videónak 3 percnél rövidebbnek kell lennie." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Megtekintés" @@ -13693,9 +13712,9 @@ msgstr "{0} profilképének megtekintése" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0} profiljának megtekintése" @@ -13726,13 +13745,13 @@ msgstr "További részleteket a blogbejegyzésben olvashatsz (angolul)" msgid "View debug entry" msgstr "Hibakeresési bejegyzés megtekintése" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Részletek" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Teljes válaszlánc megtekintése" @@ -13763,7 +13782,7 @@ msgstr "Továbbiak megjelenítése" msgid "View more trending videos" msgstr "További felkapott videók megjelenítése" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Bejegyzés megtekintése" @@ -13800,11 +13819,11 @@ msgstr "A csoportbeszélgetések meghívójának megtekintése" msgid "View the labeling service provided by @{0}" msgstr "A(z) {0} által kínált feljegyzési szolgáltatás megtekintése" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Felhasználó hitelesítéseinek megtekintése" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "A hírfolyamot kedvelő felhasználók megtekintése" @@ -13833,7 +13852,7 @@ msgstr "Moderálólisták megtekintése" msgid "View your muted accounts" msgstr "Elnémított fiókok megjelenítése" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Saját hitelesítések megtekintése" @@ -14037,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Hálózati hiba történt. Próbáld újra." #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Hálózati hiba történt. Próbáld újra." @@ -14045,7 +14064,7 @@ msgstr "Hálózati hiba történt. Próbáld újra." msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Bevezetjük a hitelesítés egy új formáját: egy könnyen látható jelvényt." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Örvendünk, hogy megismerhetünk!" @@ -14066,13 +14085,15 @@ msgstr "Sajnáljuk, de a lista lekérése meghiúsult. Ha a probléma fennáll, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Sajnáljuk, de az elnémított szavak listájának betöltése meghiúsult. Próbáld újra." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "Sajnáljuk, de a keresés meghiúsult." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Sajnáljuk, de a keresés meghiúsult. Próbáld újra pár percen belül." @@ -14080,7 +14101,7 @@ msgstr "Sajnáljuk, de a keresés meghiúsult. Próbáld újra pár percen belü msgid "We're sorry, you cannot access this screen at this time." msgstr "Sajnáljuk, de jelenleg nem férhetsz hozzá ehhez az oldalhoz." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sajnáljuk, de törölték a bejegyzést, amire válaszolnál." @@ -14136,7 +14157,7 @@ msgid "what’s up" msgstr "mi a helyzet" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Mi a helyzet?" @@ -14163,7 +14184,7 @@ msgid "Who can verify?" msgstr "Ki hitelesíthet?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Hoppá!" @@ -14222,21 +14243,21 @@ msgstr "Szeretnéd letiltani ezt a felhasználót és/vagy elhagyni a beszélget msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Szeretnéd piszkozatként menteni ezt a bejegyzést, mielőtt megnyitod a további piszkozataidat?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Szeretnéd piszkozatként menteni ezt a bejegyzést?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Bejegyzés írása" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Bejegyzés írása" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Válasz írása" @@ -14302,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "A helyi törvények szerint a Bluesky haszálata előtt igazolnod kell az életkorodat." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0} le van tiltva" @@ -14344,7 +14365,7 @@ msgstr "Az élő adásod véget ért" msgid "You are not allowed to upload videos." msgstr "Nincs jogosultságod a videófeltöltésre." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Még senkit sem követsz" @@ -14364,7 +14385,7 @@ msgstr "Jelenleg hitelesítve vagy. Ha megváltoztatod a megjelenítendő nevede msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Jelenleg hitelesítve vagy. Ha megváltoztatod a felhasználónevedet, azzal elveszik a hitelesítésed. <0>További információ." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "A megjelenített érdeklődési köröket bármikor szerkesztheted a Tartalom és mellékletek menüben." @@ -14408,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Mostantól bejelentkezhetsz az új jelszóval." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Egy bejegyzéshez csak {MAX_GALLERY_IMAGES, plural, other {# fénykép}} csatolható" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Egy piszkozat legfeljebb 1000 karakter hosszú lehet." @@ -14441,9 +14462,9 @@ msgstr "Továbbra is képes leszel az üzenetek elolvasására, de újakat nem t msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Egy bejegyzéshez {MAX_GALLERY_IMAGES, plural, other {# kép}} csatolható." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Biztos vagy benne? Ezt a beállítást később is módosíthatod." @@ -14453,6 +14474,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Egy üzenethez legfeljebb {EMOJI_REACTION_LIMIT, plural, one {#} other {#}} reakciót lehet csatolni" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Még nem hozhatsz létre csoportbeszélgetést." @@ -14557,7 +14579,7 @@ msgstr "Visszaigazoltad az e-mail-címedet – most már bezárhatod ezt az abla msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Átmenetileg elérted a videófeltöltési korlátot. Próbáld újra később." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "A piszkozat tartalma megváltozott. Szeretnéd menteni?" @@ -14565,7 +14587,7 @@ msgstr "A piszkozat tartalma megváltozott. Szeretnéd menteni?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "A piszkozat tartalma megváltozott. Szeretnéd menteni mielőtt megnyitod a további piszkozataidat?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Még egy kezdőcsomagot sem hoztál létre." @@ -14616,7 +14638,7 @@ msgstr "A csomag legfeljebb {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK msgid "You may only add up to 3 feeds" msgstr "Legfeljebb 3 hírfolyamot jelölhetsz ki." -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Tagokat csak a csoport tulajdonosa távolíthat el." @@ -14624,7 +14646,7 @@ msgstr "Tagokat csak a csoport tulajdonosa távolíthat el." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "A Bluesky használatához be kell töltened a 13. életévedet. További információért olvasd el a <0>felhasználási feltételeket." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Egy kezdőcsomag létrehozásához legalább hét különböző személyt követned kell." @@ -14641,7 +14663,7 @@ msgstr "A galériához hozzáférés szükséges." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Az e-mailes kétlépcsős azonosítás bekapcsolása előtt vissza kell igazolnod a címedet." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Saját csoport" @@ -14655,7 +14677,7 @@ msgid "You probably want to restart the app now." msgstr "Lehetséges, hogy most előnyös lenne bezárni és újra megnyitni az alkalmazást." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "{0} emojival reagáltál" @@ -14669,15 +14691,15 @@ msgstr "{0} emojival reagáltál erre: {target}" msgid "You recently changed your birthdate" msgstr "Nemrég megváltoztattad a születési dátumodat" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Válaszoltál" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Válaszoltál neki: {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Válaszoltál magadnak" @@ -14717,11 +14739,11 @@ msgstr "A jövőben képtelen leszel ismét csatlakozni, hacsak meg nem hívnak. msgid "You: {message}" msgstr "Én: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Az ajánlott felhasználókat és hírfolyamokat a regisztráció befejeztétől fogva követni fogod." -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "A fiókod elkészültével követni fogod a javasolt felhasználókat!" @@ -14793,7 +14815,7 @@ msgstr "Elérted az aktív tartalom végét." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Elérted a hírfolyamod végét. Kövess még több fiókot!" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "A piszkozattár megtelt." @@ -14801,9 +14823,9 @@ msgstr "A piszkozattár megtelt." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Túllépted az egyidejűleg megengedett legtöbb lekérést. Próbáld újra később." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." -msgstr "" +msgstr "Legfeljebb {MAX_FILTERS, plural, other {#}} különböző szűrőt lehet megadni. Szerkessz egy létező szűrőt ahelyett, hogy újat hoznál létre." #: src/components/FocusScope/index.tsx:88 msgid "You've reached the start of the active content." @@ -14817,11 +14839,11 @@ msgstr "Elérted a napi videófeltöltési korlátot (bájthatár meghaladva)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Elérted a napi videófeltöltési korlátot (videómennyiség meghaladva)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Kifogytunk a videókból. Mit szólnál egy kis szünethez?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Saját fiók" @@ -14837,11 +14859,11 @@ msgstr "A fiókod felfüggesztésre került" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A fiókod még nem elég idős a videók feltöltéséhez. Próbáld újra később." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Új fiók" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Csoportbeszélgetés létrehozásához a fiókodnak legalább 7 naposnak kell lennie." @@ -14932,8 +14954,8 @@ msgstr "E-mail-cím alapján nem lehet megállapítani a tárhelyszolgáltatót, msgid "Your hosting provider is detected automatically from the username you enter." msgstr "A tárhelyszolgáltató a felhasználónév alapján történik megállapításra." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14945,7 +14967,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Érdeklődési körök frissítve" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Az érdeklődési köreid megadásával javíthatod az élményedet!" @@ -14969,11 +14991,11 @@ msgstr "A jelszóváltoztatás sikeresen megtörtént. A legközelebbi bejelentk msgid "Your password must be at least 8 characters long." msgstr "A jelszónak legalább 8 karakter hosszúnak kell lennie." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Bejegyzés elküldve" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Bejegyzések elküldve" @@ -14982,11 +15004,11 @@ msgid "Your preferred language" msgstr "Az előnyben részesített nyelved" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Saját profilkép" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "A saját profilképed más fiókok profilképeivel körülvéve, többrétegű gyűrűs elrendezésben" @@ -14994,7 +15016,7 @@ msgstr "A saját profilképed más fiókok profilképeivel körülvéve, többr msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "A profilod, bejegyzéseid, hírfolyamaid és listáid mostantól el vannak rejtve a többi Bluesky-felhasználó elől. A fiókod újraaktiválásához jelentkezz be." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Válasz elküldve" @@ -15007,7 +15029,7 @@ msgstr "A jelentés címzettje: <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Az érdeklődési köreid megadásával személyre szabhatod a javasolt tartalmakat." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "A közzétételre váró bejegyzések között vannak üresek is. Ezek kihagyásra kerülnek és a maradék egy válaszláncba lesz összefűzve." diff --git a/src/locale/locales/ia/messages.po b/src/locale/locales/ia/messages.po index c2ab9cb7b4..b741b8dbb7 100644 --- a/src/locale/locales/ia/messages.po +++ b/src/locale/locales/ia/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ia\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Interlingua\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(include contento incorporate)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# appreciation} other {# appreciationes}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ha reagite con {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ha verificate tu conto" msgid "{following} following" msgstr "{following} sequitos" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Non es possibile inviar messages a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# elemento non legite} other {# element msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}h retro" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} es un verificator de confidentia" @@ -842,13 +795,13 @@ msgstr "Verificationes de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {sequito} other {sequitos}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 dies" msgid "7 days" msgstr "7 dies" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "Un nove forma de verification" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Accessibilitate" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Parametros de accessibilitate" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Conto silentiate per lista" msgid "Account options" msgstr "Optiones de conto" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Conto removite del accesso rapide" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Contos con un marca de verification blau festonate <0><1/> pote verificar alteres. Iste verificatores de confidentia es seligite per Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Activitates de alteres" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Adder texto alternative (optional)" msgid "Add another account" msgstr "Adder altere conto" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Adder un altere publication" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Adder reaction con emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Adde iste canal a tu canales" msgid "Add to lists" msgstr "Adder al listas" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Adulto" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permitte accesso a messages directe" msgid "Already have a code?" msgstr "Ha tu jam un codice?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "Un e-mail ha essite inviate a {0}. Illo include un codice de confirmatio msgid "An error has occurred" msgstr "Un error ha occurrite" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Un error ha occurrite" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "Un error ha occurrite durante le recuperation del canal." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Un error ha occurrite durante le generation de tu pacchetto de initio. Vole tu tentar lo de novo?" @@ -1640,11 +1600,11 @@ msgstr "Un error ha occurrite durante le generation de tu pacchetto de initio. V msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta lo de novo plus tarde." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta lo de novo." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Un problema non includite in iste optiones" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Un problema ha occurrite durante le tentativa de aperir le chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "Quicunque qui me seque" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Le nomines de contrasigno de application debe haber al minus 4 character msgid "App passwords" msgstr "Contrasignos de application" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasignos de application" @@ -1891,8 +1849,8 @@ msgstr "Facer appello de iste decision" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archivate desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publication archivate" @@ -1980,7 +1938,7 @@ msgstr "Es tu secur de voler remover isto de tu canales?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Es tu secur de voler discartar iste publication?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Reproducer automaticamente videos e GIFs" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Ante crear un publication o responder, tu debe verificar tu e-mail." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Ante crear un pacchetto de initio, tu debe primo verificar tu adresse de e-mail." @@ -2135,10 +2097,10 @@ msgstr "Ante que tu pote reciper notificationes pro le publicationes de {name}, #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Data de nascentia" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blocate" msgid "Blocked accounts" msgstr "Contos blocate" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contos blocate" @@ -2282,7 +2250,7 @@ msgstr "Contos blocate non pote responder in tu filos, mentionar te o interager 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 "Contos blocate non pote responder in tu filos, mentionar te o interager con te de alcun altere maniera. Tu non videra lor contento e illes non potera vider le tue." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blocar non impedi que iste etiquettator applica etiquettas a tu conto." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non pote confirmar le authenticitate del data declarate." @@ -2330,7 +2299,7 @@ msgstr "Bluesky es un rete aperte ubi tu pote eliger tu fornitor de albergamento msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky es un rete aperte ubi tu pote eliger tu proprie fornitor. Si tu es nove hic, nos recommenda eliger le option predefinite, Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky es melior con amicos!" @@ -2358,7 +2327,7 @@ msgstr "Conditiones de servicio de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky eligera un insimul de contos recommendate inter le personas in tu rete." @@ -2425,24 +2394,25 @@ msgstr "Percurre plus suggestiones super le pagina Explorar" msgid "Browse other feeds" msgstr "Percurrer altere canales" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Percurrer publicationes super {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Percurrer publicationes etiquettate con {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Percurrer le pacchetto de initio {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Percurrer topico {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Percurrer le topico {displayName}" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Per {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Per <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Creante un conto, tu accepta le <0>conditiones de servicio e le <1>p msgid "By creating an account you agree to the <0>Terms of Service." msgstr "In crear un conto, tu accepta le <0>conditiones de servicio." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Per te" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camera" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Cancellar le reactivation e clauder session" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancellar cerca" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat silentiate" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Cassa de entrata de requestas de chat" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Requestas de chat" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Configurationes de Chat" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat dissilentiate" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2808,7 @@ msgstr "Elige methodo de verification de dominio" msgid "Choose Feeds" msgstr "Eliger canales" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Elige por me" @@ -2854,7 +2825,7 @@ msgstr "Elige personas" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Elige iste color como tu avatar" @@ -2879,7 +2850,7 @@ msgstr "Elige tu proprie linea de tempore! Le canales construite per le communit msgid "Choose your password" msgstr "Elige tu contrasigno" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Elige tu nomine de usator" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clicca pro tentar inviar le message de novo" @@ -3003,7 +2974,7 @@ msgstr "Clicca pro tentar inviar le message de novo" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Clicca pro tentar inviar le message de novo" msgid "Close" msgstr "Clauder" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Clauder quadro de dialogo active" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Clauder menu" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Clauder iste quadro de dialogo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Claude le alerta de actualisation de contrasigno" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Claude le fenestra de redaction e discarta le minuta del publication" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modo de color" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Bandas designate" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directivas del communitate" @@ -3141,7 +3112,7 @@ msgstr "Directivas del communitate" msgid "Complete onboarding and start using your account" msgstr "Concluder le apprentissage e comenciar a usar tu conto" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa le defia" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Scriber un nove publication" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}" @@ -3160,11 +3131,11 @@ msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}" msgid "Compose reply" msgstr "Scriber un responsa" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Compression del video in curso..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contactar supporto" @@ -3253,7 +3224,7 @@ msgstr "Contento e multimedia" msgid "Content and media" msgstr "Contento e multimedia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contento e multimedia" @@ -3265,10 +3236,6 @@ msgstr "Contento blocate" msgid "Content filters" msgstr "Filtros de contento" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Contento de tote le rete que poterea placer te." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Advertimento de contento" msgid "Content warnings" msgstr "Advertimentos de contento" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fundo de menu contextual. Clicca pro clauder le menu." @@ -3302,7 +3269,7 @@ msgstr "Fundo de menu contextual. Clicca pro clauder le menu." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Continuar filo..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Version de compilation copiate al area de transferentia" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copiar contrasigno de application" msgid "Copy at:// URI" msgstr "Copiar URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiar le DID del autor" @@ -3449,10 +3416,10 @@ msgstr "Copiar ligamine" msgid "Copy link to list" msgstr "Copiar ligamine al lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar ligamine al publication" @@ -3470,8 +3437,8 @@ msgstr "Copiar ligamine al pacchetto de initio" msgid "Copy message text" msgstr "Copiar message de texto" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiar URI at:// del publication" @@ -3490,7 +3457,7 @@ msgstr "Copiar le valor del registro TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica de derectos de autor" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Non ha essite possibile partir del chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Non ha essite possibile cargar le canal" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Non ha essite possibile silentiar le chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crear" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Crear un codice QR pro un pacchetto de initio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crear un pacchetto de initio" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea un pacchetto de initio pro me" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Crear conto" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crear un conto" @@ -3666,15 +3633,15 @@ msgstr "Crear un conto" msgid "Create an account without using this starter pack" msgstr "Crear un conto sin usar iste pacchetto de initio" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "In vice, crear un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crear un altere" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Obscur" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Obscur" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Thema obscur" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Predefinite" @@ -3894,7 +3861,7 @@ msgstr "Deler mi conto" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Deler publication" @@ -3988,7 +3955,7 @@ msgstr "Dialogo: adjusta qui pote interager con iste publication" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Tenue" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "Disactivar 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Disactivate" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Discartar" msgid "Discard changes?" msgstr "Discartar cambiamentos?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Discartar minuta?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Discartar publication?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Discoragiar que applicationes monstra mi conto a usatores sin session aperte" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Discoragiar que applicationes monstra mi conto a usatores sin session ap msgid "Discover new custom feeds" msgstr "Discoperi nove canales personalisate" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Discoperir nove canales" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Clauder" @@ -4103,19 +4070,19 @@ msgstr "Clauder" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Clauder error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Clauder le guida de introduction" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Clauder interesses" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Monstrar insignias plus grande de texto alternative" msgid "Display name" msgstr "Nomine a monstrar" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Preste" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tocca duo vices o preme longemente le message pro adder un reaction" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tocca duo vices pro clauder le quadro de dialogo" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tocca duo vices pro appreciar" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Modificar imagine" msgid "Edit interaction settings" msgstr "Modificar parametros de interaction" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Modificar interesses" @@ -4397,7 +4365,7 @@ msgstr "Modificar stato in directo" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Modificar mi canales" @@ -4406,6 +4374,11 @@ msgstr "Modificar mi canales" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Modificar personas" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Modificar qui pote responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Modificar tu pacchetto de initio" @@ -4500,8 +4473,8 @@ msgstr "Codice HTML de incorporation" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incorporar publication" @@ -4509,7 +4482,7 @@ msgstr "Incorporar publication" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorporar iste publication in tu sito web. Basta copiar le sequente fragmento e collar lo in le codice HTML de tu sito web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reproductor de video incorporate" @@ -4533,7 +4506,7 @@ msgstr "Activar contento pro adultos" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Activar contento multimedial externe" msgid "Enable media players for" msgstr "Activar reproductores multimedial pro" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activa le notificationes de un conto visitante su profilo e premente le <0>icone de campana <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Activar notificationes push" @@ -4581,7 +4555,7 @@ msgstr "Activar videos de tendentia in tu canal Discoperir" msgid "Enabled" msgstr "Activate" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin de canal" @@ -4608,7 +4582,7 @@ msgstr "Insere un parola o etiquetta" msgid "Enter code" msgstr "Insere codice" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Passar a plen schermo" @@ -4650,11 +4624,11 @@ msgstr "Insere tu nomine de usator e contrasigno" msgid "Enters full screen" msgstr "Passa a plen schermo" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Intertenimento" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4658,7 @@ msgstr "Un error ha occurrite durante le salvamento del file" msgid "Error receiving captcha response." msgstr "Error durante le reception del responsa al captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Error: {error}" @@ -4696,8 +4670,8 @@ msgstr "Totos pote responder" msgid "Everybody can reply to this post." msgstr "Totos pote responder a iste publication." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Totes" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Totes" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Tote le resto" @@ -4738,7 +4712,7 @@ msgstr "Excluder usatores que tu seque" msgid "Excludes users you follow" msgstr "Exclude al usatores que tu seque" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Exir del schermo plen" @@ -4755,11 +4729,11 @@ msgstr "Expander lista de usatores" msgid "Expand or collapse the full post you are replying to" msgstr "Expander o contraher le publication integre al qual tu responde" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expander le texto del publication" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Expande o contrahe le texto del publication" @@ -4802,15 +4776,15 @@ msgstr "Multimedia explicite o potentialmente perturbator." msgid "Explicit sexual images." msgstr "Imagines sexual explicite." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "Multimedia externe" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Le contento multimedial externe pote permitter que sitos web collige information super te e tu dispositivo. Necun information es inviate o requestate usque tu preme le button “reproducer”." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferentias de multimedia externe" @@ -4886,7 +4860,7 @@ msgstr "Non ha essite possibile cambiar le pseudonymo. Tenta de novo." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Non ha essite possibile cargar le conversationes" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Non ha essite possibile cargar le preferentias de canales" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Non ha essite possibile cargar le parametros de notification." @@ -5012,14 +4987,14 @@ msgstr "Non ha essite possibile cargar le preferentia." msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Non ha essite possibile cargar le canales suggerite" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Non ha essite possibile cargar le suggestiones de usatores a sequer" @@ -5027,12 +5002,12 @@ msgstr "Non ha essite possibile cargar le suggestiones de usatores a sequer" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Canal" @@ -5212,7 +5187,7 @@ msgstr "Creator del canal" msgid "Feed identifier" msgstr "Identificator del canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu de canal" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Canales actualisate!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Canales que pote interessar te." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Obtener actualisation" @@ -5273,11 +5244,11 @@ msgstr "Obtener actualisation" msgid "File saved successfully!" msgstr "File salvate con successo!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrar qui pote optar pro reciper notificationes de tu activitate" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrar de qui tu recipe notificationes" @@ -5352,8 +5323,8 @@ msgstr "Trovar contos a sequer" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Sequer {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Sequer {handle}" @@ -5453,11 +5424,11 @@ msgstr "Sequer {handle}" msgid "Follow 10 accounts" msgstr "Seque 10 contos" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Seque 7 contos" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Sequitores de @{0} que tu cognosce" @@ -5544,7 +5515,7 @@ msgstr "Sequitores que tu cognosce" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Sequente {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Sequente {handle}" @@ -5578,21 +5549,21 @@ msgstr "Sequente {handle}" msgid "Following feed preferences" msgstr "Preferentias del canal Sequente" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferentias del canal Sequente" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Te seque" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Typo de litteras" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Dimension de typo de litteras" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Pro rationes de securitate, tu non potera visualisar isto de novo. Si tu perde iste contrasigno del app, tu debera generar un nove." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pro le melior experientia, nos recommenda usar le fonte del thema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Pro te" @@ -5628,7 +5599,7 @@ msgstr "Pro te" msgid "Forever" msgstr "Pro sempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Tu ha oblidate tu contrasigno?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5647,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generar un pacchetto de initio" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Obtener adjuta" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Reciper notificationes quando le personas te seque." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Reciper notificationes quando le personas apprecia tu publicationes." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Reciper notificationes quando le personas te mentiona." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Reciper notificationes quando le personas cita tu publicationes." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Reciper notificationes quando le personas responde a tu publicationes." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Reciper notificationes quando le personas republica tu publicationes." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Reciper notificationes de nove publicationes" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Reciper notificationes de nove publicationes de {name}" @@ -5799,11 +5772,11 @@ msgstr "Comenciar" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Da un facie a tu profilo" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Entrar in directo per" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Tu ha un codice? <0>Clicca hic." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Problemas?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Adjuta" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Adjuta le personas a saper que tu non es un bot cargante un photo o creante un avatar." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "Occultate" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Occultate per tu parametros de moderation." @@ -6148,9 +6122,9 @@ msgstr "Occultate per tu parametros de moderation." msgid "Hidden list" msgstr "Lista occultate" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Lista occultate" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Occultar" @@ -6198,7 +6172,7 @@ msgstr "Occultar le responsa pro totes" msgid "Hide reply for me" msgstr "Ocultar le responsa pro me" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Occultar iste carta" @@ -6218,12 +6192,12 @@ msgstr "Occultar iste responsa?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Occultar tendentias" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Occultar tendentias?" @@ -6240,7 +6214,7 @@ msgstr "Occultar lista de usatores" msgid "Hide verification badges" msgstr "Occultar insignias de verification" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Occulta le contento" @@ -6293,8 +6267,8 @@ msgstr "Le systema non ha succedite a cargar iste servicio de moderation." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Un momento! Nos concede gradualmente le accesso al video, e tu attende ancora in le cauda. Reveni tosto!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Calide" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "Si tu actualisa tu adresse de e-mail, le 2FA per e-mail essera disactiva msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si tu vole cambiar tu contrasigno, nos te inviara un codice pro verificar que iste conto es tue." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Si tu vole restringer qui pote reciper notificationes del activitates de tu conto, tu pote cambiar lo in <0>Parametros → Privatessa e securitate." @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "Cassa de entrata vacue!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Tu es le unic al momento! Adde plus personas a tu pacchetto de initio cercante hic supra." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID del processo: {0}" @@ -6816,8 +6788,8 @@ msgstr "Participar al conversation" msgid "Journalism" msgstr "Journalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etiquettate per {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etiquettate per le autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquettas" @@ -6852,7 +6824,7 @@ msgstr "Etiquettas addite" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Le etiquettas es annotationes super usatores e contento. Illos pote esser usate pro occultar, advertir e categorisar le rete." @@ -6864,7 +6836,7 @@ msgstr "Etiquettas super tu conto" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Configurationes de lingua" @@ -6874,7 +6846,7 @@ msgstr "Configurationes de lingua" msgid "Languages" msgstr "Linguas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Plus grande" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Ultime" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Saper plus" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Saper plus super le auto-albergamento de tu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Saper plus super le moderation applicate a iste contento" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Saper plus super iste advertimento" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Saper plus." @@ -6993,8 +6965,8 @@ msgstr "Partir" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Quitar Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "remane." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lassa me eliger" @@ -7057,7 +7029,7 @@ msgstr "Vamos!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Clar" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Clar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Appreciar" @@ -7076,7 +7048,7 @@ msgstr "Appreciar" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Appreciar ({0, plural, one {# appreciation} other {# appreciationes}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Appreciar 10 publicationes" @@ -7085,7 +7057,7 @@ msgstr "Appreciar 10 publicationes" msgid "Like 10 posts to train the Discover feed" msgstr "Apprecia 10 publicationes pro trainar le canal Discoperir" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Appreciar iste canal" @@ -7093,8 +7065,8 @@ msgstr "Appreciar iste canal" msgid "Like this labeler" msgstr "Appreciar iste etiquettator" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Appreciate per" @@ -7111,27 +7083,45 @@ msgstr "Appreciate per" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Appreciate per {0, plural, one {# usator} other {# usatores}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Appreciate per {likeCount, plural, one {# usator} other {# usatores}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Appreciationes" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Appreciationes de tu republicationes" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Appreciationes de iste publication" @@ -7144,7 +7134,7 @@ msgstr "Linear" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista dissilentiate" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "IN DIRECTO" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "Ligamine al diffusion in directo" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Cargar plus" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Cargar plus canales suggerite" @@ -7292,8 +7282,8 @@ msgstr "Cargar plus canales suggerite" msgid "Load new notifications" msgstr "Cargar nove notificationes" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Registro" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "Ajustar le parametros de e-mail pro tu conto" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Face un pro me" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "Marcar toto como legite" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marcar como legite" msgid "Marked all as read" msgstr "Marcate toto como legite" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "Forsan plus tarde" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Contento multimedial que pote perturbar o esser innapropriate pro certe publicos." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "usatores mentionate" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mentiones" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Message delite" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "Optiones de messages" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Messages" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -7636,7 +7630,7 @@ msgstr "Lista de moderation actualisate" msgid "Moderation lists" msgstr "Listas de moderation" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de moderation" @@ -7645,7 +7639,7 @@ msgstr "Listas de moderation" msgid "moderation settings" msgstr "parametros de moderation" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Statos de moderation" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Contos silentiate" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contos silentiate" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Non importa, crea un pseudonymo pro me" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nove" @@ -7893,11 +7886,11 @@ msgstr "Nove {postsCount, plural, one {publication} other {publicationes}} de {f #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nove chat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Nove function" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nove sequitores" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Nove lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Nove contrasigno" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nove publication" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Responsas plus nove primo" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Novas" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Proxime imagine" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "Expiration non definite" msgid "No feeds found. Try searching for something else." msgstr "Necun canal trovate. Tenta cercar un altere cosa." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "Necun imagine" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Necun appreciation ancora" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Non plus sequente {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Ancora sin messages" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "Necun publication hic" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Necun citation ancora" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Necun resultato" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Necun resultato" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Necun resultato pro \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Necun resultato trovate" msgid "No results found for \"{query}\"" msgstr "Necun resultato trovate pro \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Necun resultato." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "No, gratias" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Necuno" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Necuno ha ancora appreciate isto. Tu poterea esser le prime!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Necuno ha ancora citate isto. Tu poterea esser le prime!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Nuditate non sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Non trovate" @@ -8333,7 +8330,7 @@ msgstr "Nota super compartimento" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky es un rete aperte e public. Iste parametro solmente limita le visibilitate de tu contento super le application e le sito web de Bluesky, e altere applicationes pote non respectar iste parametro. Tu contento pote ancora esser monstrate a usatores sin session aperte per altere applicationes e sitos web." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: Iste publication solmente es visibile a usatores con session aperte." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Parametros de notification" @@ -8353,11 +8350,12 @@ msgstr "Parametros de notification" msgid "Notification sounds" msgstr "Sonos de notification" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Oh no!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "OK" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Reinitialisation del apprentissage" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Manca texto alternative a un o plus GIFs." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Manca texto alternative a un o plus imagines." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Manca texto alternative a un o plus videos." @@ -8471,7 +8471,7 @@ msgstr "Solmente {0} pote responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Solmente files WebVTT (.vtt) es supportate" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ops!" @@ -8544,7 +8544,7 @@ msgstr "Ops!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Aperir creator de avatar" @@ -8570,21 +8570,22 @@ msgstr "Aperir optiones de conversation" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Aperir le menu lateral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Aperir selector de emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Aperir schermo de information de canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Aperir menu de optiones de canal" @@ -8627,7 +8628,7 @@ msgstr "Aperir pagina de depuration del moderation" msgid "Open muted words and tags settings" msgstr "Aperir parametros de parolas e etiquettas silentiate" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Aperir pacchetto" @@ -8699,7 +8700,7 @@ msgstr "Aperi detalios additional pro un entrata de depuration" msgid "Opens alt text dialog" msgstr "Aperi dialogo de texto alternative" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Aperi le camera super le dispositivo" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Aperi le fluxo pro crear un nove conto Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Aperi le fluxo pro aperir session con tu conto Bluesky existente" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Contrasigno actualisate!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausar" @@ -8925,12 +8926,12 @@ msgstr "Pausar" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personas" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personas sequite per @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personas qui seque @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Personas que io seque" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Imagines destinate a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar canal" @@ -9034,7 +9035,7 @@ msgstr "Fixar canal" msgid "Pin to home" msgstr "Fixar al initio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixar al initio" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Fixate" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Fixate {0} al Initio" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Fixate in tu canales" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reproducer" @@ -9076,8 +9077,8 @@ msgstr "Reproducer {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproducer video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politica" @@ -9269,7 +9270,7 @@ msgstr "Politica" msgid "Porn" msgstr "Pornographia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Publication" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar toto" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Publication blocate" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Publication de @{0}" @@ -9340,7 +9341,7 @@ msgstr "Publication occultate per te" msgid "Post interaction settings" msgstr "Parametros de interaction del publication" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Parametros de interaction del publication" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Publication fixate" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Publication disfixate" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicationes" @@ -9398,6 +9396,10 @@ msgstr "Publicationes pote esser silentiate secundo lor texto, lor etiquettas, o msgid "Posts hidden" msgstr "Publicationes occultate" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Ligamine potentialmente fallace" @@ -9449,20 +9451,21 @@ msgstr "Privatessa" msgid "Privacy and security" msgstr "Privatessa e securitate" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privatessa e securitate" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Parametros de privatessa e securitate" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Politica de privatessa" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Processante video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listas public e compartibile de usatores a silentiar o blocar in massa." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicar" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicar publicationes" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicar responsas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicar responsa" @@ -9599,12 +9602,12 @@ msgstr "Citationes disactivate" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citationes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citationes de iste publication" @@ -9647,7 +9650,7 @@ msgstr "Reactivar tu conto" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Leger publication del blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Leger minus" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Leger plus" @@ -9687,11 +9690,11 @@ msgstr "Lege le politica de privatessa de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Lege le conditiones de servicio de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recommendate" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconnecter" @@ -9748,7 +9747,7 @@ msgstr "Rejectar requesta de chat" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recargar conversationes" @@ -9766,7 +9765,7 @@ msgstr "Recargar conversationes" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Remover" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Remover conto" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Remover de mi canales" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Remover del accesso rapide?" @@ -9862,7 +9861,7 @@ msgstr "Remover del accesso rapide?" msgid "Remove from saved feeds" msgstr "Remover de tu canales salvate" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Remover imagine" msgid "Remove live status" msgstr "Remover stato in directo" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Removite del lista" msgid "Removed from saved feeds" msgstr "Removite del canales salvate" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Responsas" @@ -10037,7 +10037,7 @@ msgstr "Responsas a iste publication es disactivate." msgid "Reply" msgstr "Responsa" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responsa" @@ -10098,8 +10098,8 @@ msgstr "Signalar conversation" msgid "Report dialog" msgstr "Signalar dialogo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Signalar canal" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republicate per te" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Republicationes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicationes de iste publication" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Republicationes de tu republicationes" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Tenta de novo le ultime action, que ha generate un error" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Retorna al pagina de initio" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Retorna al pagina precedente" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salvar cambiamentos" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Salvar codice QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Salvar in mi canales" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Canales salvate" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Salvate in tu canales" @@ -10520,8 +10520,8 @@ msgstr "Salvate in tu canales" msgid "Say hello!" msgstr "Dice hallo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Scientia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Rolar al alto" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cercar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cercar publicationes de @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Cercar canales que tu vole suggerer a alteres." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Cercar plus contos" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Cercar plus canales" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cercar GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Vider offertas de empleo a Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Cursor de recerca. Usa le claves con flechas pro avantiar e retroceder, e spatio pro reproducer/pausar" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Seliger un color" @@ -10764,11 +10769,11 @@ msgstr "Seliger conto" msgid "Select an app language" msgstr "Selige un lingua pro le application" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Seliger un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Seliger un emoji" @@ -10780,12 +10785,13 @@ msgstr "Selige un option" msgid "Select app language" msgstr "Seliger le lingua del application" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Seliger GIF" msgid "Select GIF \"{0}\"" msgstr "Seliger GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "Seliger le lingua principal" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Seliger le emoji {emojiName} como tu avatar" @@ -10945,7 +10951,8 @@ msgstr "Inviar message" msgid "Send post to {name}" msgstr "Inviar le publication a {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Inviar message a..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Inviar e-mail de verification" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Inviar via message directe" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Defini email pro reinitialisation de contrasigno" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Parametros" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Parametros pro le activitate de alteres" @@ -11036,49 +11043,49 @@ msgstr "Parametros pro le activitate de alteres" msgid "Settings for allowing others to be notified of your posts" msgstr "Parametros pro permitter que alteres sia notificate de tu publicationes" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Parametros pro notificationes de appreciationes" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Parametros pro notificationes de mentiones" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Parametros pro notificationes de nove sequitor" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Parametros pro notificationes de tote le resto" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Parametros pro notificationes de appreciationes de tu republicationes" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Parametros pro notificationes de republicationes de tu republicationes" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Parametros pro notificationes de citationes" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Parametros pro notificationes de responsas" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Parametros pro notificationes de republicationes" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Compartir nonobstante" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Compartir le DID del autor" @@ -11127,7 +11134,7 @@ msgstr "Compartir le DID del autor" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Quadro de dialogo pro compartir ligamine" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Compartir le URI at:// del publication" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Compartir codice QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Compartir iste canal" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Compartir iste pacchetto de initio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparti iste pacchetto de initio e adjuta le gente a unir se a tu communitate super Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testator de preferentias compartite" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Monstrar" msgid "Show alt text" msgstr "Monstrar texto alternative" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Mostrar nonobstante" @@ -11274,9 +11281,9 @@ msgstr "Monstrar le lista nonobstante" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Monstrar plus" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Monstrar advertimento e filtrar desde canales" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Monstra information super quando iste publication ha essite create" @@ -11341,15 +11348,15 @@ msgstr "Monstra information super quando iste publication ha essite create" msgid "Shows other accounts you can switch to" msgstr "Monstra altere contos al quales tu pote cambiar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Monstra le contento" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Monstra le contento" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Clauder session?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Apertura de session necessari" @@ -11469,7 +11476,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Minor" @@ -11499,7 +11506,7 @@ msgstr "Proroga le recordatorio" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Alcuno ha reagite con {0}" @@ -11554,7 +11561,7 @@ msgstr "Alcuno ha reagite con {0}" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Alcun error ha occurrite, tenta de novo" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Alcun error ha occurrite. Tenta de novo in alcun instantes." msgid "Something went wrong. Please try again." msgstr "Alcun error ha occurrite. Tenta de novo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Alcun problema? Informa nos." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sports" @@ -11668,7 +11675,7 @@ msgstr "Comencia un conversation e illo apparera hic." msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Comenciar un nove chat" @@ -11682,17 +11689,17 @@ msgstr "Comenciar a adder personas" msgid "Start adding people!" msgstr "Comencia a adder personas!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Initiar chat con {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacchetto de initio" @@ -11715,12 +11722,16 @@ msgstr "Pacchetto de initio tue" msgid "Starter pack is invalid" msgstr "Le pacchetto de initio es invalide" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pacchettos de initio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Le pacchettos de initio te permitte compartir facilemente tu canales e personas favorite con tu amicos." @@ -11728,7 +11739,7 @@ msgstr "Le pacchettos de initio te permitte compartir facilemente tu canales e p msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Pagina de stato" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Passo {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Immagazinage radite, tu debe reinitiar le application ora." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscribe te a @{0} pro usar iste etiquettas:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Verificate con successo" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Poner del sol" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Cambiar a {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systema" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Tocca pro clauder le menu contextual" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tocca pro clauder" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Carga complite - 10 personas sequite!" msgid "Task complete - 10 likes!" msgstr "Carga complite - 10 appreciationes!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Insenia a nostra algorithmo lo que te place" @@ -12060,7 +12073,7 @@ msgstr "Terminos" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Le pacchetto de initio non ha potite esser trovate." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Illo es toto, gente!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Illo es toto!" @@ -12216,7 +12229,7 @@ msgstr "Le servitor pare haber problemas. Tenta de novo post alcun instantes." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Le pacchetto de initio que tu tenta vider es invalide. In vice, tu pote deler iste pacchetto de initio." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Le thema del menu contextual" @@ -12238,7 +12251,7 @@ msgstr "Le codice de verification que tu ha fornite es invalide. Assecura te que msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Thema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Il ha habite un problema durante le connexion con le servitor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Il ha habite un problema durante le connexion con le servitor, verifica tu connexion al internet e tenta de novo." @@ -12283,8 +12296,8 @@ msgstr "Il ha habite un problema durante le connexion con le servitor, verifica msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Il ha habite un problema durante le recuperation del notificationes. Tocca hic pro tentar de novo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Il ha habite un problema durante le recuperation del publicationes. Tocca hic pro tentar de novo." @@ -12309,7 +12322,7 @@ msgstr "Il ha habite un problema durante le recuperation de tu information de se msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Il ha habite un problema durante le remotion de iste canal. Verifica tu connexion al internet e tenta de novo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Iste parametros se applica solmente al canal Sequente." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Iste {screenDescription} ha essite signalate:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Iste conto ha un o plus tentativas de verification, mais actualmente illo non es verificate." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Iste conto require que usatores aperi session pro vider su profilo." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Iste canal es vacue! Es possibile que tu debe sequer plus usatores o adjustar tu parametros de lingua." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Iste canal es vacue." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Iste pseudonymo es reservate. Tenta un altere." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Iste etiquetta ha essite applicate per te." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Iste etiquettator non ha declarate qual etiquettas illo publica, e pote non esser active." @@ -12621,13 +12634,13 @@ msgstr "Iste lista es vacue." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Iste publication affirma haber essite create in <0>{0}, mais illo ha essite vidite per Bluesky pro le prime vice in <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Iste publication affirma haber essite create in <0>{0}, mais illo ha msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Iste publication ha un typo incognite de restriction de interaction. Es possibile que tu application non es actualisate." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Iste publication es visibile solmente a usatores con session aperte." @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Iste publication essera occultate de canales e filos. Iste action es irreversibile." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Le autor del publication ha disactivate le citationes." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Iste usator non ha un nomine a monstrar, e consequentemente non pote esser verificate." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Iste usator non ha sequitores." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Iste usator te ha blocate. Tu non pote vider su contento." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Iste usator es includite in le lista <0>{0} que tu ha silentiate." msgid "This user is new here. Press for more info about when they joined." msgstr "Iste usator es nove hic. Preme pro plus informationes super quando ille se ha inscribite." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Iste usator non seque alcuno." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Isto removera @{0} del lista de accesso rapide." @@ -12786,7 +12801,7 @@ msgstr "Preferentias de filos" msgid "Threaded" msgstr "Como filos" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferentias de filos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Populares" @@ -12858,7 +12873,7 @@ msgstr "Populares" msgid "Top replies first" msgstr "Responsas popular primo" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Topico" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "Vista in arbore" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendentias" @@ -12902,7 +12919,7 @@ msgstr "Tendentias" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Le confidentia emerge del relationes, del communitates e de un contexto compartite, consequentemente nos tamben habilita <0>verificatores de confidentia: organisationes qui pote emitter verificationes directemente." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "Information super le canal indisponibile" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Disblocar le conto?" msgid "Unblock list" msgstr "Disblocar lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Cessar de sequer {0}" msgid "Unfollow account" msgstr "Cessar de sequer conto" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Cessa de sequer le usator" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Disappreciar" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Dissilentiar filo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Dissilentiar video" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Disfixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Disfixar canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Disfixar del initio" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Disfixar lista de moderation" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Disfixate {0} del Initio" @@ -13258,11 +13277,11 @@ msgstr "Cancellar le subscription de iste etiquettator" msgid "Unsubscribed from list" msgstr "Cancellate le subscription del lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Non ha essite possibile actualisar le visibilitate del responsa" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Incargar un photo in su loco" @@ -13355,7 +13374,7 @@ msgstr "Cargar desde files" msgid "Upload from Library" msgstr "Cargar desde bibliotheca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Incargante imagines..." msgid "Uploading link thumbnail..." msgstr "Incargante miniatura de ligamine..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Incargante video..." @@ -13408,7 +13427,7 @@ msgstr "Usa isto pro aperir session in le altere application insimul con tu pseu msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "Non ha essite possibile verificar, tenta de novo." msgid "Verification settings" msgstr "Parametros de verification" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Parametros de verification" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Non ha essite possibile processar le video" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Canal de video" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Video de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videojocos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video in pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video in reproduction" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video non trovate." @@ -13653,7 +13672,7 @@ msgstr "Video non trovate." msgid "Video settings" msgstr "Configurationes de video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video cargate" @@ -13662,17 +13681,17 @@ msgstr "Video cargate" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Vider le avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Visualisar profilo de {0}" @@ -13724,13 +13743,13 @@ msgstr "Vider le publication de blog pro plus detalios" msgid "View debug entry" msgstr "Vider entrata de depuration" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Visualisar detalios" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vider filo complete" @@ -13761,7 +13780,7 @@ msgstr "Vider plus" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Vider le servicio de etiquettage fornite per @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Vider le notificationes de usator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Vider usatores qui apprecia iste canal" @@ -13831,7 +13850,7 @@ msgstr "Vider tu listas de moderation" msgid "View your muted accounts" msgstr "Vider tu contos silentiate" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Vider tu verificationes" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Nos ha problemas de rete, tenta de novo" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Nos presenta un nove strato de verification in Bluesky — un marca de verification facilemente perceptibile." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Pardono, mais non ha essite possibile resolver iste lista. Si iste probl msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Pardono, mais non ha essite possibile cargar tu parolas silentiate in iste momento. Tenta de novo." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Nos regretta! Le publication que tu responde ha essite delite." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Qual es le novas?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Qui pote verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ops!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Scriber message" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Scribe tu responsa" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "Tu non es plus in directo" msgid "You are not allowed to upload videos." msgstr "Tu non es permitte incargar videos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "Tu conto es verificate. Tu perdera tu stato de verification si tu cambia msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Tu conto es verificate. Tu perdera tu stato de verification si tu cambia tu pseundonymo. <0>Sape plus." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Tu pote adjustar tu interesses a qualcunque momento in le parametros de \"Contento e multimedia\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Tu pote ora aperir session con tu nove contrasigno." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Tu pote actualisar iste plus tarde desde tu configurationes." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "Tu ha verificate tu adresse de e-mail con successo. Tu pote clauder iste msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Tu ha temporarimente attingite le limite pro le incargamento de video. Tenta lo de novo plus tarde." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Tu non ha create ancora un pacchetto de initio!" @@ -14614,7 +14636,7 @@ msgstr "Tu pote adder solmente {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_P msgid "You may only add up to 3 feeds" msgstr "Tu solmente pote adder usque a 3 canales" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Tu debe sequer al minus septe altere personas pro generar un pacchetto de initio." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "Tu debe verificar tu adresse de e-mail ante que tu pote activar 2FA per e-mail." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Probabilemente tu vole reinitiar le application ora." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Tu ha reagite con {0}" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Tu sequera le usatores e canales suggerite quando tu termina le creation de tu conto!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Tu sequera le usatores suggerite quando tu termina le creation de tu conto!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Tu ha attingite le fin de tu canal! Trova alcun altere contos pro sequer." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Tu ha attingite le numero maxime de requestas permittite. Tenta de novo plus tarde." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Tu ha attingite tu limite diari pro cargas de videos (troppo de bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Tu ha attingite tu limite diari pro cargas de videos (troppo de videos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Il non ha plus videos a spectar. Forsan isto es un bon momento pro facer un pausa?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Tu conto" @@ -14835,11 +14857,11 @@ msgstr "Tu conto ha essite suspendite" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tu conto ancora non ha etate sufficiente pro cargar videos. Tenta de novo plus tarde." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Tu interesses ha essite actualisate!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Tu interesses nos adjuta a discoperir lo que te place!" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "Tu contrasigno debe haber al minus 8 characteres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "Tu profilo, publicationes, canales e listas non essera plus visibile a altere usatores de Bluesky. Tu pote reactivar tu conto a qualcunque momento aperiente session." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "Tu signalamento essera inviate a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Le interesses que tu ha seligite nos adjuta a servir te contento que te importa." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index 665ea7e269..a59bc5be1b 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: id\n" +"Language: id_ID\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategori \"{interestsDisplayName}\" (aktif)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(berisi konten yang disisipkan)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, other {# jam}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, other {# menyukai}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Akun)" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} mengikuti" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} dari 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} menanggapi {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} memverifikasi Anda" msgid "{following} following" msgstr "{following} mengikuti" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} tidak dapat dikirimi pesan" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, other {# item belum dibaca}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} bergabung Bluesky {timeAgoString} yang lalu" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} bergabung Bluesky menggunakan paket pemula {timeAgoString} yang lalu" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}j yang lalu" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} adalah verifikator terpercaya" @@ -842,13 +795,13 @@ msgstr "Verifikasi {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, other {mengikuti}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {kutipan}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {posting ulang}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, other {simpanan}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Masuk<1> atau <2>buat akun<3> <4>untuk mencari berita, olahraga, politik dan semuanya yang terjadi di Bluesky." @@ -971,7 +924,7 @@ msgstr "30 hari" msgid "7 days" msgstr "7 hari" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Kumpulan feed populer yang dapat Anda temukan di Bluesky, termasuk Berita, Booksky, Pengembangan Game, Blacksky, dan Pena Tinta" @@ -988,9 +941,11 @@ msgstr "Kesalahan jaringan terjadi. Silakan periksa koneksi internet Anda" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Kode baru telah dikirim" msgid "A new form of verification" msgstr "Bentuk baru verifikasi" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Aksesibilitas" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Pengaturan Aksesibilitas" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Akun Dibisukan oleh Daftar" msgid "Account options" msgstr "Pengaturan akun" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Akun dihapus dari akses cepat" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Akun dengan tanda cek biru bergerigi <0><1/> dapat memverifikasi lainnya. Verifikator ini telah dipilih oleh Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktivitas dari yang lainnya" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Tambahkan teks alt (opsional)" msgid "Add another account" msgstr "Tambahkan akun lain" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Tambahkan postingan lain" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Tambahkan emoji reaksi" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Tambahkan feed ini ke daftar feed Anda" msgid "Add to lists" msgstr "Tambahkan dalam daftar" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Tambahkan ke postingan yang disimpan" @@ -1400,7 +1360,7 @@ msgstr "Dewasa" msgid "Adult content" msgstr "Konten dewasa" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Mengizinkan akses ke pesan langsung" msgid "Already have a code?" msgstr "Sudah memiliki kode?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Sudah memiliki akun?" @@ -1614,7 +1574,7 @@ msgstr "Email telah dikirim ke {0}. Email tersebut berisi kode konfirmasi yang d msgid "An error has occurred" msgstr "Telah terjadi kesalahan" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Terjadi kesalahan" @@ -1631,7 +1591,7 @@ msgstr "Kesalahan terjadi saat mengambil akun yang disarankan." msgid "An error occurred while fetching the feed." msgstr "Terjadi kesalahan saat mengambil feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?" @@ -1640,11 +1600,11 @@ msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi nanti." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Ilustrasi dari beberapa postingan Bluesky bersama dengan ikon posting ulang, suka dan komentar" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Masalah lain yang tidak termasuk dalam pilihan" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Terjadi masalah saat mencoba membuka obrolan" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Siapa saja" @@ -1802,7 +1760,7 @@ msgstr "Siapapun yang mengikuti saya" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Nama sandi aplikasi harus terdiri dari minimal 4 karakter" msgid "App passwords" msgstr "Sandi aplikasi" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Kata Sandi Aplikasi" @@ -1891,8 +1849,8 @@ msgstr "Ajukan banding atas keputusan ini" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arsip dari {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arsip postingan" @@ -1980,7 +1938,7 @@ msgstr "Anda yakin ingin menghapus ini dari daftar feed Anda?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Anda yakin ingin membuang postingan ini?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Putar otomatis video dan GIF" msgid "Available" msgstr "Tersedia" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Untuk membuat postingan atau membalas, harap verifikasi email Anda terlebih dahulu." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Untuk membuat paket pemula, harap verifikasi email Anda terlebih dahulu." @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "Fitur Beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Tanggal lahir" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Diblokir" msgid "Blocked accounts" msgstr "Akun yang diblokir" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Akun yang Diblokir" @@ -2282,7 +2250,7 @@ msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau b msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda. Anda juga tidak akan melihat konten mereka dan mereka akan dicegah melihat konten Anda." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Pemblokiran tidak menghalangi pelabel ini menerapkan label pada akun Anda." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky tidak dapat memastikan keaslian tanggal yang diklaim." @@ -2330,7 +2299,7 @@ msgstr "Bluesky adalah jaringan terbuka yang memungkinkan Anda memilih penyedia msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky merupakan jaringan terbuka dimana Anda dapat memilih layanan Anda sendiri. Jika Anda baru disini, kami sarankan tetap dengan opsi bawaan dari Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky lebih seru jika bersama teman!" @@ -2358,7 +2327,7 @@ msgstr "Ketentuan Layanan Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky akan memilih serangkaian akun yang direkomendasikan dari orang-orang dalam jaringan Anda." @@ -2425,24 +2394,25 @@ msgstr "Jelajahi saran lainnya pada halaman Jelajah" msgid "Browse other feeds" msgstr "Telusuri feed lain" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Jelajahi postingan tentang {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Jelajahi postingan yang ditandai dengan {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Telusuri paket pemula {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Jelajahi topik {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Jelajahi topik {displayName}" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Oleh {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Oleh <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan< msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Oleh anda" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Batalkan pengaktifan kembali dan keluar" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Batal mencari" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Obrolan dibisukan" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Kotak masuk permintaan obrolan" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Permintaan obrolan" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Pengaturan obrolan" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Obrolan dibunyikan" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Obrolan" @@ -2837,7 +2808,7 @@ msgstr "Pilih metode verifikasi domain" msgid "Choose Feeds" msgstr "Pilih Feed" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Pilihkan untuk saya" @@ -2854,7 +2825,7 @@ msgstr "Pilih Pengguna" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Pilih warna ini sebagai avatar Anda" @@ -2879,7 +2850,7 @@ msgstr "Pilih sendiri linimasa Anda! Feed buatan komunitas dapat membantu menemu msgid "Choose your password" msgstr "Pilih kata sandi Anda" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Panggilan Anda" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Ketuk untuk mengirim ulang pesan yang gagal" @@ -3003,7 +2974,7 @@ msgstr "Ketuk untuk mengirim ulang pesan yang gagal" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Ketuk untuk mengirim ulang pesan yang gagal" msgid "Close" msgstr "Tutup" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Tutup dialog aktif" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Tutup menu" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Tutup dialog ini" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Menutup peringatan pembaruan kata sandi" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Menutup komposer pos dan menghapus draf postingan" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mode warna" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Komik" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Panduan Komunitas" @@ -3141,7 +3112,7 @@ msgstr "Panduan Komunitas" msgid "Complete onboarding and start using your account" msgstr "Selesaikan orientasi dan mulai menggunakan akun Anda" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Selesaikan tantangan" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Tulis postingan baru" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya" @@ -3160,11 +3131,11 @@ msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya" msgid "Compose reply" msgstr "Tulis balasan" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Mengompres video..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Hubungi pusat dukungan" @@ -3253,7 +3224,7 @@ msgstr "Konten & Media" msgid "Content and media" msgstr "Konten dan media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Konten dan Media" @@ -3265,10 +3236,6 @@ msgstr "Konten Diblokir" msgid "Content filters" msgstr "Penyaring konten" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Konten dari seluruh jaringan yang mungkin Anda sukai." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Peringatan Konten" msgid "Content warnings" msgstr "Peringatan konten" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Latar menu konteks, klik untuk menutup menu." @@ -3302,7 +3269,7 @@ msgstr "Latar menu konteks, klik untuk menutup menu." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Lanjutkan utas..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Versi build disalin ke papan klip" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Salin Sandi Aplikasi" msgid "Copy at:// URI" msgstr "Salin URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Salin DID pemosting" @@ -3449,10 +3416,10 @@ msgstr "Salin Tautan" msgid "Copy link to list" msgstr "Salin tautan daftar" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Salin tautan postingan" @@ -3470,8 +3437,8 @@ msgstr "Salin tautan ke paket pemula" msgid "Copy message text" msgstr "Salin teks pesan" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Salin URI postingan at://" @@ -3490,7 +3457,7 @@ msgstr "Salin nilai data TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Kebijakan Hak Cipta" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Tidak dapat meninggalkan obrolan" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Tidak dapat memuat feed" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Tidak dapat membisukan obrolan" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Buat" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Buat kode QR untuk paket pemula" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Buat paket pemula" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Buatkan paket pemula untuk saya" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Daftar" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Buat akun" @@ -3666,15 +3633,15 @@ msgstr "Buat akun" msgid "Create an account without using this starter pack" msgstr "Buat akun tanpa menggunakan paket pemula ini" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Buat avatar saja" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Buat paket lain" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Budaya" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Gelap" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Gelap" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema gelap" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Standar" @@ -3894,7 +3861,7 @@ msgstr "Hapus akun saya" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Hapus postingan" @@ -3988,7 +3955,7 @@ msgstr "Dialog: sesuaikan siapa saja yang dapat berinteraksi dengan postingan in msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Redup" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "Nonaktifkan 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Dinonaktifkan" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Buang" msgid "Discard changes?" msgstr "Buang perubahan?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Buang draf?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Buang postingan?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Cegah aplikasi menampilkan akun saya ke pengguna yang tidak masuk" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Cegah aplikasi menampilkan akun saya ke pengguna yang tidak masuk" msgid "Discover new custom feeds" msgstr "Temukan feed kustom baru" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Temukan Feed Baru" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Tutup" @@ -4103,19 +4070,19 @@ msgstr "Tutup" msgid "Dismiss banner" msgstr "Abaikan spanduk" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Abaikan kesalahan" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Tutup panduan memulai" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Abaikan minat" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Abaikan spanduk siaran langsung" @@ -4142,7 +4109,7 @@ msgstr "Tampilkan lencana teks alt yang lebih besar" msgid "Display name" msgstr "Nama tampilan" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Selesai" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Ketuk dua kali atau tekan lama pada pesan untuk menambahkan reaksi" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Ketuk dua kali untuk menutup dialog" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Ketuk dua kali untuk menyukai" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Edit gambar" msgid "Edit interaction settings" msgstr "Ubah pengaturan interaksi" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Ubah minat" @@ -4397,7 +4365,7 @@ msgstr "Ubah status siaran langsung" msgid "Edit moderation list" msgstr "Ubah daftar moderasi" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Ubah Daftar Feed" @@ -4406,6 +4374,11 @@ msgstr "Ubah Daftar Feed" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Ubah Daftar Pengguna" @@ -4444,7 +4417,7 @@ msgstr "Ubah daftar pengguna" msgid "Edit who can reply" msgstr "Ubah siapa yang dapat membalas" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Ubah paket pemula Anda" @@ -4500,8 +4473,8 @@ msgstr "Sisipkan kode HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Sisipkan postingan" @@ -4509,7 +4482,7 @@ msgstr "Sisipkan postingan" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Sisipkan postingan ini di situs web Anda. Salin potongan kode berikut dan tempelkan ke dalam kode HTML situs web Anda." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Pemutar video tertanam" @@ -4533,7 +4506,7 @@ msgstr "Aktifkan konten dewasa" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Aktifkan teks keterangan" @@ -4550,12 +4523,13 @@ msgstr "Aktifkan media eksternal" msgid "Enable media players for" msgstr "Aktifkan pemutar media untuk" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Nyalakan notifikasi untuk akun dengan mengunjungi akun mereka dan menekan tombol ikon <0>lonceng <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Aktifkan notifikasi push" @@ -4581,7 +4555,7 @@ msgstr "Aktifkan tren video dalam feed Discover Anda" msgid "Enabled" msgstr "Diaktifkan" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Akhir feed" @@ -4608,7 +4582,7 @@ msgstr "Masukkan kata atau tagar" msgid "Enter code" msgstr "Masukkan kode" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Masuk ke layar penuh" @@ -4650,11 +4624,11 @@ msgstr "Masukkan nama pengguna dan kata sandi Anda" msgid "Enters full screen" msgstr "Masuk ke mode layar penuh" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Hiburan" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Galat" @@ -4684,7 +4658,7 @@ msgstr "Terjadi kesalahan saat menyimpan berkas" msgid "Error receiving captcha response." msgstr "Kesalahan saat menerima respons captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Kesalahan: {error}" @@ -4696,8 +4670,8 @@ msgstr "Semua dapat membalas" msgid "Everybody can reply to this post." msgstr "Semua orang dapat membalas postingan ini." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Semua orang" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Semua orang" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Yang lainnya" @@ -4738,7 +4712,7 @@ msgstr "Kecualikan pengguna yang Anda ikuti" msgid "Excludes users you follow" msgstr "Kecuali pengguna yang Anda ikuti" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Keluar dari layar penuh" @@ -4755,11 +4729,11 @@ msgstr "Bentangkan daftar pengguna" msgid "Expand or collapse the full post you are replying to" msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Bentangkan teks posting" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Bentangkan atau ciutkan postingan" @@ -4802,15 +4776,15 @@ msgstr "Media eksplisit atau berpotensi mengganggu." msgid "Explicit sexual images." msgstr "Gambar seksual eksplisit." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Jelajahi" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Jelajahi aplikasi" @@ -4844,7 +4818,7 @@ msgstr "Media Eksternal" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"putar\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferensi Media Eksternal" @@ -4886,7 +4860,7 @@ msgstr "Gagal mengubah panggilan. Silakan coba lagi." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Gagal memuat percakapan" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Gagal memuat feed" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Gagal memuat preferensi feed" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Gagal memuat pengaturan notifikasi." @@ -5012,14 +4987,14 @@ msgstr "Gagal memuat preferensi." msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Gagal memuat daftar feed yang disarankan" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Gagal memuat saran akun untuk diikuti" @@ -5027,12 +5002,12 @@ msgstr "Gagal memuat saran akun untuk diikuti" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Gagal menyimpan draf" @@ -5191,7 +5166,7 @@ msgstr "Akun palsu atau bot" msgid "False information about elections" msgstr "Informasi palsu tentang pemilihan umum" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "Pembuat feed" msgid "Feed identifier" msgstr "Tanda pengenal feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu feed" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Masukkan dikirim ke operator feed" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Daftar feed diperbarui!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feed yang kami rasa Anda sukai." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Ambil pembaruan" @@ -5273,11 +5244,11 @@ msgstr "Ambil pembaruan" msgid "File saved successfully!" msgstr "Berkas berhasil disimpan!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Saring siapa saja yang dapat memilih untuk menerima notifikasi untuk aktivitas Anda" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Saring dari siapa saja Anda akan menerima notifikasi" @@ -5352,8 +5323,8 @@ msgstr "Temukan akun untuk diikuti" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Cari Kontak" @@ -5387,7 +5358,7 @@ msgstr "Cari teman Anda" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Ikuti {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Ikuti {handle}" @@ -5453,11 +5424,11 @@ msgstr "Ikuti {handle}" msgid "Follow 10 accounts" msgstr "Ikuti 10 akun" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Ikuti 7 akun" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Pengikut @{0} yang Anda kenal" @@ -5544,7 +5515,7 @@ msgstr "Pengikut yang Anda kenal" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Mengikuti {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Mengikuti {handle}" @@ -5578,21 +5549,21 @@ msgstr "Mengikuti {handle}" msgid "Following feed preferences" msgstr "Preferensi feed Mengikuti" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferensi Feed Mengikuti" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Mengikuti Anda" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Font" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Ukuran font" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda lupa sandi aplikasi ini, Anda harus membuat yang baru." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Untuk pengalaman terbaik, kami sarankan menggunakan font tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Untuk Anda" @@ -5628,7 +5599,7 @@ msgstr "Untuk Anda" msgid "Forever" msgstr "Selamanya" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Lupa kata sandi?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Bebaskan feed Anda" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Dari" @@ -5674,7 +5647,7 @@ msgstr "Dari <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Buatkan paket pemula" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Dapatkan bantuan" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Dapatkan notifikasi ketika orang menyebutkan Anda." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Dapatkan notifikasi ketika orang mengutip postingan Anda." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Dapatkan notifikasi ketika orang membalas postingan Anda." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Dapatkan notifikasi ketika orang memposting ulang postingan Anda." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "Memulai" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Beri wajah pada profil Anda" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Siaran langsung untuk" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Tagar" @@ -6098,7 +6072,7 @@ msgstr "Punya kode? <0>Klik di sini." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Mengalami masalah?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Bantuan" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 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." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "Disembunyikan" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Disembunyikan berdasarkan aturan moderasi Anda." @@ -6148,9 +6122,9 @@ msgstr "Disembunyikan berdasarkan aturan moderasi Anda." msgid "Hidden list" msgstr "Daftar yang disembunyikan" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Daftar yang disembunyikan" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Sembunyikan" @@ -6198,7 +6172,7 @@ msgstr "Sembunyikan balasan untuk semua" msgid "Hide reply for me" msgstr "Sembunyikan balasan untuk saya" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Sembunyikan kartu ini" @@ -6218,12 +6192,12 @@ msgstr "Sembunyikan balasan ini?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Sembunyikan tren topik" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Sembunyikan tren topik?" @@ -6240,7 +6214,7 @@ msgstr "Sembunyikan daftar pengguna" msgid "Hide verification badges" msgstr "Sembunyikan lencana verifikasi" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Menyembunyikan konten" @@ -6293,8 +6267,8 @@ msgstr "Hmmmm, kami tidak dapat memuat layanan moderasi." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Harap tunggu! Kami secara bertahap memberikan akses video, dan Anda masih dalam antrian. Periksa kembali nanti!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Sedang hangat" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "Jika Anda memperbarui alamat email Anda, email 2FA akan dinonaktifkan." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Jika Anda ingin mengubah kata sandi, kami akan mengirimkan kode untuk memverifikasi bahwa ini adalah akun Anda." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Jika Anda ingin membatasi siapa saja yang dapat menerima notifikasi untuk aktivitas akun Anda, Anda dapat mengubahnya di <0>Pengaturan → Privasi dan Keamanan." @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "Kotak masuk kosong!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Hanya ada Anda saat ini! Tambahkan lebih banyak orang ke paket pemula Anda melalui pencarian di atas." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID Kerja: {0}" @@ -6816,8 +6788,8 @@ msgstr "Bergabunglah dengan kami" msgid "Journalism" msgstr "Jurnalisme" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Situs KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Dilabeli oleh {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Dilabeli oleh pemosting." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Label" @@ -6852,7 +6824,7 @@ msgstr "Label ditambahkan" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Label adalah anotasi yang diterapkan pada pengguna dan konten. Label dapat digunakan untuk menyembunyikan, memperingatkan, dan mengkategorikan jaringan." @@ -6864,7 +6836,7 @@ msgstr "Label pada akun Anda" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Pengaturan Bahasa" @@ -6874,7 +6846,7 @@ msgstr "Pengaturan Bahasa" msgid "Languages" msgstr "Bahasa" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Lebih besar" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Terbaru" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Pelajari Lebih Lanjut" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Pelajari lebih lanjut mengenai hosting mandiri PDS Anda." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Pelajari lebih lanjut tentang moderasi yang diterapkan pada konten ini" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Pelajari lebih lanjut tentang peringatan ini" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Pelajari lebih lanjut." @@ -6993,8 +6965,8 @@ msgstr "Tinggalkan" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Meninggalkan Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "yang tersisa" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Biarkan saya memilih" @@ -7057,7 +7029,7 @@ msgstr "Ayo!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Terang" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Terang" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Suka" @@ -7076,7 +7048,7 @@ msgstr "Suka" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Suka ({0, plural, other {# suka}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Sukai 10 postingan" @@ -7085,7 +7057,7 @@ msgstr "Sukai 10 postingan" msgid "Like 10 posts to train the Discover feed" msgstr "Sukai 10 postingan untuk melatih feed Discover" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Sukai feed ini" @@ -7093,8 +7065,8 @@ msgstr "Sukai feed ini" msgid "Like this labeler" msgstr "Sukai labeler ini" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Disukai oleh" @@ -7111,27 +7083,45 @@ msgstr "Disukai Oleh" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Disukai oleh {0, plural, other {# pengguna}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Disukai oleh {likeCount, plural, other {# pengguna}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Suka" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Suka pada postingan ulang Anda" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Suka pada postingan ini" @@ -7144,7 +7134,7 @@ msgstr "Linier" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Daftar" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Daftar batal dibisukan" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "Siaran langsung" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "Tautan siaran langsung" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Muat lebih banyak" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Muat lebih banyak feed yang disarankan" @@ -7292,8 +7282,8 @@ msgstr "Muat lebih banyak feed yang disarankan" msgid "Load new notifications" msgstr "Muat notifikasi baru" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Catatan" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "Buat penyesuaian untuk pengaturan email akun Anda" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Buatkan untuk saya" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "Tandai semua sebagai dibaca" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Tandai telah dibaca" msgid "Marked all as read" msgstr "Ditandai semua sebagai dibaca" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "Mungkin nanti" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media yang mungkin mengganggu atau tidak pantas untuk sebagian orang." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "pengguna yang Anda sebut" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Sebutan" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Pesan dihapus" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "Opsi pesan" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Pesan" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderasi" @@ -7636,7 +7630,7 @@ msgstr "Daftar moderasi diperbarui" msgid "Moderation lists" msgstr "Daftar moderasi" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Daftar Moderasi" @@ -7645,7 +7639,7 @@ msgstr "Daftar Moderasi" msgid "moderation settings" msgstr "pengaturan moderasi" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Status moderasi" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Akun yang dibisukan" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Akun yang Dibisukan" @@ -7867,7 +7861,6 @@ msgstr "Ingin melaporkan pelanggaran hak cipta, permintaan hukum, atau masalah k msgid "Nevermind, create a handle for me" msgstr "Tidak usah, buatkan panggilan untuk saya" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Baru" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Obrolan baru" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Fitur Baru" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Pengikut baru" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Daftar baru" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Kata sandi baru" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Postingan baru" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Balasan terbaru lebih dulu" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Berita" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Gambar berikutnya" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "Tidak ada kadaluarsa dipasang" msgid "No feeds found. Try searching for something else." msgstr "Tidak ditemukan feed apa pun. Coba pencarian lain." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "Tidak ada gambar" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Belum ada yang menyukai" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Tidak lagi mengikuti {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Belum ada pesan" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "Tidak ada postingan di sini" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Belum ada kutipan" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Tidak ada hasil" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Tidak ada hasil" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Tidak ada hasil untuk \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Tidak ditemukan hasil" msgid "No results found for \"{query}\"" msgstr "Tidak ditemukan hasil untuk \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Tidak ada hasil." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Tidak terima kasih" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Tak seorang pun" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Belum ada yang menyukai ini. Mungkin Anda bisa jadi yang pertama!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Belum ada yang mengutip. Mungkin Anda bisa jadi yang pertama!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Ketelanjangan Non-Seksual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Tidak Ditemukan" @@ -8333,7 +8330,7 @@ msgstr "Catatan tentang berbagi" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya membatasi visibilitas konten Anda pada aplikasi dan situs web Bluesky. Konten Anda mungkin tetap ditampilkan oleh aplikasi atau situs web lain kepada pengguna yang tidak masuk." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Catatan: Postingan ini hanya dapat dilihat untuk pengguna yang masuk." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Pengaturan notifikasi" @@ -8353,11 +8350,12 @@ msgstr "Pengaturan notifikasi" msgid "Notification sounds" msgstr "Suara notifikasi" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Oh tidak!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Oke" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Pengaturan ulang orientasi" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Satu atau beberapa GIF belum memiliki teks alt." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Satu atau beberapa gambar belum memiliki teks alt." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Satu atau beberapa video belum memiliki teks alt." @@ -8471,7 +8471,7 @@ msgstr "Hanya {0} yang dapat membalas." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Hanya mendukung berkas WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,7 +8544,7 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Buka pembuat avatar" @@ -8570,21 +8570,22 @@ msgstr "Buka opsi percakapan" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Buka menu geser" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Buka pemilih emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Buka halaman info feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Buka menu opsi feed" @@ -8627,7 +8628,7 @@ msgstr "Buka halaman debug moderasi" msgid "Open muted words and tags settings" msgstr "Buka pengaturan kata dan tagar yang dibisukan" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Buka paket" @@ -8699,7 +8700,7 @@ msgstr "Membuka detail tambahan untuk entri debug" msgid "Opens alt text dialog" msgstr "Membuka dialog teks alt" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Membuka kamera pada perangkat" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Membuka alur untuk membuat akun baru Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Membuka alur untuk masuk ke akun Bluesky Anda yang sudah ada" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Kata sandi diganti!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Jeda" @@ -8925,12 +8926,12 @@ msgstr "Jeda" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Jeda video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Profil" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Orang yang diikuti oleh @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Orang yang mengikuti @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Orang yang saya ikuti" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Gambar yang ditujukan untuk orang dewasa." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Sematkan feed" @@ -9034,7 +9035,7 @@ msgstr "Sematkan feed" msgid "Pin to home" msgstr "Sematkan ke beranda" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Sematkan ke Beranda" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Disematkan" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} disematkan ke Beranda" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Disematkan ke daftar feed Anda" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Putar" @@ -9076,8 +9077,8 @@ msgstr "Putar {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Putar video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politik" @@ -9269,7 +9270,7 @@ msgstr "Politik" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Posting" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Postingan" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Posting Semua" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Postingan diblokir" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Postingan oleh @{0}" @@ -9340,7 +9341,7 @@ msgstr "Postingan yang Anda sembunyikan" msgid "Post interaction settings" msgstr "Pengaturan interaksi postingan" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Pengaturan Interaksi Postingan" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Postingan disematkan" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Postingan dilepaskan" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postingan" @@ -9398,6 +9396,10 @@ msgstr "Postingan dapat dibisukan berdasarkan teks, tagar, atau keduanya. Sebaik msgid "Posts hidden" msgstr "Postingan disembunyikan" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Tautan yang berpotensi menyesatkan" @@ -9449,20 +9451,21 @@ msgstr "Privasi" msgid "Privacy and security" msgstr "Privasi dan keamanan" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privasi dan Keamanan" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Pengaturan Privasi dan Keamanan" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Kebijakan Privasi" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Memproses video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Daftar terbuka yang dapat dibagikan untuk membisukan atau memblokir pengguna secara massal." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Kirim postingan" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Kirim postingan" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Kirim balasan" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Kirim balasan" @@ -9599,12 +9602,12 @@ msgstr "Kutipan dinonaktifkan" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Kutipan" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Kutipan postingan ini" @@ -9647,7 +9650,7 @@ msgstr "Aktifkan kembali akun Anda" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Baca blog postingan (dalam bahasa Inggris)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Sembunyikan" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Lihat selengkapnya" @@ -9687,11 +9690,11 @@ msgstr "Baca Kebijakan Privasi Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Baca Ketentuan Layanan Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Direkomendasikan" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Hubungkan kembali" @@ -9748,7 +9747,7 @@ msgstr "Tolak permintaan obrolan" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Memuat ulang percakapan" @@ -9766,7 +9765,7 @@ msgstr "Memuat ulang percakapan" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Hapus" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Hapus akun" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Hapus dari daftar feed saya" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Hapus dari akses cepat?" @@ -9862,7 +9861,7 @@ msgstr "Hapus dari akses cepat?" msgid "Remove from saved feeds" msgstr "Hapus dari feed tersimpan" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Hapus gambar" msgid "Remove live status" msgstr "Hapus status siaran langsung" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Dihapus dari daftar" msgid "Removed from saved feeds" msgstr "Dihapus dari feed tersimpan" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Balasan" @@ -10037,7 +10037,7 @@ msgstr "Balasan ke postingan ini dinonaktifkan." msgid "Reply" msgstr "Balas" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Balas" @@ -10098,8 +10098,8 @@ msgstr "Laporkan percakapan" msgid "Report dialog" msgstr "Dialog laporan" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Laporkan feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Diposting ulang oleh Anda" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Postingan ulang" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Postingan ulang postingan ini" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Postingan ulang dari posting ulang Anda" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Mencoba kembali tindakan terakhir yang gagal" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Kembali ke beranda" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Kembali ke halaman sebelumnya" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Simpan perubahan" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Simpan kode QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Simpan ke daftar feed saya" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feed Tersimpan" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Disimpan ke daftar feed Anda" @@ -10520,8 +10520,8 @@ msgstr "Disimpan ke daftar feed Anda" msgid "Say hello!" msgstr "Katakan halo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Sains" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Gulir ke atas" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cari" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cari postingan @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Cari feed yang ingin Anda sarankan kepada orang lain." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Cari lebih banyak akun" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Cari lebih banyak umpan" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cari GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Pencarian saat ini tidak tersedia saat Anda keluar" @@ -10709,6 +10709,7 @@ msgstr "Lihat lowongan pekerjaan di Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Lihat lebih banyak" @@ -10716,8 +10717,12 @@ msgstr "Lihat lebih banyak" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Tombol geser. Gunakan tombol panah untuk maju dan mundur, dan spasi untuk memutar/menjeda" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Pilih warna" @@ -10764,11 +10769,11 @@ msgstr "Pilih akun" msgid "Select an app language" msgstr "Pilih bahasa aplikasi" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Pilih avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Pilih emoji" @@ -10780,12 +10785,13 @@ msgstr "Pilih suatu opsi" msgid "Select app language" msgstr "Pilih bahasa aplikasi" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Pilih GIF" msgid "Select GIF \"{0}\"" msgstr "Pilih GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "Pilih bahasa utama" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Pilih emoji {emojiName} sebagai avatar Anda" @@ -10945,7 +10951,8 @@ msgstr "Kirim pesan" msgid "Send post to {name}" msgstr "Kirim postingan ke {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Kirim postingan ke..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Kirim email verifikasi" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Kirim melalui pesan" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Atur email untuk pengaturan ulang kata sandi" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Pengaturan" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Pengaturan untuk aktivitas dari yang lainnya" @@ -11036,49 +11043,49 @@ msgstr "Pengaturan untuk aktivitas dari yang lainnya" msgid "Settings for allowing others to be notified of your posts" msgstr "Pengaturan untuk mengizinkan orang lain diberi tahu tentang postingan Anda" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Pengaturan untuk notifikasi suka" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Pengaturan untuk notifikasi sebutan" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Pengaturan untuk notifikasi pengikut baru" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Pengaturan untuk notifikasi kutipan" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Pengaturan untuk notifikasi balasan" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Tetap bagikan" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Bagikan DID pemosting" @@ -11127,7 +11134,7 @@ msgstr "Bagikan DID pemosting" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialog berbagi tautan" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Bagikan URI postingan at://" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Bagikan kode QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Bagikan feed ini" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Bagikan paket pemula ini" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Bagikan paket pemula ini dan bantu orang-orang untuk bergabung dengan komunitas Anda di Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Penguji Preferensi Bersama" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Tampilkan" msgid "Show alt text" msgstr "Tampilkan teks alt" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Tetap tampilkan" @@ -11274,9 +11281,9 @@ msgstr "Tetap tampilkan daftar" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Tampilkan Lebih Lanjut" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Tampilkan peringatan dan saring dari feed" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Menampilkan informasi tentang kapan postingan ini dibuat" @@ -11341,15 +11348,15 @@ msgstr "Menampilkan informasi tentang kapan postingan ini dibuat" msgid "Shows other accounts you can switch to" msgstr "Menampilkan akun lain yang dapat Anda alihkan" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Menampilkan konten" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Menampilkan konten" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Keluar?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Wajib Masuk" @@ -11469,7 +11476,7 @@ msgstr "Lewati" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Lebih kecil" @@ -11499,7 +11506,7 @@ msgstr "Menunda pengingat" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Seseorang menanggapi {0}" @@ -11554,7 +11561,7 @@ msgstr "Seseorang menanggapi {0}" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Ada yang tidak beres, silakan coba lagi" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "Ada yang tidak beres. Silakan coba lagi." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Ada masalah? Beri tahu kami." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Olahraga" @@ -11668,7 +11675,7 @@ msgstr "Mulai percakapan, dan percakapan akan muncul di sini." msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Mulai obrolan baru" @@ -11682,17 +11689,17 @@ msgstr "Mulai tambahkan orang" msgid "Start adding people!" msgstr "Mulai tambahkan orang!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Mulai obrolan dengan {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paket Pemula" @@ -11715,12 +11722,16 @@ msgstr "Paket pemula dari Anda" msgid "Starter pack is invalid" msgstr "Paket pemula tidak valid" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Paket Pemula" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda dengan teman." @@ -11728,7 +11739,7 @@ msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda de msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Halaman Status" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Langkah {0} dari {1}" @@ -11754,7 +11765,7 @@ msgstr "Penyimpanan dibersihkan, Anda perlu memulai ulang aplikasi sekarang." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Berlangganan @{0} untuk menggunakan label berikut:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Berhasil diverifikasi" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Terbenam" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Beralih ke {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistem" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Ketuk untuk tutup menu konteks" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Ketuk untuk menutup" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Tugas selesai - mengikuti 10 akun!" msgid "Task complete - 10 likes!" msgstr "Tugas selesai - 10 suka!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Latih algoritma kami dengan apa yang Anda sukai" @@ -12060,7 +12073,7 @@ msgstr "Ketentuan" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Tidak dapat menemukan paket pemula." msgid "That username is already taken" msgstr "Nama pengguna telah terpakai" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Sekian!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Itu saja!" @@ -12216,7 +12229,7 @@ msgstr "Server tampaknya mengalami masalah. Silahkan coba lagi dalam beberapa sa msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Paket pemula yang ingin Anda lihat tidak valid. Anda dapat menghapus paket pemula ini." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Subyek dari menu konteks" @@ -12238,7 +12251,7 @@ msgstr "Kode verifikasi yang Anda berikan tidak valid. Pastikan Anda telah mengg msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Ada masalah saat menghubungi server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet Anda dan coba lagi." @@ -12283,8 +12296,8 @@ msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet An msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ada masalah saat mengambil notifikasi. Ketuk di sini untuk mencoba lagi." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi." @@ -12309,7 +12322,7 @@ msgstr "Ada masalah saat mengambil info layanan Anda" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Ada masalah saat menghapus feed ini. Silakan periksa koneksi internet Anda dan coba lagi." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Pengaturan ini hanya berlaku untuk feed Mengikuti." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} ini telah ditandai:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Akun ini memiliki satu atau beberapa kali upaya verifikasi, namun saat ini belum terverifikasi." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Akun ini mewajibkan pengguna untuk masuk agar bisa melihat profilnya." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Feed ini kosong! Anda mungkin perlu mengikuti lebih banyak pengguna atau menyesuaikan pengaturan bahasa." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Feed ini kosong." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Panggilan ini sudah digunakan. Silakan coba yang lain." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Label ini diterapkan oleh Anda." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Pelabel ini belum menyatakan label apa yang diterbitkannya, dan mungkin tidak aktif." @@ -12621,13 +12634,13 @@ msgstr "Daftar ini kosong." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Postingan ini mengklaim dibuat pada <0>{0}, tetapi baru terlihat di Bluesky pada <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Postingan ini mengklaim dibuat pada <0>{0}, tetapi baru terlihat di msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Postingan ini menggunakan pembatasan interaksi yang tidak dikenali. Anda mungkin perlu memperbarui aplikasi." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Postingan ini hanya dapat dilihat untuk pengguna yang masuk." @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Postingan ini akan disembunyikan dari semua feed dan utas. Tindakan ini tidak dapat dibatalkan." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Pembuat postingan ini telah menonaktifkan kutipan." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Pengguna ini tidak memiliki nama tampilan, dan oleh karena itu tidak dapat diverifikasi." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Pengguna ini tidak memiliki pengikut." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Pengguna ini telah memblokir Anda. Anda tidak dapat melihat konten mereka." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Pengguna ini termasuk dalam daftar <0>{0} yang telah Anda bisukan" msgid "This user is new here. Press for more info about when they joined." msgstr "Pengguna ini masih baru. Tekan untuk informasi lebih lanjut tentang kapan ia bergabung." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Pengguna ini tidak mengikuti siapa pun." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Ini akan menghapus @{0} dari daftar akses cepat." @@ -12786,7 +12801,7 @@ msgstr "Preferensi Utas" msgid "Threaded" msgstr "Bersusun" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferensi Utas" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Teratas" @@ -12858,7 +12873,7 @@ msgstr "Teratas" msgid "Top replies first" msgstr "Balasan teratas lebih dulu" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Topik" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "Tampilan pohon" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Trending" @@ -12902,7 +12919,7 @@ msgstr "Trending" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Percaya muncul dari hubungan, komunitas, dan konteks bersama, oleh karena itu kami juga aktifkan <0>verifikator terpecaya: organisasi yang bisa langsung terbitkan verifikasi." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "Tidak tersedia" msgid "Unavailable feed information" msgstr "Informasi feed tidak tersedia" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Buka Blokir Akun?" msgid "Unblock list" msgstr "Buka blokir daftar" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Berhenti ikuti {0}" msgid "Unfollow account" msgstr "Berhenti ikuti akun" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Berhenti mengikuti pengguna" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Batal suka" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Bunyikan utas" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Bunyikan video" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Lepas sematan" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Lepaskan feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Lepaskan sematan dari beranda" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Lepas sematan daftar moderasi" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} dilepaskan dari Beranda" @@ -13258,11 +13277,11 @@ msgstr "Berhenti langganan pelabel ini" msgid "Unsubscribed from list" msgstr "Telah berhenti berlangganan dari daftar" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Gagal memperbarui visibilitas balasan" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Unggah foto saja" @@ -13355,7 +13374,7 @@ msgstr "Unggah dari Berkas" msgid "Upload from Library" msgstr "Unggah dari Pustaka" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Mengunggah gambar..." msgid "Uploading link thumbnail..." msgstr "Mengunggah keluku tautan..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Mengunggah video..." @@ -13408,7 +13427,7 @@ msgstr "Gunakan sandi ini untuk masuk ke aplikasi lain bersama dengan panggilan msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "Verifikasi gagal, silakan coba lagi." msgid "Verification settings" msgstr "Pengaturan verifikasi" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Pengaturan Verifikasi" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video gagal diproses" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Feed Video" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Video dari {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Permainan Video" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video telah dijeda" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video sedang diputar" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video tidak ditemukan." @@ -13653,7 +13672,7 @@ msgstr "Video tidak ditemukan." msgid "Video settings" msgstr "Pengaturan video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video diunggah" @@ -13662,17 +13681,17 @@ msgstr "Video diunggah" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Video" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Lihat avatar {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Lihat profil {0}" @@ -13724,13 +13743,13 @@ msgstr "Lihat postingan blog untuk detail lebih lanjut" msgid "View debug entry" msgstr "Lihat entri debug" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Lihat detail" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Lihat utas lengkap" @@ -13761,7 +13780,7 @@ msgstr "Lihat lainnya" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Lihat layanan pelabelan yang disediakan oleh @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Lihat verifikasi pengguna ini" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Lihat pengguna yang menyukai feed ini" @@ -13831,7 +13850,7 @@ msgstr "Lihat daftar moderasi Anda" msgid "View your muted accounts" msgstr "Lihat daftar akun yang Anda bisukan" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Lihat verifikasi Anda" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Kami mengalami masalah jaringan, coba lagi" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Kami memperkenalkan lapisan verifikasi baru di Bluesky — tanda centang yang mudah dilihat." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Maaf, kami tidak dapat memuat daftar ini. Jika masalah berlanjut, silaka 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/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Apa kabar?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Siapa yang dapat memverifikasi?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Waduh!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Tulis postingan" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Tulis balasan Anda" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "Anda tidak lagi bersiaran langsung" msgid "You are not allowed to upload videos." msgstr "Anda tidak diizinkan untuk mengunggah video." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "Anda telah diverfikasi. Status verifikasi Anda akan hilang jika Anda men msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Anda telah diverfikasi. Status verifikasi Anda akan hilang jika Anda mengganti nama panggilan Anda. <0>Pelajari selengkapnya." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Anda dapat menyesuaikan minat Anda kapan saja melalui pengaturan \"Konten dan Media\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Sekarang Anda dapat masuk dengan kata sandi baru." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Anda bisa mengubahnya nanti melalui pengaturan." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "Anda telah berhasil memverifikasi alamat email Anda. Anda dapat menutup msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Anda telah mencapai batas sementara unggahan video. Silakan coba lagi nanti." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Anda belum membuat paket pemula!" @@ -14614,7 +14636,7 @@ msgstr "Anda hanya dapat menambahkan hingga {STARTER_PACK_MAX_SIZE, plural, othe msgid "You may only add up to 3 feeds" msgstr "Anda hanya boleh menambahkan maksimal 3 feed" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "Anda perlu memverifikasi email Anda sebelum Anda mengaktifkan email 2FA." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Anda mungkin ingin memuat ulang aplikasi sekarang." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Anda menanggapi {0}" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Anda akan mengikuti pengguna dan feed yang disarankan setelah selesai membuat akun!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Anda akan mengikuti pengguna yang disarankan setelah selesai membuat akun!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Anda telah mencapai bagian akhir feed! Temukan lebih banyak akun lain untuk diikuti." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Anda telah mencapai jumlah maksimum permintaan yang diizinkan. Silakan coba lagi." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak bita)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak video)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Anda kehabisan video untuk ditonton. Mungkin sudah saatnya untuk beristirahat?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Akun Anda" @@ -14835,11 +14857,11 @@ msgstr "Akun Anda telah ditangguhkan" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Usia akun Anda belum cukup lama untuk menggungah video. Silakan coba lagi nanti." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Minat Anda telah diperbarui!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Minat Anda membantu kami mencari apa yang Anda sukai!" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "Kata sandi Anda harus terdiri dari setidaknya 8 karakter." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Preferensi bahasa Anda" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "Profil, postingan, feed, dan daftar Anda tidak akan terlihat lagi oleh pengguna Bluesky lain. Anda dapat mengaktifkan kembali kapan saja dengan cara masuk ke akun." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "Laporan anda akan dikirimkan ke <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Minat yang anda pilih membantu kami menyajikan konten yang Anda inginkan." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 7d61269429..5d8ba6717c 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: it\n" +"Language: it_IT\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria \"{interestsDisplayName}\" (attiva)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(messaggio bloccato nascosto)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contiene allegati)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(messaggio eliminato)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(link di invito alla chat non valido)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(messaggio inviato prima che tu partecipassi)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# ora} other {# ore}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# etichetta applicata al tuo post} other {# etichette applicate al tuo post}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# etichetta applicata} other {# etichette applicate}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# mi piace} other {# mi piace}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membro} other {# membri}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nuova richiesta di partecipazione} other {# nuove ric #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# persona ha} other {# persone hanno}} reagito – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (account)" @@ -251,36 +252,13 @@ msgstr "{0} aggiunto alla chat" msgid "{0} and {1} added to chat" msgstr "{0} e {1} aggiunti alla chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "Piace a {0} e {1}" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "Piace a {0} e {others, plural, one {{1} altro} other {{2} altri}}" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "Piace a {0} e {othersLabel}" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} seguiti" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} ti sta bloccando" @@ -324,14 +302,6 @@ msgstr "{0} ha abbandonato" msgid "{0} left the group" msgstr "{0} ha lasciato il gruppo" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "Piace a {0}" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} di 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ha reagito con {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} e {memberCount, plural, one {# altro} other {# altri}} aggiunti alla chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "Piace a {0}, {1} e {others, plural, one {{2} altro} other {{3} altri}}" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "Piace a {0}, {1} e {othersLabel}" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ti ha verificato" msgid "{following} following" msgstr "{following} seguiti" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "Non è possibile aggiungere {handle}" @@ -698,7 +660,7 @@ msgstr "Non è possibile aggiungere {handle}" msgid "{handle} can't be messaged" msgstr "{handle} non può ricevere messaggi" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} non può ricevere messaggi" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# elemento non letto} other {# elementi msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contatto trovato} other {# contatti trovati}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} altro} other {{1} altri}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} ha iniziato a usare Bluesky {timeAgoString} fa" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} ha iniziato a usare Bluesky {timeAgoString} fa con uno starter pack" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {# carattere rimanente} other {# caratteri rimanenti}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} ha risposto" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} ha risposto a {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} ti ha risposto" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# richiesta} other {# richieste}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ richieste" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}h fa" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} è un certificatore attendibile" @@ -842,13 +795,13 @@ msgstr "Verifiche di {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {seguito} other {seguiti}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citazione} other {citazioni}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} other {repost}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {salvato} other {salvati}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {mi piace} other {mi piace}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> ti ha aggiunto" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Accedi<1> o <2>crea un account<3> <4>per cercare notizie, sport, politica e tutto quello che accade su Bluesky." @@ -971,7 +924,7 @@ msgstr "30 giorni" msgid "7 days" msgstr "7 giorni" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Una raccolta di feed popolari che puoi trovare su Bluesky, tra cui News, Booksky, Game Dev, Blacksky e Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Si è verificato un errore di rete. Controlla la tua connessione a inter #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "È stato inviato un nuovo codice" msgid "A new form of verification" msgstr "Una nuova forma di verifica" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Una risposta a un messaggio inviato prima che tu partecipassi" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Uno screenshot mentre si scrive un post con un nuovo pulsante accanto al pulsante \"Post\" che ha testo \"Bozze\", con un effetto fuochi d'artificio color arcobaleno. Di seguito, nell'editor si legge \"Ehi, hai sentito la notizia? Bluesky ha le bozze ora!!!\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Uno dei destinatari selezionati non è seguito dal mittente." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Richiesta di adesione inoltrata: il proprietario del gruppo esaminerà l msgid "Accessibility" msgstr "Accessibilità" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Impostazioni di accessibilità" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Account silenziato dalla lista" msgid "Account options" msgstr "Opzioni dell'account" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Account rimosso dall'accesso rapido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Gli account con una spunta blu dentellata <0><1/> possono verificare l'identità di altri account. I certificatori attendibili sono selezionati da Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Attività da altri" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Aggiungi testo alternativo (opzionale)" msgid "Add another account" msgstr "Aggiungi un altro account" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Aggiungi un altro post" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Aggiungi un altro post al thread" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Aggiungi un altro filtro di ricerca" @@ -1253,7 +1213,7 @@ msgstr "Aggiungi etichetta automazione all'account" msgid "Add emoji reaction" msgstr "Aggiungi reazione con emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Aggiungi filtro" @@ -1338,7 +1298,7 @@ msgstr "Aggiungi feed" msgid "Add to lists" msgstr "Aggiungi a liste" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Aggiungi ai post salvati" @@ -1400,7 +1360,7 @@ msgstr "Esplicito" msgid "Adult content" msgstr "Contenuto per adulti" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Consente l'accesso ai tuoi messaggi" msgid "Already have a code?" msgstr "Hai già un codice?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Hai già un account?" @@ -1614,7 +1574,7 @@ msgstr "È stata inviata un'email a {0}. Include un codice di conferma che puoi msgid "An error has occurred" msgstr "Si è verificato un errore" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Si è verificato un errore" @@ -1631,7 +1591,7 @@ msgstr "Si è verificato un errore durante il recupero degli account suggeriti." msgid "An error occurred while fetching the feed." msgstr "Si è verificato un errore recuperando il feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Si è verificato un errore nel creare il tuo starter pack. Vuoi riprovare?" @@ -1640,11 +1600,11 @@ msgstr "Si è verificato un errore nel creare il tuo starter pack. Vuoi riprovar msgid "An error occurred while hiding suggestion. {0}" msgstr "Si è verificato un errore nascondendo il suggerimento. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Si è verificato un errore durante il caricamento del video. Riprova più tardi." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Si è verificato un errore durante il caricamento del video. Riprova." @@ -1684,7 +1644,7 @@ msgstr "Si è verificato un errore. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Un'illustrazione che raffigura avatar utente che passano da una rubrica all'app Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Un’immagine di diversi post su Bluesky con accanto le icone per ripubblicare, mettere mi piace e commentare" @@ -1705,17 +1665,15 @@ msgstr "Un link di invito consente ad altri di partecipare a questa chat di grup msgid "An issue not included in these options" msgstr "Un problema non incluso in queste opzioni" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Si è verificato un problema durante la creazione della chat di gruppo, riprova." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Si è verificato un problema durante l'avvio della chat, riprova." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Si è verificato un problema nell'aprire la chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Qualsiasi data" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Chiunque" @@ -1802,7 +1760,7 @@ msgstr "Chiunque mi segua" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Chiunque lo abbia non potrà più iscriversi o chiedere di partecipare. Puoi sempre crearne uno nuovo." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "I nomi delle password per app devono essere lunghi almeno 4 caratteri" msgid "App passwords" msgstr "Password per app" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Password per app" @@ -1891,8 +1849,8 @@ msgstr "Fai ricorso contro questa decisione" msgid "Appeal this label" msgstr "Contesta questa etichetta" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Applica pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archiviato da {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Post archiviato" @@ -1980,7 +1938,7 @@ msgstr "Vuoi rimuoverlo dai tuoi feed?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Annullare la richiesta di partecipare a {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Scartare questo post?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Account automatizzato" @@ -2033,7 +1991,7 @@ msgstr "Automatico" msgid "Automation label" msgstr "Etichetta automazione" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etichetta automazione" @@ -2050,12 +2008,16 @@ msgstr "Riproduci automaticamente video e GIF" msgid "Available" msgstr "Disponibile" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Devi verificare il tuo indirizzo email prima di creare un post o rispondere." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Prima di creare uno starter pack, devi verificare la tua email." @@ -2135,10 +2097,10 @@ msgstr "Devi verificare il tuo indirizzo email prima di poter ricevere notifiche #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2122,28 @@ msgstr "Inizia il processo di verifica dell'età compilando i campi sottostanti. msgid "Beta Feature" msgstr "Funzionalità beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "Funzionalità beta" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Le funzionalità beta potrebbero essere instabili. Alcune modifiche potrebbero richiedere di ricaricare l'app." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Le funzionalità beta potrebbero essere instabili. Alcune modifiche potrebbero richiedere di riavviare l'app." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "Data di nascita" msgid "Birthday" msgstr "Compleanno" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Bloccato" msgid "Blocked accounts" msgstr "Account bloccati" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Account bloccati" @@ -2282,7 +2250,7 @@ msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzio 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 "Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire in nessun altro modo con te. Non vedrai il loro contenuto e non vedranno il tuo." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Il blocco non impedisce all'etichettatore di inserire etichette sul tuo account." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non può confermare l'autenticità della data dichiarata." @@ -2330,7 +2299,7 @@ msgstr "Bluesky è una rete aperta dove puoi scegliere il fornitore che ospita i msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky è una rete aperta che ti permette di scegliere chi ospita i tuoi dati. Se sei un nuovo utente, ti consigliamo di iniziare con l'opzione predefinita Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky è meglio con gli amici!" @@ -2358,7 +2327,7 @@ msgstr "Termini di servizio di Bluesky" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky memorizza i tuoi contatti come dati codificati. La rimozione dei tuoi contatti eliminerà immediatamente questi dati." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky sceglierà un set di account consigliati dal tuo network." @@ -2425,24 +2394,25 @@ msgstr "Scopri nuovi suggerimenti nella pagina Esplora" msgid "Browse other feeds" msgstr "Cerca altri feed" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Sfoglia i post su {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Sfoglia i post con tag {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Sfoglia lo starter pack {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Sfoglia l'argomento {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Sfoglia l'argomento {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Pulsante per tornare alla timeline principale" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Di {0}" @@ -2473,9 +2443,9 @@ msgstr "di @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Di <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Iscrivendoti accetti i <0>Termini di servizio e l'<1>Informativa sul msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Iscrivendoti accetti i <0>Termini di servizio." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Da te" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Fotocamera" @@ -2534,7 +2504,7 @@ msgstr "Accesso alla fotocamera necessario" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Accesso alla fotocamera necessario" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Annulla la riattivazione e disconnettiti" msgid "Cancel reply" msgstr "Annulla risposta" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Annulla la ricerca" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Le modifiche allo starter pack fatte dopo la sua creazione non cambieranno la lista. La lista sarà una copia indipendente." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Conversazione silenziata" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chat non trovata." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Opzioni chat" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "I proprietari delle chat non possono lasciare una chat di gruppo." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Destinatario della chat non seguito dal mittente." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Richieste" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Richieste di messaggi" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Impostazioni chat" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Conversazione riattivata" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Messaggi" @@ -2810,7 +2781,7 @@ msgstr "Controlla la tua casella di posta <0>{currentEmail}: dovrebbe arriva #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Ricontrolla in seguito!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "Scegli il metodo di verifica del dominio" msgid "Choose Feeds" msgstr "Scegli feed" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Scegli per me" @@ -2854,7 +2825,7 @@ msgstr "Scegli utenti" msgid "Choose post languages" msgstr "Seleziona lingue del post" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Scegli questo colore per il tuo avatar" @@ -2879,7 +2850,7 @@ msgstr "Personalizza la tua cronologia! I feed creati dalla collettività ti per msgid "Choose your password" msgstr "Scegli la tua password" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Scegli il tuo nome utente" @@ -2966,7 +2937,7 @@ msgstr "Fai clic qui per visualizzare il link di invito per questa chat di grupp msgid "Click to open tag menu for {0}" msgstr "Fai clic per aprire il menu dei tag di {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clicca per riprovare l'invio" @@ -3003,7 +2974,7 @@ msgstr "Clicca per riprovare l'invio" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Clicca per riprovare l'invio" msgid "Close" msgstr "Chiudi" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Chiudi la finestra attiva" @@ -3047,7 +3018,7 @@ msgstr "Chiudi banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Chiudi visualizzatore immagini" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Chiudi menu" @@ -3090,7 +3061,7 @@ msgstr "Chiudi il banner delle richieste in arrivo" msgid "Close this dialog" msgstr "Chiudi la finestra" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Chiudi finestra di benvenuto" @@ -3098,7 +3069,7 @@ msgstr "Chiudi finestra di benvenuto" msgid "Closes password update alert" msgstr "Chiude l'avviso di aggiornamento della password" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Annulla la creazione del post ed elimina la bozza" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Colore" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modalità colore" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Fumetti" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Linee guida della community" @@ -3141,7 +3112,7 @@ msgstr "Linee guida della community" msgid "Complete onboarding and start using your account" msgstr "Completa la registrazione e inizia a usare il tuo account" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa la challenge" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Scrivi un nuovo post" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Scrivi post fino a {0, plural, other {# caratteri}}" @@ -3160,11 +3131,11 @@ msgstr "Scrivi post fino a {0, plural, other {# caratteri}}" msgid "Compose reply" msgstr "Scrivi la risposta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Compressione GIF in corso..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Compressione del video..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Contatta il nostro team di supporto" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contatta il supporto" @@ -3253,7 +3224,7 @@ msgstr "Contenuti e media" msgid "Content and media" msgstr "Contenuti e media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contenuti e media" @@ -3265,10 +3236,6 @@ msgstr "Contenuto bloccato" msgid "Content filters" msgstr "Filtri dei contenuti" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Contenuti dalla rete che potrebbero piacerti." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Lingue dei contenuti" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Contenuti che promuovono o raffigurano autolesionismo" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Avviso sul contenuto" msgid "Content warnings" msgstr "Avviso sui contenuti" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Sfondo del menu contestuale, clicca per chiudere il menu." @@ -3302,7 +3269,7 @@ msgstr "Sfondo del menu contestuale, clicca per chiudere il menu." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Continua thread..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continua al nome del gruppo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Conversazione non trovata." msgid "Copied build version to clipboard" msgstr "Versione della build copiata negli appunti" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Link copiato negli appunti" @@ -3376,7 +3343,7 @@ msgstr "Link copiato negli appunti" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copia password per app" msgid "Copy at:// URI" msgstr "Copia URL at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copia DID dell'autore" @@ -3449,10 +3416,10 @@ msgstr "Copia link" msgid "Copy link to list" msgstr "Copia link della lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copia link del post" @@ -3470,8 +3437,8 @@ msgstr "Copia link allo starter pack" msgid "Copy message text" msgstr "Copia testo del messaggio" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copia URL at:// del post" @@ -3490,7 +3457,7 @@ msgstr "Copia valore del record TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica sul diritto d'autore" @@ -3540,11 +3507,11 @@ msgstr "Impossibile seguire tutte le corrispondenze. {0}" msgid "Could not leave chat" msgstr "Impossibile abbandonare la chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Impossibile abbandonare la chat." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Non è stato possibile caricare il feed" @@ -3562,7 +3529,7 @@ msgstr "Impossibile caricare il profilo" msgid "Could not mute chat" msgstr "Errore nel silenziare la conversazione" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Impossibile rimuovere il membro." @@ -3606,8 +3573,8 @@ msgstr "mucche maiali" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crea" @@ -3624,26 +3591,26 @@ msgstr "Crea una lista da questo starter pack" msgid "Create a QR code for a starter pack" msgstr "Crea un codice QR per uno starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crea uno starter pack" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Crea uno starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea uno starter pack per me" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Crea account" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crea un account" @@ -3666,15 +3633,15 @@ msgstr "Crea un account" msgid "Create an account without using this starter pack" msgstr "Crea un account senza usare questo starter pack" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "In alternativa crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Creane un altro" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Crea chat di gruppo" @@ -3743,7 +3710,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "Funzionalità beta attuali" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Chat corrente" @@ -3770,8 +3737,8 @@ msgstr "Abuso di sostanze o droghe pericolose" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Scuro" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Scuro" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema scuro" @@ -3814,7 +3781,7 @@ msgstr "Rifiuta questa lingua suggerita" msgid "Deepfake adult content" msgstr "Contenuti per adulti deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Predefinito" @@ -3894,7 +3861,7 @@ msgstr "Elimina il mio account" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Elimina il post" @@ -3988,7 +3955,7 @@ msgstr "Dialog: configura chi può interagire con questo post" msgid "Dialog: Set search filters" msgstr "Finestra: imposta filtri di ricerca" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Soffuso" @@ -4002,7 +3969,7 @@ msgstr "Disabilita" msgid "Disable 2FA" msgstr "Disabilita 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Disabilita sottotitoli" @@ -4045,9 +4012,9 @@ msgstr "Disabilitato" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Scarta" msgid "Discard changes?" msgstr "Scartare le modifiche?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Scartare la bozza?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Scartare il post?" @@ -4079,6 +4046,10 @@ msgstr "Disconnetti Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" msgid "Discover new custom feeds" msgstr "Scopri nuovi feed personalizzati" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Scopri nuovi feed" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Scopri nuovi feed" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignora" @@ -4103,19 +4070,19 @@ msgstr "Ignora" msgid "Dismiss banner" msgstr "Chiudi banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Ignora errore" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Ignora la guida iniziale" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Ignora gli interessi" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Chiudi il banner delle dirette" @@ -4142,7 +4109,7 @@ msgstr "Aumenta dimensione dell'icona del testo alternativo" msgid "Display name" msgstr "Nome visualizzato" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Lascia perdere i troll e gli acchiappa-click. Trova persone vere e conversazioni che ti interessano." @@ -4205,8 +4172,8 @@ msgstr "Non preoccuparti! Tutti i messaggi e le impostazioni esistenti sono stat #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Non preoccuparti! Tutti i messaggi e le impostazioni esistenti sono stat msgid "Done" msgstr "Fatto" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tocca due volte o tieni premuto il messaggio per aggiungere una reazione" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tocca due volte per chiudere la finestra" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tocca due volte per mettere mi piace" @@ -4328,6 +4295,7 @@ msgstr "Disturbi alimentari" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Modifica immagine" msgid "Edit interaction settings" msgstr "Modifica impostazioni di interazione" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Modifica interessi" @@ -4397,7 +4365,7 @@ msgstr "Modifica stato in diretta" msgid "Edit moderation list" msgstr "Modifica lista di moderazione" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Modifica i miei feed" @@ -4406,6 +4374,11 @@ msgstr "Modifica i miei feed" msgid "Edit name" msgstr "Modifica nome" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Modifica utenti" @@ -4444,7 +4417,7 @@ msgstr "Modifica lista di utenti" msgid "Edit who can reply" msgstr "Modifica chi può rispondere" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Modifica il tuo starter pack" @@ -4500,8 +4473,8 @@ msgstr "Incorpora il codice HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incorpora il post" @@ -4509,7 +4482,7 @@ msgstr "Incorpora il post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorpora questo post nel tuo sito web. Copia il seguente ritaglio e incollalo nel codice HTML del tuo sito web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Lettore video incorporato" @@ -4533,7 +4506,7 @@ msgstr "Attiva il contenuto per adulti" msgid "Enable beta features" msgstr "Abilita funzionalità beta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Abilita sottotitoli" @@ -4550,12 +4523,13 @@ msgstr "Abilita i media esterni" msgid "Enable media players for" msgstr "Attiva i lettori multimediali per" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Abilita le notifiche per un account visitandone il profilo e premendo l'<0>icona a forma di campanella <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Abilita notifiche push" @@ -4581,7 +4555,7 @@ msgstr "Attiva i video di tendenza nel feed Discover" msgid "Enabled" msgstr "Abilitato" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fine del feed" @@ -4608,7 +4582,7 @@ msgstr "Inserisci una parola o tag" msgid "Enter code" msgstr "Inserisci codice" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Passa a schermo intero" @@ -4650,11 +4624,11 @@ msgstr "Inserisci il tuo nome utente e la tua password" msgid "Enters full screen" msgstr "Passa a schermo intero" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Intrattenimento" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Errore" @@ -4684,7 +4658,7 @@ msgstr "C'è stato un errore durante il salvataggio del file" msgid "Error receiving captcha response." msgstr "Errore nella risposta del captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Errore: {error}" @@ -4696,8 +4670,8 @@ msgstr "Tutti possono rispondere" msgid "Everybody can reply to this post." msgstr "Tutti possono rispondere a questo post." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Tutti" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Tutti" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Tutto il resto" @@ -4738,7 +4712,7 @@ msgstr "Escludi utenti che segui" msgid "Excludes users you follow" msgstr "Esclude gli utenti che segui" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Esci da schermo intero" @@ -4755,11 +4729,11 @@ msgstr "Espandi la lista di utenti" msgid "Expand or collapse the full post you are replying to" msgstr "Espandi o comprimi il post a cui stai rispondendo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Espandi testo del post" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Espande o comprime il testo del post" @@ -4802,15 +4776,15 @@ msgstr "Media espliciti o potenzialmente inquietanti." msgid "Explicit sexual images." msgstr "Immagini sessuali esplicite." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Esplora" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Esplora l'app" @@ -4844,7 +4818,7 @@ msgstr "Media esterni" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "I media esterni potrebbero consentire ai siti web di raccogliere informazioni su di te e sul tuo dispositivo. Nessuna informazione viene inviata o richiesta finché non si preme il pulsante \"Riproduci\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferenze media esterni" @@ -4886,7 +4860,7 @@ msgstr "Non è stato possibile cambiare il nome utente. Riprovare." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Impossibile copiare il link" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Impossibile abbandonare la chat di gruppo" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Impossibile caricare le conversazioni" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Impossibile caricare i feed" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Impossibile caricare preferenze feed" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Non è stato possibile caricare le impostazioni delle notifiche." @@ -5012,14 +4987,14 @@ msgstr "Impossibile caricare le preferenze." msgid "Failed to load profiles" msgstr "Impossibile caricare i profili" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Impossibile caricare feed consigliati" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Impossibile caricare follow consigliati" @@ -5027,12 +5002,12 @@ msgstr "Impossibile caricare follow consigliati" msgid "Failed to lock group chat" msgstr "Impossibile bloccare la chat di gruppo" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Impossibile contrassegnare tutte le chat come lette" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Impossibile annullare la richiesta. Riprova." msgid "Failed to resolve location. Please try again." msgstr "Impossibile determinare la posizione. Riprova." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Impossibile salvare la bozza" @@ -5191,7 +5166,7 @@ msgstr "Account falso o bot" msgid "False information about elections" msgstr "False informazioni sulle elezioni" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "Autore del feed" msgid "Feed identifier" msgstr "Identificativo del feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu del feed" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback inviato" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feed aggiornati!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feed che potrebbero piacerti." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Scarica aggiornamento" @@ -5273,11 +5244,11 @@ msgstr "Scarica aggiornamento" msgid "File saved successfully!" msgstr "File salvato con successo!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Filtra per autore" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtra per autore (attualmente: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Filtra questa ricerca per {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtra chi può scegliere di ricevere notifiche per le tue attività" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtra da chi ricevi le notifiche" @@ -5352,8 +5323,8 @@ msgstr "Scopri account da seguire" msgid "Find and invite friends" msgstr "Trova e invita amici" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Trova contatti" @@ -5387,7 +5358,7 @@ msgstr "Trova i tuoi amici" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Trova i tuoi amici su Bluesky verificando il tuo numero di telefono e confrontandolo con i tuoi contatti. Proteggiamo le tue informazioni e hai il controllo su ciò che accade dopo. <0>Maggiori informazioni" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Trova le tue persone" @@ -5429,7 +5400,7 @@ msgstr "Attiva il campo di ricerca" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Segui {0}" msgid "Follow {displayName}" msgstr "Segui {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Segui {handle}" @@ -5453,11 +5424,11 @@ msgstr "Segui {handle}" msgid "Follow 10 accounts" msgstr "Segui 10 account" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Segui 10 persone per iniziare" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Segui 7 account" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Chi segue può partecipare" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Follower di @{0} che conosci" @@ -5544,7 +5515,7 @@ msgstr "Follower che conosci" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Stai seguendo {0}" msgid "Following {displayName}" msgstr "Seguendo {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Stai seguendo {handle}" @@ -5578,21 +5549,21 @@ msgstr "Stai seguendo {handle}" msgid "Following feed preferences" msgstr "Preferenze del feed Seguiti" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferenze del feed Seguiti" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Ti segue" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Carattere" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Dimensione carattere" @@ -5612,13 +5583,13 @@ msgstr "Per motivi di sicurezza invieremo un codice di conferma al tuo indirizzo msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Per motivi di sicurezza non potrai più visualizzarla. Se perdi questa password per app, dovrai generarne una nuova." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Per una migliore esperienza, consigliamo di usare il font del tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Per te" @@ -5628,7 +5599,7 @@ msgstr "Per te" msgid "Forever" msgstr "Per sempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Niente più chiasso inutile" @@ -5647,11 +5618,13 @@ msgstr "Password dimenticata?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Quattro fumetti che rappresentano una chat di gruppo. Primo messaggio: \"Hai sentito la novità? Bluesky ora ha le chat di gruppo!\" Secondo messaggio: \"Cavolo, non ci credo\" Terzo messaggio: \"Wow, 50 persone in una sola chat!\" Quarto messaggio: \"Puoi anche inviare link di invito!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Libera il tuo feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Da" @@ -5674,7 +5647,7 @@ msgstr "Da <0/>" msgid "From these people" msgstr "Da queste persone" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Genera uno starter pack" @@ -5718,39 +5691,39 @@ msgstr "Ottieni accesso anticipato alle funzionalità sperimentali che stiamo pr msgid "Get help" msgstr "Ottieni aiuto" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Ricevi notifiche per le iscrizioni agli starter pack, per le verifiche e per altre attività." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Ricevi notifiche quando le persone ti seguono." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Ricevi notifiche quando le persone mettono mi piace ai tuoi post." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Ricevi notifiche quando le persone mettono mi piace ai tuoi post." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Ricevi notifiche quando le persone ti menzionano." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Ricevi notifiche quando le persone citano i tuoi post." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Ricevi notifiche quando le persone rispondono ai tuoi post." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Ricevi notifiche quando le persone ripostano i tuoi post." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Ricevi notifiche quando le persone ripostano i tuoi repost." @@ -5762,15 +5735,15 @@ msgstr "Ricevi notifiche quando le persone ti inviano richieste di messaggi." msgid "Get notifications when people send you messages." msgstr "Ricevi notifiche quando le persone ti inviano messaggi." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Ricevi notifiche quando ci sono attività relative ai post a cui sei iscritto." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Ricevi notifiche di nuovi post" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Ricevi notifiche di nuovi post di {name}" @@ -5799,11 +5772,11 @@ msgstr "Per cominciare" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF caricata" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Dai un volto al tuo profilo" @@ -5813,20 +5786,20 @@ msgstr "Glorificazione della violenza" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Vai in diretta per" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Vai al profilo di {0}" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nome chat di gruppo aggiornato" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Impostazioni chat di gruppo" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Le chat di gruppo possono avere un massimo di {0, plural, other {# persone}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Il gruppo è bloccato" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nome del gruppo" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Il nome del gruppo è troppo lungo. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Il numero massimo di caratteri è #.}}" @@ -6077,7 +6051,7 @@ msgstr "Attività nocive o a rischio elevato" msgid "Harming or endangering minors" msgstr "Danni o pericoli per i minori" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Hai un codice? <0>Fai clic qui." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Abbiamo sbagliato la tua posizione? <0>Tocca qui per aggiornare la tua posizione tramite GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Ci sono problemi?" @@ -6114,7 +6088,7 @@ msgstr "Conservato da Bluesky per 7 giorni per prevenire abusi, poi eliminato" msgid "Help" msgstr "Aiuto" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 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." @@ -6140,7 +6114,7 @@ msgstr "Ciao!" msgid "Hidden" msgstr "Nascosto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Nascosto dalle tue impostazioni di moderazione." @@ -6148,9 +6122,9 @@ msgstr "Nascosto dalle tue impostazioni di moderazione." msgid "Hidden list" msgstr "Lista nascosta" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Lista nascosta" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Nascondi" @@ -6198,7 +6172,7 @@ msgstr "Nascondi risposta per tutti" msgid "Hide reply for me" msgstr "Nascondi risposta per me" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Nascondi" @@ -6218,12 +6192,12 @@ msgstr "Nascondere questa risposta?" msgid "Hide translation" msgstr "Nascondi traduzione" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Nascondi gli argomenti di tendenza" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Nascondere gli argomenti di tendenza?" @@ -6240,7 +6214,7 @@ msgstr "Nascondi elenco utenti" msgid "Hide verification badges" msgstr "Nascondi spunta di verifica" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Nasconde il contenuto" @@ -6293,8 +6267,8 @@ msgstr "Non siamo riusciti a caricare il servizio di moderazione." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Un po' di pazienza: stiamo gradualmente dando accesso al video e tu sei ancora in coda. Ricontrolla presto!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Fornitore di hosting: {0}" msgid "Hosting provider: Bluesky" msgstr "Fornitore di hosting: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Hot" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Come funziona:" @@ -6409,6 +6379,7 @@ msgstr "Se aggiorni il tuo indirizzo email, la 2FA via email verrà disabilitata msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se vuoi modificare la password, ti invieremo un codice per verificare che questo è il tuo account." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Per limitare chi può ricevere notifiche sull'attività del tuo account vai in <0>Impostazioni → Privacy e sicurezza." @@ -6548,7 +6519,7 @@ msgstr "Nell'app, push, tutti" msgid "In-app, push, people you follow" msgstr "Nell'app, push, persone che segui" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Posta in arrivo vuota" @@ -6560,6 +6531,7 @@ msgstr "Nessuna richiesta!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Sei solo tu al momento! Aggiungi altre persone al tuo starter pack cercandole qui in alto." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID processo: {0}" @@ -6816,8 +6788,8 @@ msgstr "Partecipa alla conversazione" msgid "Journalism" msgstr "Giornalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continua a modificare" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Sito web di KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etichettato da {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etichettato dall'autore." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etichette" @@ -6852,7 +6824,7 @@ msgstr "Etichette aggiunte" msgid "Labels applied to this post" msgstr "Etichette applicate a questo post" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 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 usate per nascondere, apporre avvisi e classificare il network." @@ -6864,7 +6836,7 @@ msgstr "Etichette sul tuo account" msgid "Language" msgstr "Lingua" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Impostazione delle lingue" @@ -6874,7 +6846,7 @@ msgstr "Impostazione delle lingue" msgid "Languages" msgstr "Lingue" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Più grande" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Ultimo avvio adesso" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Recenti" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Maggiori informazioni" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Maggiori informazioni" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Maggiori informazioni su <0>come usare la ricerca avanzata." @@ -6937,8 +6909,8 @@ msgstr "Maggiori informazioni sull'importazione dei contatti" msgid "Learn more about self hosting your PDS." msgstr "Maggiori informazioni su come ospitare il tuo server." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Maggiori informazioni sulla moderazione applicata a questo contenuto" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Maggiori informazioni su queste modifiche e su come condividere le tue opinioni con noi nel nostro post sul blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Maggiori informazioni su questo avviso" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Maggiori informazioni nelle <0>impostazioni dell'account." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Maggiori informazioni." @@ -6993,8 +6965,8 @@ msgstr "Abbandona" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Stai lasciando Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Se la abbandoni, questa chat verrà bloccata definitivamente e non potrai parteciparvi più." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Chat di gruppo abbandonata." @@ -7042,7 +7014,7 @@ msgstr "Chat di gruppo abbandonata." msgid "left to go." msgstr "mancanti." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lascia scegliere a me" @@ -7057,7 +7029,7 @@ msgstr "Andiamo!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Chiaro" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Chiaro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Mi piace" @@ -7076,7 +7048,7 @@ msgstr "Mi piace" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mi piace ({0, plural, one {# mi piace} other {# mi piace}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Metti mi piace a 10 post" @@ -7085,7 +7057,7 @@ msgstr "Metti mi piace a 10 post" msgid "Like 10 posts to train the Discover feed" msgstr "Metti mi piace a 10 post per allenare il feed Discover" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Metti mi piace a questo feed" @@ -7093,8 +7065,8 @@ msgstr "Metti mi piace a questo feed" msgid "Like this labeler" msgstr "Mi piace" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Piace a" @@ -7111,27 +7083,45 @@ msgstr "Piace a" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Piace a {0, plural, one {# utente} other {# utenti}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Piace a {likeCount, plural, one {# utente} other {# utenti}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Mi piace" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Mi piace dei tuoi repost" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Mi piace in questo post" @@ -7144,7 +7134,7 @@ msgstr "Classico" msgid "Link copied to clipboard" msgstr "Link copiato negli appunti" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista riattivata" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Evento attualmente in diretta: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Evento in diretta nascosto" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Evento in diretta non nascosto" @@ -7279,12 +7269,12 @@ msgstr "La funzionalità In diretta è in beta" msgid "Live link" msgstr "Link alla diretta" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Carica di più" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Carica più feed consigliati" @@ -7292,8 +7282,8 @@ msgstr "Carica più feed consigliati" msgid "Load new notifications" msgstr "Carica più notifiche" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Blocca questa chat di gruppo" msgid "Locked" msgstr "Bloccato" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7387,7 +7377,7 @@ msgstr "GIF d’amore" msgid "Make adjustments to email settings for your account" msgstr "Modifica le impostazioni dell'email del tuo account" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Creane uno per me" @@ -7418,15 +7408,15 @@ msgstr "Manuale" msgid "Mark all as read" msgstr "Segna tutto come letto" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Contrassegna tutte le chat come lette" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Segna come letto" msgid "Marked all as read" msgstr "Segnato tutto come letto" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Tutte le chat sono state contrassegnate come lette" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Tutte le richieste sono state contrassegnate come lette" @@ -7456,8 +7446,12 @@ msgstr "Tutte le richieste sono state contrassegnate come lette" msgid "Maybe later" msgstr "Forse più tardi" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7469,7 @@ msgstr "Media salvati su un altro dispositivo" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Contenuti che potrebbero disturbare o risultare inappropriati per alcuni tipi di pubblico." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membro rimosso dalla chat di gruppo." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "utenti menzionati" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menzioni" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Messaggio eliminato" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Impossibile inviare il messaggio." @@ -7563,15 +7557,15 @@ msgstr "Il messaggio è troppo lungo ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Opzioni messaggio" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Messaggi" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "I messaggi di questa persona sono nascosti mentre ti sta bloccando." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "I messaggi di questa persona sono nascosti mentre la stai bloccando." @@ -7592,7 +7586,7 @@ msgstr "Ingannevole" msgid "Missing media" msgstr "File multimediale mancante" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderazione" @@ -7636,7 +7630,7 @@ msgstr "Lista di moderazione aggiornata" msgid "Moderation lists" msgstr "Liste di moderazione" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liste di moderazione" @@ -7645,7 +7639,7 @@ msgstr "Liste di moderazione" msgid "moderation settings" msgstr "impostazioni di moderazione" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Stato di moderazione" @@ -7786,7 +7780,7 @@ msgstr "Silenziato" msgid "Muted accounts" msgstr "Account silenziati" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Account silenziati" @@ -7867,7 +7861,6 @@ msgstr "Vuoi segnalare una violazione del diritto d'autore, una richiesta legale msgid "Nevermind, create a handle for me" msgstr "Non importa, crea un nome utente per me" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nuova" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {Nuovo} other {Nuovi}} post di {firstAuthorName #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nuova chat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Nuova funzionalità" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nuovi follower" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nuova chat di gruppo" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nuova chat di gruppo" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nuova chat di gruppo con:" @@ -7966,13 +7959,13 @@ msgstr "Nuova lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Nuove richieste di messaggi" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Nuovi messaggi" @@ -7982,12 +7975,12 @@ msgstr "Nuovi messaggi" msgid "New password" msgstr "Nuova password" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nuovo post" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Prima le risposte più recenti" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Notizie" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Immagine successiva" msgid "Night" msgstr "Notte" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Niente pubblicità, niente tracciamenti invasivi, niente inganni. Bluesky rispetta il tuo tempo e la tua attenzione." @@ -8098,7 +8091,7 @@ msgstr "Scadenza non impostata" msgid "No feeds found. Try searching for something else." msgstr "Nessun feed trovato. Prova a cercarne altri." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Ancora nessun follower" @@ -8118,7 +8111,7 @@ msgstr "Nessuna immagine" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ancora nessun mi piace" @@ -8135,7 +8128,7 @@ msgstr "Nessuna lista" msgid "No longer following {0}" msgstr "Non segui più {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Ancora nessun media" @@ -8143,7 +8136,7 @@ msgstr "Ancora nessun media" msgid "No messages yet" msgstr "Ancora nessun messaggio" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Niente più notizie deprimenti e algoritmi spazzatura. Scopri feed pensati per te, non contro di te." @@ -8184,12 +8177,12 @@ msgstr "Nessuno può inviare messaggi" msgid "No posts here" msgstr "Nessun post qui" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Ancora nessun post" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ancora nessuna citazione" @@ -8202,7 +8195,7 @@ msgstr "Ancora nessuna GIF recente. Selezionane una per vederla qui." msgid "No replies" msgstr "Nessuna risposta" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Ancora nessuna risposta" @@ -8217,13 +8210,13 @@ msgstr "Nessun risultato" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Nessun risultato" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Nessun risultato per \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Nessun risultato trovato" msgid "No results found for \"{query}\"" msgstr "Nessun risultato trovato per \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "Nessun risultato trovato per “<0>{query}” con i filtri di ricerca avanzata specificati." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Nessun risultato per “<0>{query}”." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Nessun risultato trovato per la tua ricerca con i filtri di ricerca avanzata applicati." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Nessun risultato." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Ancora nessuno starter pack" @@ -8265,7 +8258,7 @@ msgstr "No grazie" msgid "No translation received from your device." msgstr "Nessuna traduzione ricevuta dal tuo dispositivo." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Ancora nessun post video" @@ -8278,7 +8271,7 @@ msgstr "Nessuno" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nessuno ha ancora messo mi piace. Magari potresti essere il primo!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nessuno ha ancora citato questo post. Magari potresti essere il primo!" @@ -8298,6 +8291,10 @@ msgstr "Immagini intime non consensuali" msgid "Non-sexual Nudity" msgstr "Nudità non sessuale" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Non disponibile su questa piattaforma." msgid "Not followed by anyone you’re following" msgstr "Non seguito da nessuno che segui" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Non trovato" @@ -8333,7 +8330,7 @@ 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/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: questo post è visibile solo agli utenti che hanno effettuato l'accesso." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Non è stato ancora salvato nulla" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Impostazioni notifiche" @@ -8353,11 +8350,12 @@ msgstr "Impostazioni notifiche" msgid "Notification sounds" msgstr "Suoni di notifica" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Oh no!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Va bene" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Reimposta account" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Uno dei destinatari selezionati non consente le chat di gruppo." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Uno dei destinatari selezionati ti ha bloccato e non puoi inviargli messaggi." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Una o più GIF non hanno un testo alternativo." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "A una o più immagini manca il testo alternativo." @@ -8454,11 +8454,11 @@ msgstr "Uno o più file selezionati non sono supportati." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Uno o più dei file selezionati è troppo grande. La dimensione massima è di {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Uno o più post sono troppo lunghi per essere salvati come bozza. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Il numero massimo di caratteri è #.} other {Il numero massimo di caratteri è #.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "In uno o più video manca il testo alternativo." @@ -8471,7 +8471,7 @@ msgstr "Solo gli {0} possono rispondere." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Solo {0} {2, plural, one {immagine è stata aggiunta} other {immagini sono state aggiunte}} su {1}; il limite è {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "Solo post con video" msgid "Only replies" msgstr "Solo risposte" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Solo i file WebVTT (.vtt) sono supportati" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ops, questo profilo non esiste. Prova a scansionarne un altro." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ops!" @@ -8544,7 +8544,7 @@ msgstr "Ops!" msgid "Open advanced search options" msgstr "Apri opzioni di ricerca avanzata" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Apri il creatore di avatar" @@ -8570,21 +8570,22 @@ msgstr "Apri opzioni conversazione" msgid "Open draft" msgstr "Apri bozza" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Apri il menu a scomparsa" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Apri il selettore emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Apri schermata informazioni del feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Apri il menu delle opzioni del feed" @@ -8627,7 +8628,7 @@ msgstr "Apri pagina di debug della moderazione" msgid "Open muted words and tags settings" msgstr "Apri le impostazioni delle parole e dei tag silenziati" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Apri pack" @@ -8699,7 +8700,7 @@ msgstr "Apre dettagli aggiuntivi per una debug entry" msgid "Opens alt text dialog" msgstr "Apre la finestra di dialogo del testo alternativo" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Apre la fotocamera sul dispositivo" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Apre il procedimento per creare un nuovo account Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Apre la procedura per accedere al tuo account esistente di Bluesky" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Password aggiornata!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausa" @@ -8925,12 +8926,12 @@ msgstr "Pausa" msgid "Pause GIF" msgstr "Metti GIF in pausa" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Metti video in pausa" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Utenti" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Le persone seguite da {ownerName} possono chiedere di partecipare" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persone seguite da @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persone che seguono @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Persone che seguo" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Le persone che seguo possono chiedere di partecipare" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Persone che segui" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Immagini consigliate ad un pubblico adulto." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fissa feed" @@ -9034,7 +9035,7 @@ msgstr "Fissa feed" msgid "Pin to home" msgstr "Fissa su home" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fissa su home" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Fissato" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} fissato su home" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Fissato ai tuoi feed" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Riproduci" @@ -9076,8 +9077,8 @@ msgstr "Riproduci {0}" msgid "Play GIF" msgstr "Riproduci GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Riproduci video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Scrivi il tuo messaggio qui sotto:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politica" @@ -9269,7 +9270,7 @@ msgstr "Politica" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Post" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Pubblica una foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Pubblica un video" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Posta tutti" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Pubblica comunque" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Post bloccato" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Pubblicato da @{0}" @@ -9340,7 +9341,7 @@ msgstr "Post nascosto da te" msgid "Post interaction settings" msgstr "Gestisci interazioni post" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Impostazioni interazioni" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Post fissato" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Post salvato" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Post non più fissato" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Post" @@ -9398,6 +9396,10 @@ msgstr "I post possono essere silenziati in base al loro testo, ai loro tag o a msgid "Posts hidden" msgstr "Post nascosto" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potenzialmente ingannevole" @@ -9449,20 +9451,21 @@ msgstr "Privacy" msgid "Privacy and security" msgstr "Privacy e sicurezza" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy e sicurezza" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Impostazioni privacy e sicurezza" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Informativa sulla privacy" msgid "Privacy violation of a minor" msgstr "Violazione della privacy di un minore" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Elaborazione GIF in corso..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Elaborazione video in corso..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Elenchi pubblici e condivisibili di utenti da silenziare o bloccare in massa." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Pubblica post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Pubblica i post" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Pubblica risposte" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Pubblica risposta" @@ -9599,12 +9602,12 @@ msgstr "Citazioni disattivate" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citazioni" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citazioni post" @@ -9647,7 +9650,7 @@ msgstr "Riattiva account" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Leggi {0, plural, one {# altra risposta} other {# altre risposte}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Scopri come usare i filtri di ricerca avanzati" @@ -9657,11 +9660,11 @@ msgstr "Scopri come usare i filtri di ricerca avanzati" msgid "Read blog post" msgstr "Leggi post del blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Leggi di meno" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Leggi di più" @@ -9687,11 +9690,11 @@ msgstr "Leggi l'informativa sulla privacy di Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leggi i termini di servizio di Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Conversazioni reali." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Persone vere." @@ -9721,10 +9724,6 @@ msgstr "Ricerche recenti" msgid "Recently used" msgstr "Usate di recente" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Consigliati" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Riconnetti" @@ -9748,7 +9747,7 @@ msgstr "Rifiuta richiesta" msgid "Reject join request" msgstr "Rifiuta richiesta di partecipazione" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Ricarica conversazioni" @@ -9766,7 +9765,7 @@ msgstr "Ricarica conversazioni" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Rimuovi" @@ -9792,8 +9791,8 @@ msgstr "Rimuovere {displayName}?" msgid "Remove {q}" msgstr "Rimuovi {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Rimuovi account" @@ -9845,15 +9844,15 @@ msgstr "Rimuovi filtro" msgid "Remove from chat" msgstr "Rimuovi dalla chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Rimuovi dai miei feed" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Rimuovere da accesso rapido?" @@ -9862,7 +9861,7 @@ msgstr "Rimuovere da accesso rapido?" msgid "Remove from saved feeds" msgstr "Rimuovi dai feed salvati" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Rimuovi dai post salvati" @@ -9880,8 +9879,8 @@ msgstr "Rimuovi immagine" msgid "Remove live status" msgstr "Rimuovi stato in diretta" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Rimuovi membro" @@ -9943,7 +9942,7 @@ msgstr "Rimosso dalla lista" msgid "Removed from saved feeds" msgstr "Rimosso dai feed salvati" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Rimosso dai post salvati" @@ -9952,7 +9951,7 @@ msgstr "Rimosso dai post salvati" msgid "Removed from starter pack" msgstr "Rimosso dallo starter pack" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Ti ha risposto" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Messaggio da {senderName} a cui è stato risposto, tocca per scorrere fino a esso" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Il messaggio a cui è stato risposto è stato inviato prima che tu partecipassi" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Messaggio a cui è stato risposto, tocca per scorrere fino a esso" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Risposte" @@ -10037,7 +10037,7 @@ msgstr "Le risposte a questo post sono disattivate." msgid "Reply" msgstr "Rispondi" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Rispondi" @@ -10098,8 +10098,8 @@ msgstr "Segnala conversazione" msgid "Report dialog" msgstr "Segnala dialogo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Segnala feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Ripubblicato da te" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Repost" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Ripubblicazioni di questo post" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Repost dei tuoi repost" @@ -10253,7 +10253,7 @@ msgstr "Richiesto" msgid "Requests" msgstr "Richieste" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Ritenta l'ultima azione che ha generato un errore" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Ritorna alla home" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Ritorna alla pagina precedente" @@ -10446,27 +10446,27 @@ msgstr "Salva data di nascita" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salva modifiche" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Salvare le modifiche?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Salva bozza" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Salvare la bozza?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Salva codice QR" msgid "Save these options for next time" msgstr "Salva queste opzioni per la prossima volta" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Salva nei miei feed" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feed salvati" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Post salvati" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Salvato nei tuoi feed" @@ -10520,8 +10520,8 @@ msgstr "Salvato nei tuoi feed" msgid "Say hello!" msgstr "Di' ciao!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Saluta qualcuno" @@ -10535,7 +10535,7 @@ msgstr "Scansiona" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Scansiona codice QR" @@ -10543,15 +10543,15 @@ msgstr "Scansiona codice QR" msgid "Science" msgstr "Scienza" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Scorri a sinistra" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Scorri a destra" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Scorri fino al messaggio a cui questa risposta si riferisce" @@ -10564,8 +10564,8 @@ msgstr "Scorri verso l'alto" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cerca" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cerca post di @{0}" @@ -10612,11 +10612,11 @@ msgstr "Cerca {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Cerca feed che potresti suggerire ad altri utenti." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Cerca altri account" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Cerca altri feed" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cerca GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "La ricerca non è disponibile per gli utenti che non hanno effettuato l'accesso" @@ -10709,6 +10709,7 @@ msgstr "Vedi offerte di lavoro in Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Vedi di più" @@ -10716,8 +10717,12 @@ msgstr "Vedi di più" msgid "See more suggested profiles" msgstr "Vedi altri profili consigliati" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Vedi account suggeriti" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Cursore di ricerca. Usa i tasti freccia per cercare avanti e indietro, lo spazio per riprodurre/mettere in pausa" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Seleziona categoria \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Seleziona {0}" msgid "Select {langName}" msgstr "Seleziona {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Scegli un colore" @@ -10764,11 +10769,11 @@ msgstr "Seleziona account" msgid "Select an app language" msgstr "Seleziona una lingua per l'app" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Scegli un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Scegli un emoji" @@ -10780,12 +10785,13 @@ msgstr "Seleziona un'opzione" msgid "Select app language" msgstr "Seleziona lingua app" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Seleziona file dei sottotitoli (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Seleziona chat \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Seleziona GIF" msgid "Select GIF \"{0}\"" msgstr "Seleziona GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Seleziona membri della chat di gruppo" @@ -10864,7 +10870,7 @@ msgstr "Seleziona lingua principale" msgid "Select telephone code" msgstr "Seleziona codice telefonico" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Scegli la {emojiName} emoji come tuo avatar" @@ -10945,7 +10951,8 @@ msgstr "Invia messaggio" msgid "Send post to {name}" msgstr "Invia post a {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Invia post a..." @@ -10963,12 +10970,12 @@ msgstr "Invia il messaggio dal tuo telefono" msgid "Send verification email" msgstr "Invia email di verifica" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Invia tramite messaggi" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Imposta il tuo fornitore di hosting manualmente" msgid "Sets email for password reset" msgstr "Imposta l'email per la reimpostazione della password" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Impostazioni" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Impostazioni per attività degli altri" @@ -11036,49 +11043,49 @@ msgstr "Impostazioni per attività degli altri" msgid "Settings for allowing others to be notified of your posts" msgstr "Impostazioni per consentire ad altri di ricevere notifiche dei tuoi post" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Impostazioni per notifiche di mi piace" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Impostazioni per notifiche di menzioni" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Impostazioni per notifiche di nuovi follower" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Impostazioni per notifiche di tutto il resto" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Impostazioni per notifiche di mi piace ai tuoi repost" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Impostazioni per le notifiche di nuove richieste di messaggi" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Impostazioni per le notifiche di nuovi messaggi" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Impostazioni per notifiche di repost dei tuoi repost" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Impostazioni per notifiche di citazioni" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Impostazioni per notifiche di risposte" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Impostazioni per notifiche di repost" @@ -11115,8 +11122,8 @@ msgstr "Condividi fascia d'età" msgid "Share anyway" msgstr "Condividi comunque" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Condividi DID autore" @@ -11127,7 +11134,7 @@ msgstr "Condividi DID autore" msgid "Share feedback" msgstr "Condividi feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Finestra link di condivisione" msgid "Share my profile" msgstr "Condividi il mio profilo" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Condividi URL at:// del post" @@ -11169,12 +11176,12 @@ msgstr "Condividi profilo" msgid "Share QR code" msgstr "Condividi codice QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Condividi questo feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Condividi questa ricerca" @@ -11186,8 +11193,8 @@ msgstr "Condividi starter pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Condividi questo starter pack e invita le persone a far parte della tua community su Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Condividi i tuoi contatti per trovare amici" msgid "Share your thoughts…" msgstr "Condividi le tue opinioni…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Test preferenze condivise" @@ -11219,7 +11226,7 @@ msgstr "La condivisione della tua fascia d'età rivela solo l'intervallo associa msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "La condivisione della tua fascia d'età rivela solo l'intervallo associato al tuo account Google, ad esempio che hai almeno 18 anni. <0>La tua età esatta e la tua data di nascita non vengono mai condivise e questi dati non lasciano mai questo dispositivo. Questo comporta che l'accesso è abilitato solo su questo dispositivo. In alternativa, per completare la verifica e abilitare l'accesso su tutte le piattaforme, <1>puoi utilizzare il nostro partner di fiducia KWS." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Mostra" msgid "Show alt text" msgstr "Mostra testo alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Mostra comunque" @@ -11274,8 +11281,8 @@ msgstr "Mostra comunque lista" msgid "Show lists of users to select from" msgstr "Mostra le liste di utenti tra cui scegliere" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Mostra di più" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Mostra avviso e filtra dai feed" msgid "Show when you’re live" msgstr "Mostra quando sei in diretta" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Mostra informazioni sulla data di creazione del post" @@ -11341,15 +11348,15 @@ msgstr "Mostra informazioni sulla data di creazione del post" msgid "Shows other accounts you can switch to" msgstr "Mostra gli altri account a cui puoi passare" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Mostra il contenuto" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Mostra il contenuto" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Vuoi uscire?" msgid "Sign up" msgstr "Registrati" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "È richiesto l'accesso" @@ -11469,7 +11476,7 @@ msgstr "Salta" msgid "Skip contact sharing and continue to the app" msgstr "Salta la condivisione dei contatti e continua con l'app" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Saltare i post vuoti?" @@ -11487,7 +11494,7 @@ msgstr "Vai al passo successivo" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Più piccolo" @@ -11499,7 +11506,7 @@ msgstr "Posticipa il promemoria" msgid "So many thoughts, you should post one" msgstr "Così tante idee, dovresti pubblicarne una" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Un social media sotto il tuo controllo." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Qualcuno ha lasciato il gruppo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Qualcuno ha reagito con {0}" @@ -11554,7 +11561,7 @@ msgstr "Qualcuno ha reagito con {0}" msgid "Someone reacted {0} to {target}" msgstr "Qualcuno ha reagito con {0} a {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Qualcuno ha risposto" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Qualcosa è andato storto: riprova" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Qualcosa è andato storto, riprova tra qualche istante." msgid "Something went wrong. Please try again." msgstr "C'è stato qualche problema. Riprovare." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Qualcosa non va? Faccelo sapere." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam o altri comportamenti non autentici o ingannevoli" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sport" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Individua i post a cui i tuoi amici e le persone che segui hanno messo mi piace." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Inizia una conversazione, e comparirà qui." msgid "Start a group chat" msgstr "Avvia una chat di gruppo" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Avvia una nuova conversazione" @@ -11682,17 +11689,17 @@ msgstr "Inizia ad aggiungere persone" msgid "Start adding people!" msgstr "Inizia ad aggiungere persone!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Avvia chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Avvia conversazione con {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Starter Pack" @@ -11715,12 +11722,16 @@ msgstr "Starter pack tuoi" msgid "Starter pack is invalid" msgstr "Lo starter pack non è valido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti con i tuoi amici." @@ -11728,7 +11739,7 @@ msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti co msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Gli starter pack ti permettono di condividere i tuoi feed e utenti preferiti con i tuoi amici." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti con i tuoi amici." @@ -11742,7 +11753,7 @@ msgstr "Pagina di stato" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Step {0} di {1}" @@ -11754,7 +11765,7 @@ msgstr "Spazio di archiviazione eliminato. Riavvia l'app." msgid "Stored as part of a secure code for matching with others" msgstr "Archiviato come parte di un codice sicuro per trovare corrispondenze con altri" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Cronologia" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Iscriviti a {publicationTitle} su {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Iscriviti a @{0} per usare queste etichette:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Verificato con successo" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Suggeriti" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Account suggeriti" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Tramonto" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Il supporto per questa funzionalità non è ancora attivo nella tua nazione! Riprova in seguito." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Gli account sospesi non possono partecipare alle chat di gruppo." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Gli account sospesi non possono partecipare alle chat." @@ -11921,8 +11934,8 @@ msgstr "Passa a {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Porta la conversazione in privato." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tocca qui sotto per consentire a Bluesky di accedere alla tua posizione GPS. Utilizzeremo tali dati per determinare con maggiore precisione il contenuto e le funzionalità disponibili nella tua zona." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tocca per dettagli" @@ -11976,7 +11989,7 @@ msgstr "Tocca per chiudere il menu" msgid "Tap to copy this invite link" msgstr "Tocca per copiare questo link di invito" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tocca per ignorare" @@ -12003,7 +12016,7 @@ msgstr "Tocca per rimuovere la tua reazione {0}" msgid "Tap to request access to join this group chat" msgstr "Tocca per chiedere di partecipare a questa chat di gruppo" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tocca per riprovare" @@ -12016,7 +12029,7 @@ msgstr "Tocca per mostrare le reazioni {0}" msgid "Tap to show all reactions" msgstr "Tocca per mostrare tutte le reazioni" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tocca per vedere le reazioni" @@ -12032,7 +12045,7 @@ msgstr "Completato - segui 10 account!" msgid "Task complete - 10 likes!" msgstr "Completato - 10 mi piace!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Insegna all'algoritmo cosa ti piace" @@ -12060,7 +12073,7 @@ msgstr "Termini" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Impossibile trovare starter pack." msgid "That username is already taken" msgstr "Questo nome utente è già in uso" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Questo è tutto, gente!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "È tutto!" @@ -12216,7 +12229,7 @@ msgstr "Sembra che ci siano problemi sul server. Riprova tra qualche istante." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Questo starter pack non è valido. Prova a eliminare questo starter pack invece." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "L'oggetto del menu contestuale" @@ -12238,7 +12251,7 @@ msgstr "Il codice di verifica che hai fornito non è valido. Assicurati di aver msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Il fornitore che verifica non è stato in grado di inviare un codice al tuo numero di telefono. Verifica il tuo numero di telefono e riprova." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Si è verificato un problema durante il caricamento delle GIF. Controlla msgid "There was a problem with your internet connection, please try again" msgstr "Si è verificato un problema con la tua connessione a internet, riprova" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Si è verificato un problema con la tua connessione a internet, riprova" msgid "There was an issue contacting the server" msgstr "Si è verificato un problema durante il contatto con il server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Si è verificato un problema contattando il server, verifica la tua connessione a internet e riprova." @@ -12283,8 +12296,8 @@ msgstr "Si è verificato un problema contattando il server, verifica la tua conn msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Si è verificato un problema durante il recupero delle notifiche. Tocca qui per riprovare." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Si è verificato un problema nel recupero dei post. Tocca qui per riprovare." @@ -12309,7 +12322,7 @@ msgstr "Si è verificato un problema durante il recupero delle tue informazioni msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Si è verificato un problema durante la rimozione di questo feed. Verifica la tua connessione a internet e riprova." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Queste impostazioni si applicano solo al feed Seguiti." msgid "These URLs" msgstr "Questi URL" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "È il proprietario di questa chat" @@ -12392,7 +12405,7 @@ msgstr "È il proprietario di questa chat" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Non potrà più partecipare finché non lo inviti di nuovo." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Questa {screenDescription} è stata segnalata:" @@ -12408,7 +12421,7 @@ msgstr "Questo account è stato contrassegnato come automatizzato dal suo propri msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Questo account ha uno o più tentativi di verifica, ma non è ancora verificato." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Questo account ha richiesto agli utenti di accedere a Bluesky per visualizzare il profilo." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Questo feed è vuoto! Prova a seguire più utenti o ottimizza le impostazioni della lingua." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Questo feed è vuoto." @@ -12554,7 +12567,7 @@ msgstr "Questo gruppo è bloccato da un'azione di moderazione sul proprietario" msgid "This handle is reserved. Please try a different one." msgstr "Questo nome utente è riservato. Prova con un altro nome utente." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Questa immagine non può essere usata. Prova un altro formato come .jpg o .png." @@ -12596,7 +12609,7 @@ msgstr "Questa etichetta è stata applicata da te." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Questa etichetta è stata applicata a tutto l'account utente e apparirà in tutti i post." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Questo etichettatore non ha dichiarato quali etichette pubblica e potrebbe non essere attivo." @@ -12621,13 +12634,13 @@ msgstr "Questa lista è vuota." msgid "This message is hidden" msgstr "Questo messaggio è nascosto" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Questo messaggio è nascosto perché questo utente ti sta bloccando." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Questo messaggio è nascosto perché stai bloccando questo utente." @@ -12641,7 +12654,7 @@ msgstr "Questa persona ti sta bloccando" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Questo post dichiara di essere stato creato il <0>{0}, ma è stato visto per la prima volta da Bluesky il <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Questo post dichiara di essere stato creato il <0>{0}, ma è stato v msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Questo post ha un tipo sconosciuto di restrizione. La tua app potrebbe non essere aggiornata." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Questo post è visibile solo agli utenti che hanno effettuato l'accesso." @@ -12661,7 +12674,7 @@ msgstr "Questo post è stato eliminato dal suo autore" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Questo post verrà nascosto dai feed e dai thread. L'azione è irreversibile." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "L'autore del post ha disattivato le citazioni." @@ -12698,11 +12711,12 @@ msgstr "Dovrebbe richiedere solo pochi minuti." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Questo utente non può essere verificato poiché non ha un nome visualizzato." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Questo utente non ha follower." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Questo utente ti ha bloccato e non puoi inviargli messaggi." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Questo utente ti ha bloccato. Non è possibile visualizzare il suo contenuto." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Questo utente ha disabilitato la chat e è possibile inviargli messaggi." @@ -12733,11 +12748,11 @@ msgstr "Questo utente è incluso nella lista <0>{0} che hai silenziato." msgid "This user is new here. Press for more info about when they joined." msgstr "Questo utente è nuovo qui. Clicca per maggiori informazioni riguardo a quando si sono iscritti." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Questo utente non sta seguendo nessuno." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Impossibile riprodurre questo video sul tuo dispositivo. Il tuo browser o il tuo sistema potrebbero non disporre dei codec video necessari (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Il tuo account Bluesky <0>{currentHandle} e tutti i dati associati verranno eliminati irreversibilmente. Nota che questo influenzerà qualsiasi altro servizio che usa il <1>protocollo AT con questo account." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Questo rimuoverà @{0} dalla lista d'accesso rapido." @@ -12786,7 +12801,7 @@ msgstr "Preferenze delle discussioni" msgid "Threaded" msgstr "Thread" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferenze per le discussioni" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Troppi contatti: hai superato il numero di contatti che puoi importare per trovare i tuoi amici" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Popolari" @@ -12858,7 +12873,7 @@ msgstr "Popolari" msgid "Top replies first" msgstr "Prima le risposte più popolari" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Argomento" @@ -12893,7 +12908,9 @@ msgstr "La traduzione nella stessa lingua non è disponibile sul tuo dispositivo msgid "Tree view" msgstr "Vista ad albero" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Di tendenza" @@ -12902,7 +12919,7 @@ msgstr "Di tendenza" msgid "Trending GIFs" msgstr "GIF di tendenza" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opzioni per le tendenze" @@ -12918,11 +12935,11 @@ msgstr "Comportamento provocatorio / trolling" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La fiducia nasce dalle relazioni, dalle comunità e dal contesto condiviso, quindi stiamo anche introducendo i <0>certificatori attendibili: organizzazioni che possono rilasciare direttamente la verifica." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Prova con un altro termine di ricerca o rimuovi alcuni filtri." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Prova con un altro termine di ricerca." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Impossibile recuperare le richieste di partecipazione." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Impossibile trovare uno dei destinatari selezionati." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Impossibile trovare il destinatario selezionato." @@ -13024,12 +13043,12 @@ msgstr "Non disponibile" msgid "Unavailable feed information" msgstr "Informazioni sui feed non disponibili" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Sblocca account?" msgid "Unblock list" msgstr "Sblocca lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Smetti di seguire {0}" msgid "Unfollow account" msgstr "Smetti di seguire" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Smetti di seguire" @@ -13132,7 +13151,7 @@ msgstr "Altro contenuto per adulti" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Altro contenuto per adulti, offensivo o non consensuale" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Non mi piace più" @@ -13192,7 +13211,7 @@ msgstr "Riattiva questa chat di gruppo" msgid "Unmute thread" msgstr "Riattiva questa discussione" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Riattiva audio" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Non fissare più" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Non fissare più il feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Non fissare più su home" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Non fissare più la lista di moderazione" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} non più fissato su home" @@ -13258,11 +13277,11 @@ msgstr "Disiscriviti da etichetta" msgid "Unsubscribed from list" msgstr "Disiscritto dalla lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Contenuto degli appunti non supportato" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Tipo di video non supportato: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Impossibile aggiornare visibilità risposte" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "In alternativa carica una foto" @@ -13355,7 +13374,7 @@ msgstr "Carica dai file" msgid "Upload from Library" msgstr "Carica dalla galleria" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Caricamento GIF in corso..." @@ -13369,7 +13388,7 @@ msgstr "Caricamento immagini..." msgid "Uploading link thumbnail..." msgstr "Caricamento miniatura del link..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Caricamento del video..." @@ -13408,7 +13427,7 @@ msgstr "Usalo per accedere all'altra app insieme al tuo nome utente." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Usa l'indirizzo email del tuo account o un altro indirizzo email reale di cui hai il controllo, nel caso in cui KWS o Bluesky abbiano bisogno di contattarti." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "utente" @@ -13510,7 +13529,7 @@ msgstr "Verifica non riuscita, riprovare." msgid "Verification settings" msgstr "Impostazioni di verifica" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Impostazioni di verifica" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Elaborazione video fallita" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Feed dei video" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Video da {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video di {0}. Tocca per riprodurre o mettere in pausa il video" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videogiochi" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video in pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video in riproduzione" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video non trovato." @@ -13653,7 +13672,7 @@ msgstr "Video non trovato." msgid "Video settings" msgstr "Impostazioni video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video caricato" @@ -13662,17 +13681,17 @@ msgstr "Video caricato" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Video" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "I video devono durare meno di 3 minuti." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vedi" @@ -13691,9 +13710,9 @@ msgstr "Vedi l'avatar di {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Vedi il profilo di {0}" @@ -13724,13 +13743,13 @@ msgstr "Vedi il post del blog per maggiori dettagli" msgid "View debug entry" msgstr "Vedi le informazioni del debug" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Vedi dettagli" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vedi la discussione completa" @@ -13761,7 +13780,7 @@ msgstr "Mostra di più" msgid "View more trending videos" msgstr "Vedi altri video di tendenza" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Vedi post" @@ -13798,11 +13817,11 @@ msgstr "Vedi il link di invito per questa chat di gruppo" msgid "View the labeling service provided by @{0}" msgstr "Visualizza il servizio di etichettatura fornito da @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Vedi le verifiche di questo utente" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Visualizza gli utenti a cui piace questo feed" @@ -13831,7 +13850,7 @@ msgstr "Vedi le tue liste di moderazione" msgid "View your muted accounts" msgstr "Vedi i tuoi account silenziati" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Vedi le tue verifiche" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Stiamo riscontrando problemi di rete, riprova" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Stiamo riscontrando problemi di rete, riprova" @@ -14043,7 +14062,7 @@ msgstr "Stiamo riscontrando problemi di rete, riprova" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Stiamo introducendo un nuovo livello di verifica su Bluesky -- una spunta riconoscibile." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Siamo felici che tu ti unisca a noi!" @@ -14064,13 +14083,15 @@ 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 "Non è stato possibile caricare le parole silenziate. Riprova." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "Ci dispiace, non è stato possibile completare la ricerca." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Non è stato possibile completare la ricerca. Riprova tra qualche minuto." @@ -14078,7 +14099,7 @@ msgstr "Non è stato possibile completare la ricerca. Riprova tra qualche minuto msgid "We're sorry, you cannot access this screen at this time." msgstr "Spiacenti: non puoi accedere a questa schermata al momento." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ci dispiace! Il post a cui cerchi di rispondere è stato eliminato." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "come va" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Come va?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Chi può verificare?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ops!" @@ -14220,21 +14241,21 @@ msgstr "Bloccare questo utente e/o abbandonare questa conversazione?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Salvare come bozza prima di visualizzare le tue bozze?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Salvare come bozza da modificare più tardi?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Scrivi un post" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Scrivi un post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Scrivi la tua risposta" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Stai accedendo a Bluesky da una regione che ci impone per legge di verificare la tua età prima di consentirti l'accesso all'app." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Stai bloccando {0}" @@ -14342,7 +14363,7 @@ msgstr "Non sei più in diretta" msgid "You are not allowed to upload videos." msgstr "Non sei autorizzato a caricare video." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Non segui ancora nessuno" @@ -14362,7 +14383,7 @@ msgstr "Sei verificato. Se cambi il tuo nome visualizzato, perderai lo stato di msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Sei verificato. Se cambi il tuo nome utente, perderai lo stato di verifica. <0>Maggiori informazioni." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Puoi modificare i tuoi interessi in qualsiasi momento nelle impostazioni \"Contenuti e media\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Adesso puoi accedere con la tua nuova password." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Puoi aggiungere fino a {MAX_GALLERY_IMAGES, plural, other {# immagini}} per post" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Puoi salvare le bozze solo se hanno fino a 1000 caratteri." @@ -14439,9 +14460,9 @@ msgstr "Puoi leggere la cronologia della chat ma non puoi inviare nuovi messaggi msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Puoi selezionare fino a {MAX_GALLERY_IMAGES, plural, other {# immagini}} in totale." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Puoi modificare questa preferenza dalle impostazioni." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Non puoi aggiungere più di {EMOJI_REACTION_LIMIT, plural, one {# reazione emoji} other {# reazioni emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Non puoi ancora creare una chat di gruppo." @@ -14555,7 +14577,7 @@ msgstr "Hai verificato correttamente il tuo indirizzo email. Puoi chiudere quest msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Hai raggiunto il limite temporaneo dei video caricati. Riprova più tardi." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Hai delle modifiche non salvate a questa bozza: vuoi salvarle?" @@ -14563,7 +14585,7 @@ msgstr "Hai delle modifiche non salvate a questa bozza: vuoi salvarle?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Hai delle modifiche non salvate. Salvarle prima di visualizzare le tue bozze?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Non hai ancora creato uno starter pack!" @@ -14614,7 +14636,7 @@ msgstr "Puoi aggiungere fino a {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_P msgid "You may only add up to 3 feeds" msgstr "Puoi aggiungere un massimo di 3 feed" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Devi essere un proprietario della chat per rimuovere un membro." @@ -14622,7 +14644,7 @@ msgstr "Devi essere un proprietario della chat per rimuovere un membro." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Devi avere almeno 13 anni per usare Bluesky. Leggi i <0>Termini di Servizio per maggiori informazioni." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Devi seguire almeno altri 7 utenti per creare uno starter pack." @@ -14639,7 +14661,7 @@ msgstr "È necessario consentire l'accesso alla tua libreria multimediale." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Per abilitare l'autenticazione a due fattori via email è necessario verificare il tuo indirizzo email." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Sei il proprietario di questa chat" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Probabilmente è il momento di riavviare l'app." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Hai reagito con {0}" @@ -14667,15 +14689,15 @@ msgstr "Hai reagito con {0} a {target}" msgid "You recently changed your birthdate" msgstr "Hai cambiato di recente la tua data di nascita" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Hai risposto" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Hai risposto a {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Ti sei risposto" @@ -14715,11 +14737,11 @@ msgstr "Non sarai in grado di rientrare finché non sarai invitato a farlo." msgid "You: {message}" msgstr "Tu: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirai gli utenti e i feed consigliati alla fine della creazione del tuo account!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirai gli utenti consigliati alla fine della creazione del tuo account!" @@ -14791,7 +14813,7 @@ msgstr "Hai raggiunto la fine del contenuto attivo." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Hai raggiunto la fine del tuo feed! Trova altri account da seguire." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Hai raggiunto il numero massimo di bozze" @@ -14799,7 +14821,7 @@ msgstr "Hai raggiunto il numero massimo di bozze" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Hai raggiunto il numero massimo di richieste consentite. Riprova più tardi." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Hai raggiunto il numero massimo di {MAX_FILTERS, plural, one {# filtro} other {# filtri}}. Aggiungi altri valori a un filtro esistente invece di crearne di nuovi." @@ -14815,11 +14837,11 @@ msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi byte)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi video)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Non ci sono altri video da guardare. Forse è il momento giusto per fare una pausa?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Il tuo account" @@ -14835,11 +14857,11 @@ msgstr "Il tuo account è stato sospeso" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Il tuo account è troppo recente per caricare video. Riprova più tardi." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Il tuo account è troppo recente" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Il tuo account deve essere stato creato da almeno 7 giorni prima di poter creare una nuova chat di gruppo." @@ -14930,8 +14952,8 @@ msgstr "Il tuo fornitore di hosting non può essere rilevato da un indirizzo ema msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Il tuo fornitore di hosting viene rilevato automaticamente dal nome utente che inserisci." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "I tuoi interessi sono stati salvati!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "I tuoi interessi ci aiutano a trovare quello che più ti piace!" @@ -14967,11 +14989,11 @@ msgstr "La tua password è stata cambiata con successo! D'ora in poi usa la tua msgid "Your password must be at least 8 characters long." msgstr "La tua password deve essere lunga almeno 8 caratteri." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Il tuo post è stato inviato" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "I tuoi post sono stati inviati" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "La tua lingua preferita" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Immagine del tuo profilo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "L'immagine del tuo profilo circondata da cerchi concentrici con immagini del profilo di altri utenti" @@ -14992,7 +15014,7 @@ msgstr "L'immagine del tuo profilo circondata da cerchi concentrici con immagini msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Il tuo profilo, i tuoi post, i tuoi feed e le tue liste non saranno più visibili agli altri utenti. Puoi riattivare il tuo account in qualsiasi momento effettuando l'accesso." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Risposta inviata" @@ -15005,7 +15027,7 @@ msgstr "La segnalazione sarà inviata a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Gli interessi che selezioni ci permettono di mostrare i contenuti più pertinenti." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Il tuo thread ha dei post vuoti che verranno saltati. Gli altri post verranno pubblicati come thread." diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index fd3bea19c8..9e64d92d2c 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: ja\n" +"Language: ja_JP\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" カテゴリー(アクティブ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(ブロックされたメッセージは非表示です)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(埋め込みコンテンツあり)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(削除されたメッセージ)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(無効なチャット招待リンク)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(参加する前に送られたメッセージ)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, other {#時間}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, other {#個のラベルがあなたの投稿に適用されました}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, other {#個のラベルが適用されました}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, other {# いいね}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {メンバー#人}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, other {#個の新規参加リクエスト}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {#人}}がリアクションしました – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{1} {0}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0}(アカウント)" @@ -251,36 +252,13 @@ msgstr "{0}がチャットに追加されました" msgid "{0} and {1} added to chat" msgstr "{0}と{1}がチャットに追加されました" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0}と{1}がいいね" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0}と{others, plural, other {他{2}人が}}いいね" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0}と{othersLabel}がいいね" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} フォロー中" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0}はあなたをブロックしています" @@ -324,14 +302,6 @@ msgstr "{0}が退出しました" msgid "{0} left the group" msgstr "{0}がグループから退出しました" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0}がをいいね" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} / 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0}が{1}とリアクションしました" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}、{1}そして{memberCount, plural, other {他#人}}がチャットに追加されました" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}、{1}そして{others, plural, other {他{3}人}}がいいね" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}、{1}そして{othersLabel}がいいね" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} があなたを認証しました" msgid "{following} following" msgstr "{following} フォロー" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle}は追加できません" @@ -698,7 +660,7 @@ msgstr "{handle}は追加できません" msgid "{handle} can't be messaged" msgstr "{handle}にメッセージを送れません" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle}にメッセージを送れません" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, other {#件の未読}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {連絡先が#個見つかりました}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, other {他{1}人}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName}はBlueskyに{timeAgoString}前に参加しました" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName}はスターターパックを使って{timeAgoString}前に参加しました" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, other {残り#文字}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName}が返信しました" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName}が{originalName}に返信しました" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName}さんがあなたに返信しました" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {#リクエスト}}" msgid "{requestCount}+ requests" msgstr "{requestCount}件以上のリクエスト" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}時間前" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} は信頼された認証者です" @@ -842,13 +795,13 @@ msgstr "{userName}の認証情報" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, other {フォロー}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {引用}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {リポスト}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, other {保存}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, other {いいね}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2>があなたを追加しました" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<4>ニュース、スポーツ、政治、ほか、Bluesky上で起こっているその他すべてのことを検索するためには<0>サインイン<1>するか<2>アカウントを作成<3>してください。" @@ -971,7 +924,7 @@ msgstr "30日" msgid "7 days" msgstr "7日" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "News、Booksky、Game Dev、Blacksky、そしてFountain PensといったBlueskyで見つけることのできる人気のフィードのコレクション" @@ -988,9 +941,11 @@ msgstr "ネットワークエラーが発生しました。インターネット #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "新しいコードが送信されました" msgid "A new form of verification" msgstr "認証の新しい形" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "参加する前に送られたメッセージへの返信" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "投稿ボタンの隣に虹色の花火のエフェクトで飾られた「下書き」と書かれた新しいボタンがある投稿作成画面のスクリーンショット。下には「ねえ、ニュースを聞いた?Blueskyに下書きが出来たって!!!」と投稿画面に書かれている。" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "選択された受信者は送信者がフォローしていません。" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "アクセスをリクエストしました!グループのオーナー msgid "Accessibility" msgstr "アクセシビリティ" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "アクセシビリティの設定" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "リストによってミュート中のアカウント" msgid "Account options" msgstr "アカウントオプション" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "クイックアクセスからアカウントを解除" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "スカラップ状(帆立貝の形状)の青色のチェックマーク <0><1/> のあるアカウントは他のユーザを認証できます。これらの信頼できる認証者はBlueskyによって選択されています。" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "他のユーザーからのアクティビティ" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "アクティビティの通知" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "ALTテキストを追加(オプション)" msgid "Add another account" msgstr "他のアカウントを追加" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "他の投稿を追加" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "スレッドに他の投稿を追加" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "他の検索フィルターを追加" @@ -1253,7 +1213,7 @@ msgstr "アカウントに自動化ラベルを追加" msgid "Add emoji reaction" msgstr "絵文字リアクションを追加" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "フィルターを追加" @@ -1338,7 +1298,7 @@ msgstr "このフィードをあなたのフィードに追加する" msgid "Add to lists" msgstr "リストに追加" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "保存済投稿へ追加" @@ -1400,7 +1360,7 @@ msgstr "成人向け(ポルノ等)" msgid "Adult content" msgstr "成人向けコンテンツ" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "ダイレクトメッセージへのアクセスを許可" msgid "Already have a code?" msgstr "コードをすでに持っていますか?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "既にアカウントを持ってますか?" @@ -1614,7 +1574,7 @@ msgstr "メールが{0}に送信されました。以下に入力できる確認 msgid "An error has occurred" msgstr "エラーが発生しました" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "エラーが発生しました" @@ -1631,7 +1591,7 @@ msgstr "オススメアカウントの取得中にエラーが発生しました msgid "An error occurred while fetching the feed." msgstr "フィードの取得中にエラーが発生しました。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "スターターパックの生成中にエラーが発生しました。もう一度試しますか?" @@ -1640,11 +1600,11 @@ msgstr "スターターパックの生成中にエラーが発生しました。 msgid "An error occurred while hiding suggestion. {0}" msgstr "提案を非表示中にエラーが発生しました。{0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "ビデオの読み込み時にエラーが発生しました。時間をおいてもう一度お試しください。" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "ビデオの読み込み時にエラーが発生しました。もう一度お試しください。" @@ -1684,7 +1644,7 @@ msgstr "エラーが発生しました。{0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "連絡帳からBlueskyアプリに流れるユーザーのアバターを描いたイラスト" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "リポスト、いいね、そしてコメントのアイコンと一緒に並んだいくつかのBlueskyの投稿のイラスト" @@ -1705,17 +1665,15 @@ msgstr "招待リンクを使用すると、ユーザーを直接追加せずに msgid "An issue not included in these options" msgstr "ほかの選択肢にはあてはまらない問題" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "グループ チャットの作成中に問題が発生しました。もう一度やり直してください。" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "チャット開始時に問題が発生しました。もう一度やり直してください。" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "チャットを開始しようとした時に問題が発生しました" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "グループチャットの開始中に問題が発生しました。もう一度お試しください。" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "日付を選択" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "誰でも" @@ -1802,7 +1760,7 @@ msgstr "フォローしている人" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "それを持っている人はもう参加できなくなり、また、参加のリクエストもできなくなります。いつでも新しいものを作成できます。" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "アプリパスワードの名前は長さが4文字以上である必 msgid "App passwords" msgstr "アプリパスワード" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "アプリパスワード" @@ -1891,8 +1849,8 @@ msgstr "この決定に異議を申し立てる" msgid "Appeal this label" msgstr "このラベルに異議申し立て" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "プルリクエストを適用" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0}のアーカイブ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "アーカイブ投稿" @@ -1980,7 +1938,7 @@ msgstr "本当にこのフィードをあなたのフィードから削除した msgid "Are you sure you want to rescind your request to join {0}?" msgstr "本当に{0}に参加するリクエストを取り消しますか?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "本当にこの投稿を削除しますか?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "オーロラ" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "自動化アカウント" @@ -2033,7 +1991,7 @@ msgstr "自動" msgid "Automation label" msgstr "自動化ラベル" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "自動化ラベル" @@ -2050,12 +2008,16 @@ msgstr "ビデオとGIFの自動再生" msgid "Available" msgstr "利用可能" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "投稿や返信には、まずメールアドレスの確認が必要です。" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "スターターパックを作る前に、まずメールアドレスを確認しなければなりません。" @@ -2135,10 +2097,10 @@ msgstr "{name}の投稿の通知を受け取る前に、まずメールアドレ #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "年齢保証プロセスを開始するには、以下のフィールド msgid "Beta Feature" msgstr "ベータ機能" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "ベータ版の機能" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "ベータ版の機能が有効になりました" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "生年月日" msgid "Birthday" msgstr "生年月日" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "ブロックされています" msgid "Blocked accounts" msgstr "ブロック中のアカウント" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ブロック中のアカウント" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ブロックしてもこのラベラーがあなたのアカウントにラベルを適用することができます。" @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Blueskyでは、この投稿日時の信憑性を確認できません。" @@ -2330,7 +2299,7 @@ msgstr "Bluesky は、ホスティング プロバイダーを選択できるオ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Blueskyはオープンなネットワークで、自分自身でプロバイダーを選ぶことができます。初めて利用するのであれば、デフォルトのオプションであるBluesky Socialのままにしておくのをお勧めします。" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Blueskyは友達と一緒のほうが楽しい!" @@ -2358,7 +2327,7 @@ msgstr "Bluesky Social利用規約" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Blueskyは連絡先を符号化したデータとして保存します。連絡先を削除するとすぐにこのデータが削除されます。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Blueskyはあなたのつながっているユーザーからおすすめのアカウントを選びます。" @@ -2425,24 +2394,25 @@ msgstr "検索ページでさらにおすすめを見る" msgid "Browse other feeds" msgstr "他のフィードを見る" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "{displayName}についての投稿を見る" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "{displayName}のタグの付いた投稿を見る" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "{displayName}というスターターパックを見る" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "トピック「{0}」を見る" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "{displayName}というトピックを見る" @@ -2461,8 +2431,8 @@ msgstr "ホームタイムラインに戻るボタン" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "作成者:{0}" @@ -2473,9 +2443,9 @@ msgstr "著者:@{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "作成者:<0>{0}" @@ -2504,11 +2474,11 @@ msgstr "アカウントを作成することで、<0>利用規約と<1>プ msgid "By creating an account you agree to the <0>Terms of Service." msgstr "アカウントを作成することで、<0>利用規約に同意したものとみなされます。" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "作成者:あなた" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "カメラ" @@ -2534,7 +2504,7 @@ msgstr "カメラへのアクセスが必要です" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "カメラへのアクセスが必要です" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "再有効化をキャンセルしてサインアウト" msgid "Cancel reply" msgstr "返信をキャンセル" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "検索をキャンセル" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "作成後、スターターパックへの変更はリストに反映されません。リストは独立したコピーとなります。" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "チャットをミュートしました" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "チャットが見つかりませんでした。" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "チャットのオプション" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "チャットオーナーはグループチャットを退出できません。" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "チャットの受信者は送信者がフォローしていません。" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "チャット要求の受信トレイ" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "チャットの要求" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "チャットの設定" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "チャットのミュートを解除しました" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "チャット" @@ -2837,7 +2808,7 @@ msgstr "ドメイン名の確認方法を選択" msgid "Choose Feeds" msgstr "フィードの選択" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "私向けに選んで" @@ -2854,7 +2825,7 @@ msgstr "ユーザーの選択" msgid "Choose post languages" msgstr "投稿の言語を選択" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "この色をアバターとして選択" @@ -2879,7 +2850,7 @@ msgstr "自分自身のタイムラインを選びましょう!コミュニテ msgid "Choose your password" msgstr "パスワードを入力" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "ユーザー名を選んでください" @@ -2966,7 +2937,7 @@ msgstr "ここをクリックしてこのグループチャットの招待リン msgid "Click to open tag menu for {0}" msgstr "クリックして {0} のタグメニューを開く" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "送信失敗したメッセージを再送信" @@ -3003,7 +2974,7 @@ msgstr "送信失敗したメッセージを再送信" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "送信失敗したメッセージを再送信" msgid "Close" msgstr "閉じる" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "アクティブなダイアログを閉じる" @@ -3047,7 +3018,7 @@ msgstr "バナーを閉じる" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "画像ビューワーを閉じる" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "メニューを閉じる" @@ -3090,7 +3061,7 @@ msgstr "リクエストバナーを閉じる" msgid "Close this dialog" msgstr "このダイアログを閉じる" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "ウェルカムモーダルを閉じる" @@ -3098,7 +3069,7 @@ msgstr "ウェルカムモーダルを閉じる" msgid "Closes password update alert" msgstr "パスワード更新アラートを閉じる" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "投稿の編集画面を閉じて下書きを破棄" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "カラー" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "カラーモード" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "漫画" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "コミュニティガイドライン" @@ -3141,7 +3112,7 @@ msgstr "コミュニティガイドライン" msgid "Complete onboarding and start using your account" msgstr "初期設定を完了してアカウントを使い始める" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "テストをクリアしてください" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "新しい投稿を作成" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "最大{0, plural, other {#文字}}まで投稿を編集" @@ -3160,11 +3131,11 @@ msgstr "最大{0, plural, other {#文字}}まで投稿を編集" msgid "Compose reply" msgstr "返信を作成" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIFを圧縮中…" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "ビデオを圧縮中…" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "サポートチームに連絡" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "サポートに連絡" @@ -3253,7 +3224,7 @@ msgstr "コンテンツ&メディア" msgid "Content and media" msgstr "コンテンツとメディア" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "コンテンツとメディア" @@ -3265,10 +3236,6 @@ msgstr "ブロックされたコンテンツ" msgid "Content filters" msgstr "コンテンツのフィルター" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "お好みかもしれないネットワークからのコンテンツ。" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "コンテンツの言語" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "自傷行為を助長または描写するコンテンツ" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "コンテンツの警告" msgid "Content warnings" msgstr "コンテンツの警告" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "コンテキストメニューの背景をクリックし、メニューを閉じる。" @@ -3302,7 +3269,7 @@ msgstr "コンテキストメニューの背景をクリックし、メニュー #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "スレッドの続き…" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "グループ名に進む" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "会話が見つかりません。" msgid "Copied build version to clipboard" msgstr "ビルドバージョンをクリップボードにコピーしました" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "リンクをクリップボードにコピーしました" @@ -3376,7 +3343,7 @@ msgstr "リンクをクリップボードにコピーしました" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "アプリパスワードをコピー" msgid "Copy at:// URI" msgstr "at:// URIをコピー" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "投稿者のDIDをコピー" @@ -3449,10 +3416,10 @@ msgstr "リンクをコピー" msgid "Copy link to list" msgstr "リストへのリンクをコピー" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "投稿へのリンクをコピー" @@ -3470,8 +3437,8 @@ msgstr "スターターパックへのリンクをコピー" msgid "Copy message text" msgstr "メッセージのテキストをコピー" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "投稿のat:// URIをコピー" @@ -3490,7 +3457,7 @@ msgstr "TXTレコードの値をコピー" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "著作権ポリシー" @@ -3540,11 +3507,11 @@ msgstr "マッチした全員をフォローできませんでした。{0}" msgid "Could not leave chat" msgstr "チャットからの退出に失敗しました" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "チャットを退出できませんでした。" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "フィードの読み込みに失敗しました" @@ -3562,7 +3529,7 @@ msgstr "プロフィールを読み込めませんでした" msgid "Could not mute chat" msgstr "チャットのミュートに失敗しました" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "メンバーを外せませんでした。" @@ -3606,8 +3573,8 @@ msgstr "cows pigs" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "作成" @@ -3624,26 +3591,26 @@ msgstr "このスターターパックからリストを作成する" msgid "Create a QR code for a starter pack" msgstr "スターターパックのQRコードを作成" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "スターターパックを作成" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "スターターパックを作成" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "私向けのスターターパックを作成" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "アカウントを作成" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "アカウントを作成" @@ -3666,15 +3633,15 @@ msgstr "アカウントを作成" msgid "Create an account without using this starter pack" msgstr "このスターターパックを使用せずにアカウントを作成する" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "代わりにアバターを作成" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "別のものを作成" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "グループ チャットを作成" @@ -3743,7 +3710,7 @@ msgstr "文化" msgid "Current beta features" msgstr "現在のベータ版の機能" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "現在のチャット" @@ -3770,8 +3737,8 @@ msgstr "危険物質または薬物の乱用" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "ダーク" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "ダーク" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ダークテーマ" @@ -3814,7 +3781,7 @@ msgstr "この言語の提案を拒否する" msgid "Deepfake adult content" msgstr "ディープフェイクによる成人向けコンテンツ" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "デフォルト" @@ -3894,7 +3861,7 @@ msgstr "アカウントを削除" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "投稿を削除" @@ -3988,7 +3955,7 @@ msgstr "ダイアログ:この投稿に誰が反応できるか調整" msgid "Dialog: Set search filters" msgstr "ダイアログ:検索フィルターを設定" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "グレー" @@ -4002,7 +3969,7 @@ msgstr "無効にする" msgid "Disable 2FA" msgstr "2要素認証を無効に" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "キャプションを無効化" @@ -4045,9 +4012,9 @@ msgstr "無効" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "破棄" msgid "Discard changes?" msgstr "変更を破棄しますか?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "下書きを削除しますか?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "投稿を削除しますか?" @@ -4079,6 +4046,10 @@ msgstr "Germ DMを切断" msgid "Discourage apps from showing my account to logged-out users" msgstr "アプリがログアウトしたユーザーに自分のアカウントを表示しないようにする" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "フィードを探す" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "アプリがログアウトしたユーザーに自分のアカウント msgid "Discover new custom feeds" msgstr "新しいカスタムフィードを見つける" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "新しいフィードを探す" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "新しいフィードを探す" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "消す" @@ -4103,19 +4070,19 @@ msgstr "消す" msgid "Dismiss banner" msgstr "バナーを閉じる" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "エラーを消す" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "入門ガイドを消す" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "「気になること」を消す" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "ライブイベントのバナーを消す" @@ -4142,7 +4109,7 @@ msgstr "大きなALTテキストのバッジを表示" msgid "Display name" msgstr "表示名" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "荒らしやクリック稼ぎの釣り見出しは捨ててしまおう。あなたにとって大切な、リアルな人々や会話を見つけよう。" @@ -4205,8 +4172,8 @@ msgstr "心配しないでください!すべての既存のメッセージと #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "心配しないでください!すべての既存のメッセージと msgid "Done" msgstr "完了" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "メッセージをダブルタップか長押しでリアクションを追加" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "ダブルタップでダイアログを閉じる" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "ダブルタップでいいね" @@ -4328,6 +4295,7 @@ msgstr "摂食障害" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "画像を編集" msgid "Edit interaction settings" msgstr "反応関連の設定を編集" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "「気になること」を編集" @@ -4397,7 +4365,7 @@ msgstr "ライブステータスを編集" msgid "Edit moderation list" msgstr "モデレーションリストを編集" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "マイフィードを編集" @@ -4406,6 +4374,11 @@ msgstr "マイフィードを編集" msgid "Edit name" msgstr "名前を編集" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "{0}からの通知を編集" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "ユーザーを編集" @@ -4444,7 +4417,7 @@ msgstr "ユーザーリストを編集" msgid "Edit who can reply" msgstr "誰が返信できるのかを編集" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "スターターパックを編集" @@ -4500,8 +4473,8 @@ msgstr "HTMLコードを埋め込む" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "投稿を埋め込む" @@ -4509,7 +4482,7 @@ msgstr "投稿を埋め込む" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "この投稿をあなたのウェブサイトに埋め込みます。以下のスニペットをコピーして、あなたのウェブサイトのHTMLコードに貼り付けるだけです。" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "埋め込みビデオプレーヤー" @@ -4533,7 +4506,7 @@ msgstr "成人向けコンテンツを有効にする" msgid "Enable beta features" msgstr "ベータ版の機能を有効にする" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "キャプションを有効化" @@ -4550,12 +4523,13 @@ msgstr "外部メディアを有効にする" msgid "Enable media players for" msgstr "有効にするメディアプレーヤー" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "プロフィールにアクセスして<0>ベルのアイコン<1/>を押すことでアカウントの通知を有効にします。" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "プッシュ通知を有効にする" @@ -4581,7 +4555,7 @@ msgstr "Discoverフィードでトレンド・ビデオを有効にする" msgid "Enabled" msgstr "有効" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "フィードの終わり" @@ -4608,7 +4582,7 @@ msgstr "ワードまたはタグを入力" msgid "Enter code" msgstr "コードを入力" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "全画面表示にする" @@ -4650,11 +4624,11 @@ msgstr "ユーザー名とパスワードを入力してください" msgid "Enters full screen" msgstr "フルスクリーンで表示" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "エンターテインメント" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "エラー" @@ -4684,7 +4658,7 @@ msgstr "ファイルの保存中にエラーが発生しました" msgid "Error receiving captcha response." msgstr "CAPTCHAレスポンスの受信中にエラーが発生しました。" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "エラー:{error}" @@ -4696,8 +4670,8 @@ msgstr "誰でも返信可能" msgid "Everybody can reply to this post." msgstr "この投稿に全員が返信できる。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "全員" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "全員" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "他すべて" @@ -4738,7 +4712,7 @@ msgstr "フォローしているユーザーは除外" msgid "Excludes users you follow" msgstr "フォローしているユーザーは除外" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "全画面表示を終了" @@ -4755,11 +4729,11 @@ msgstr "ユーザーリストを展開" msgid "Expand or collapse the full post you are replying to" msgstr "返信する投稿全体を展開または折りたたむ" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "投稿のテキストを展開" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "テキストを展開または折りたたむ" @@ -4802,15 +4776,15 @@ msgstr "露骨な、または不愉快になる可能性のあるメディア。 msgid "Explicit sexual images." msgstr "露骨な性的画像。" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "検索" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "アプリを探索" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "外部メディアの設定" @@ -4886,7 +4860,7 @@ msgstr "ハンドルの変更に失敗しました。もう一度試してくだ #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "リンクのコピーに失敗しました" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "グループチャットからの退出に失敗" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "会話の読み込みに失敗しました" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "フィードの読み込みに失敗しました" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "フィードの設定の読み込みに失敗しました" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "通知設定の読み込みに失敗しました。" @@ -5012,14 +4987,14 @@ msgstr "設定の読み込みに失敗しました。" msgid "Failed to load profiles" msgstr "プロフィールの読み込みに失敗" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "おすすめのフィードの読み込みに失敗しました" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "おすすめのフォローの読み込みに失敗しました" @@ -5027,12 +5002,12 @@ msgstr "おすすめのフォローの読み込みに失敗しました" msgid "Failed to lock group chat" msgstr "グループチャットのロックに失敗しました" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "すべてのチャットを既読にできませんでした" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "リクエストを取り消すことができませんでした。もう msgid "Failed to resolve location. Please try again." msgstr "位置情報の調査に失敗しました。もう一度試してください。" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "下書きの保存に失敗しました" @@ -5191,7 +5166,7 @@ msgstr "偽のアカウントまたはボット" msgid "False information about elections" msgstr "選挙に関する誤った情報" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "フィード" @@ -5212,7 +5187,7 @@ msgstr "フィードの作者" msgid "Feed identifier" msgstr "フィードの識別子" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "フィードメニュー" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "フィードの運営者にフィードバックを送りました" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "フィードを更新しました!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "お気に入りになるかもしれないフィード。" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "更新を取得" @@ -5273,11 +5244,11 @@ msgstr "更新を取得" msgid "File saved successfully!" msgstr "ファイルの保存に成功しました!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "投稿者でフィルター" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "投稿者でフィルター(現在:{currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "{0}でこの検索をフィルター" msgid "Filter who can opt to receive notifications for your activity" msgstr "あなたのアクティビティの通知について、誰が受信できるのかフィルターを設定します" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "通知を受け取るユーザーをフィルターする" @@ -5352,8 +5323,8 @@ msgstr "フォローするアカウントを探す" msgid "Find and invite friends" msgstr "友達を探して招待する" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "連絡先を見つける" @@ -5387,7 +5358,7 @@ msgstr "友達を見つける" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "電話番号を照合し、連絡先とマッチングすることであなたの友達を見つけます。私達はあなたの情報を保護し、あなたは次に何が起こるのかをコントロールできます。<0>詳細はこちら" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "仲間を探そう" @@ -5429,7 +5400,7 @@ msgstr "検索フィールドにフォーカスする" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "{0}をフォロー" msgid "Follow {displayName}" msgstr "{displayName}をフォロー" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle}をフォロー" @@ -5453,11 +5424,11 @@ msgstr "{handle}をフォロー" msgid "Follow 10 accounts" msgstr "10アカウントをフォロー" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "10 人をフォローして始めよう" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "7アカウントをフォロー" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "フォロワーは参加できます" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "あなたが知っている@{0}のフォロワー" @@ -5544,7 +5515,7 @@ msgstr "あなたが知っているフォロワー" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "{0}をフォローしました" msgid "Following {displayName}" msgstr "{displayName}をフォロー中" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "{handle}をフォローしています" @@ -5578,21 +5549,21 @@ msgstr "{handle}をフォローしています" msgid "Following feed preferences" msgstr "Followingフィードの設定" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Followingフィードの設定" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "あなたをフォロー" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "フォント" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "フォントサイズ" @@ -5612,13 +5583,13 @@ msgstr "セキュリティ上の理由から、あなたのメールアドレス msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "セキュリティ上の理由から、これを再度表示することはできません。このアプリパスワードを紛失した場合は、新しいものを生成する必要があります。" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "ベストな体験のために、テーマフォントの使用をお勧めします。" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "あなたへ" @@ -5628,7 +5599,7 @@ msgstr "あなたへ" msgid "Forever" msgstr "永久" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "ノイズを忘れよう" @@ -5647,11 +5618,13 @@ msgstr "パスワードを忘れた?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "グループチャットを表現する四つのメッセージバブル。一つ目のメッセージ:「ニュース聞いた?Blueskyにグループチャットができたよ!」二つ目のメッセージ:「えっ、まじで」三つ目のメッセージ:「すごい、一つのチャットに50人!」四つ目のメッセージ:「招待リンクも送れるよ!」" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "フィードを解放しよう" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "誰から" @@ -5674,7 +5647,7 @@ msgstr "<0/>から" msgid "From these people" msgstr "これらの人から" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "スターターパックを生成" @@ -5718,39 +5691,39 @@ msgstr "テスト中の実験的な機能に早期にアクセスできます。 msgid "Get help" msgstr "ヘルプを表示" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "スターターパックでの参加、認証、その他のアクティビティの通知を受け取る。" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "フォローされたときに通知を受け取る。" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "投稿をいいねされたら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "リポストがいいねされたら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "メンションされたら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "投稿を引用されたら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "投稿に返信があったら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "投稿をリポストされたら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "リポストがリポストされたら通知を受け取る。" @@ -5762,15 +5735,15 @@ msgstr "メッセージリクエストが送信されたら通知を受け取る msgid "Get notifications when people send you messages." msgstr "メッセージが送信されたら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "購読している投稿にアクティビティがあれば通知を受け取る。" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "新しい投稿の通知を受け取る" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "選択したアカウントからの投稿や返信について通知を受け取ります。" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "{name} の新しい投稿の通知を受け取る" @@ -5799,11 +5772,11 @@ msgstr "開始" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIFをアップロードしました" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "プロフィールに顔をつける" @@ -5813,20 +5786,20 @@ msgstr "暴力の賛美" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "ライブ予定時間" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "{0}のプロフィールへ移動" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "グループチャット名が更新されました" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "グループチャットの設定" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "グループチャットの最大人数は{0, plural, other {#人}}です。" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "グループはロックされています" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "グループ名" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "グループ名が長すぎます。{MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {最大で#文字です。}}" @@ -6077,7 +6051,7 @@ msgstr "有害または高リスクの活動" msgid "Harming or endangering minors" msgstr "未成年者への危害または危険行為" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "ハッシュタグ" @@ -6098,7 +6072,7 @@ msgstr "コードがありませんか?<0>ここをクリックしてくださ msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "位置情報が間違っていますか?<0>ここをタップしてGPSで位置情報を更新してください。" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "なにか問題が発生しましたか?" @@ -6114,7 +6088,7 @@ msgstr "不正利用防止のため、Bluesky が7日間保持した後に削除 msgid "Help" msgstr "ヘルプ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "画像をアップロードするかアバターを作ってあなたがbotではないことをみんなに知らせましょう。" @@ -6140,7 +6114,7 @@ msgstr "こんにちは!" msgid "Hidden" msgstr "非表示" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "あなたのモデレーションの設定で非表示になっています。" @@ -6148,9 +6122,9 @@ msgstr "あなたのモデレーションの設定で非表示になっていま msgid "Hidden list" msgstr "非表示のリスト" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "非表示のリスト" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "非表示" @@ -6198,7 +6172,7 @@ msgstr "返信を全員に非表示" msgid "Hide reply for me" msgstr "返信を自分には非表示" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "このカードを非表示" @@ -6218,12 +6192,12 @@ msgstr "この返信を非表示にしますか?" msgid "Hide translation" msgstr "翻訳を非表示" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "トレンド・トピックを非表示にする" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "トレンド・トピックを非表示にしますか?" @@ -6240,7 +6214,7 @@ msgstr "ユーザーリストを非表示" msgid "Hide verification badges" msgstr "認証バッジを非表示" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "コンテンツを非表示" @@ -6293,8 +6267,8 @@ msgstr "そのモデレーションサービスを読み込めませんでした msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "待って!徐々にビデオへのアクセスを許可していますが、あなたの順番はまだです。しばらくしてもう一度確認を!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "ホスティングプロバイダー:{0}" msgid "Hosting provider: Bluesky" msgstr "ホスティングプロバイダー:Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "ホット" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "仕組み:" @@ -6409,6 +6379,7 @@ msgstr "メールアドレスを更新すると、メールでの2要素認証 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "パスワードを変更する場合は、あなたのアカウントであることを確認するためのコードをお送りします。" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "あなたのアクティビティの通知を受信できるユーザーを制限したい場合は、<0>設定 → プライバシーとセキュリティで変更できます。" @@ -6548,7 +6519,7 @@ msgstr "アプリ内、プッシュ、全員" msgid "In-app, push, people you follow" msgstr "アプリ内、プッシュ、フォロー中の人" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "受信トレイが空です" @@ -6560,6 +6531,7 @@ msgstr "受信トレイが空です!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "今はあなただけ!上で検索してスターターパックにより多くのユーザーを追加してください。" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ジョブID:{0}" @@ -6816,8 +6788,8 @@ msgstr "会話に参加" msgid "Journalism" msgstr "報道" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "編集を続ける" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS のウェブサイト" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0}によるラベル" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "投稿者によるラベル。" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ラベル" @@ -6852,7 +6824,7 @@ msgstr "ラベルが追加されました" msgid "Labels applied to this post" msgstr "この投稿に適用されたラベル" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ラベルは、ユーザーやコンテンツに対する注釈です。ラベルはネットワークを非表示にしたり、警告したり、分類したりするのに使われます。" @@ -6864,7 +6836,7 @@ msgstr "あなたのアカウントのラベル" msgid "Language" msgstr "言語" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "言語の設定" @@ -6874,7 +6846,7 @@ msgstr "言語の設定" msgid "Languages" msgstr "言語" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "大きい" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "最後の開始:たった今" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "最新" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "詳細(英語)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "詳細" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "<0>高度な検索フィルタの使い方について詳細を見る。" @@ -6937,8 +6909,8 @@ msgstr "連絡先の読み込みについて詳細を見る" msgid "Learn more about self hosting your PDS." msgstr "自分用のPDSをホスティングする方法を学ぶ。" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "このコンテンツに適用されるモデレーションはこちらを参照してください" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "私たちのブログの記事を読んで、これらの変更についての詳細と、あなたの考えを私たちと共有する方法をご覧ください。" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "この警告の詳細" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "<0>アカウント設定で詳細を確認する。" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "詳細。" @@ -6993,8 +6965,8 @@ msgstr "退出" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Blueskyから離れる" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "このチャットから退出すると完全にロックされ、再び参加することはできません。" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "グループチャットを退出しました。" @@ -7042,7 +7014,7 @@ msgstr "グループチャットを退出しました。" msgid "left to go." msgstr "あと少しです。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "選ばせて" @@ -7057,7 +7029,7 @@ msgstr "さあ始めましょう!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "ライト" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ライト" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "いいねする" @@ -7076,7 +7048,7 @@ msgstr "いいねする" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "いいねする({0, plural, other {#件のいいね}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10投稿をいいね" @@ -7085,7 +7057,7 @@ msgstr "10投稿をいいね" msgid "Like 10 posts to train the Discover feed" msgstr "Discoverフィードを訓練するために10投稿をいいねする" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "このフィードをいいね" @@ -7093,8 +7065,8 @@ msgstr "このフィードをいいね" msgid "Like this labeler" msgstr "このラベラーをいいね" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "いいねしたユーザー" @@ -7111,27 +7083,45 @@ msgstr "いいねしたユーザー" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {#人のユーザー}}がいいね" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "{0}がいいねしました" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "{0}と{1}がいいねしました" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {#人のユーザー}}がいいね" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "いいね" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "リポストへのいいね" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "この投稿をいいねする" @@ -7144,7 +7134,7 @@ msgstr "リニア" msgid "Link copied to clipboard" msgstr "リンクをクリップボードにコピーしました" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "リスト" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "リストのミュートを解除しました" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "ライブ" msgid "Live event happening now: {0}" msgstr "ライブイベント開催中: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "ライブイベントを非表示にする" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "ライブイベントの非表示を解除" @@ -7279,12 +7269,12 @@ msgstr "ライブ機能はベータ版です" msgid "Live link" msgstr "ライブのリンク" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "さらに読み込む" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "おすすめのフィードをさらに読み込む" @@ -7292,8 +7282,8 @@ msgstr "おすすめのフィードをさらに読み込む" msgid "Load new notifications" msgstr "最新の通知を読み込む" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "このグループチャットをロック" msgid "Locked" msgstr "ロック中" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "ログ" @@ -7387,7 +7377,7 @@ msgstr "愛のGIF" msgid "Make adjustments to email settings for your account" msgstr "アカウントのメール設定を調整する" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "私のために作って" @@ -7418,15 +7408,15 @@ msgstr "手動" msgid "Mark all as read" msgstr "すべて既読にする" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "すべてのチャットを既読にする" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "既読にする" msgid "Marked all as read" msgstr "すべて既読にしました" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "すべてのチャットを既読にしました" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "すべてのリクエストを既読にしました" @@ -7456,8 +7446,12 @@ msgstr "すべてのリクエストを既読にしました" msgid "Maybe later" msgstr "後で" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "自分" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "メディア" @@ -7475,7 +7469,7 @@ msgstr "他のデバイスに保存されているメディア" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "一部の閲覧者にとっては困惑する、あるいは不適切なメディアです。" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "メンバーがグループチャットから外されました。" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "メンションされたユーザー" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "メンション" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "メッセージは削除されました" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "メッセージを送信できませんでした。" @@ -7563,15 +7557,15 @@ msgstr "メッセージが長すぎます({graphemeCount}/{MAX_DM_GRAPHEME_LEN msgid "Message options" msgstr "メッセージのオプション" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "メッセージ" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "このユーザーからのメッセージはあなたをブロック中は非表示です。" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "このユーザーからのメッセージはあなたがブロック中は非表示です。" @@ -7592,7 +7586,7 @@ msgstr "誤解を招くこと" msgid "Missing media" msgstr "メディアが見つかりません" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "モデレーション" @@ -7636,7 +7630,7 @@ msgstr "モデレーションリストを更新しました" msgid "Moderation lists" msgstr "モデレーションリスト" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "モデレーションリスト" @@ -7645,7 +7639,7 @@ msgstr "モデレーションリスト" msgid "moderation settings" msgstr "モデレーションの設定" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "モデレーションのステータス" @@ -7786,7 +7780,7 @@ msgstr "ミュート済み" msgid "Muted accounts" msgstr "ミュート中のアカウント" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "ミュート中のアカウント" @@ -7867,7 +7861,6 @@ msgstr "著作権侵害、法的要求、または規制遵守の問題を報告 msgid "Nevermind, create a handle for me" msgstr "気にせずにハンドルを作成" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "新規" @@ -7893,11 +7886,11 @@ msgstr "{firstAuthorName}からの新しい{postsCount, plural, other {投稿}}" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "新しいチャット" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "新機能" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "新しいフォロワー" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "新しいグループチャット" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "新しいグループチャット" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "新しいグループチャット:" @@ -7966,13 +7959,13 @@ msgstr "新しいリスト" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "新しいメッセージリクエスト" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "新しいメッセージ" @@ -7982,12 +7975,12 @@ msgstr "新しいメッセージ" msgid "New password" msgstr "新しいパスワード" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "新しい投稿" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "新しい順に返信を表示" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "ニュース" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "次の画像" msgid "Night" msgstr "夜" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "広告ゼロ。しつこい追跡なし。使い続けさせるために手放せなくする罠、エンゲージメントトラップもなし。Blueskyは、あなたの時間と集中を大切にします。" @@ -8098,7 +8091,7 @@ msgstr "終了時間未定" msgid "No feeds found. Try searching for something else." msgstr "フィードが見つかりませんでした。他を探してみて。" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "まだフォロワーがいません" @@ -8118,7 +8111,7 @@ msgstr "画像なし" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "いいねはありません" @@ -8135,7 +8128,7 @@ msgstr "リストなし" msgid "No longer following {0}" msgstr "{0}のフォローを解除しました" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "まだメディアがありません" @@ -8143,7 +8136,7 @@ msgstr "まだメディアがありません" msgid "No messages yet" msgstr "メッセージはありません" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "延々と流れてくる嫌なものから目が離せなくなるドゥームスクロールを生むノイズまみれのアルゴリズムは、もういらない。あなたの味方をするフィードを見つけよう。" @@ -8184,12 +8177,12 @@ msgstr "誰もメッセージを送信できません" msgid "No posts here" msgstr "ここに投稿はありません" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "まだ投稿がありません" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "まだ引用がありません" @@ -8202,7 +8195,7 @@ msgstr "最近のGIFはまだありません。ここに表示するには何か msgid "No replies" msgstr "返信を含まない" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "まだ返信がありません" @@ -8217,13 +8210,13 @@ msgstr "結果はありません" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "結果はありません" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "「{0}」に該当するものは見つかりませんでした。" @@ -8236,23 +8229,23 @@ msgstr "結果は見つかりません" msgid "No results found for \"{query}\"" msgstr "「{query}」の検索結果はありません" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "高度な検索フィルターを適用した「<0>{query}」の結果は見つかりませんでした。" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "「<0>{query}」の検索結果はありません。" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "高度な検索フィルターを適用した検索条件で結果が見つかりませんでした。" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "見つかりませんでした。" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "まだスターターパックはありません" @@ -8265,7 +8258,7 @@ msgstr "結構です" msgid "No translation received from your device." msgstr "あ使いのデバイスから翻訳を受け取れませんでした。" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "まだビデオの投稿がありません" @@ -8278,7 +8271,7 @@ msgstr "返信不可" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "まだ誰もこれをいいねしていません。あなたが最初になるべきかもしれません!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "まだ誰もこれを引用していません。あなたが最初になるべきかもしれません!" @@ -8298,6 +8291,10 @@ msgstr "同意のない親密画像(NCII)" msgid "Non-sexual Nudity" msgstr "性的ではないヌード" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "なし" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "このプラットフォームでは利用できません。" msgid "Not followed by anyone you’re following" msgstr "あなたがフォローしている誰からもフォローされていません" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "見つかりません" @@ -8333,7 +8330,7 @@ msgstr "共有についての注意事項" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注記:Blueskyはオープンでパブリックなネットワークです。この設定はBlueskyのアプリおよびウェブサイト上のみでのあなたのコンテンツの可視性を制限するものであり、他のアプリではこの設定を尊重しない場合があります。他のアプリやウェブサイトでは、ログアウトしたユーザーにあなたのコンテンツが表示される場合があります。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "注:この投稿はログイン中のユーザーにのみ表示されます。" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "まだ何も保存されていません" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "通知設定" @@ -8353,11 +8350,12 @@ msgstr "通知設定" msgid "Notification sounds" msgstr "通知音" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "ちょっと!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "OK" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "オンボーディングのリセット" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "選択した受信者のいずれかがグループチャットを許可していません。" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "選択した受信者のいずれかがあなたをブロックしていてメッセージを送れません。" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "1つもしくは複数のGIFにALTテキストがありません。" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "1つもしくは複数の画像にALTテキストがありません。" @@ -8454,11 +8454,11 @@ msgstr "選択したファイルの 1つ以上がサポートされていませ msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "選択したファイルの1つ以上が大きすぎます。最大サイズは {VIDEO_MAX_SIZE_MB}MBです。" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "一つ以上の投稿が下書きとしては長すぎます。{MAX_DRAFT_GRAPHEME_LENGTH, plural,other {最大で#文字です。}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "1つもしくは複数のビデオにALTテキストがありません。" @@ -8471,7 +8471,7 @@ msgstr "{0}のみ返信可能。" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "{1}枚の{2, plural, other {画像}}中{0}枚のみを追加しました。最大で{MAX_GALLERY_IMAGES}枚です" @@ -8519,7 +8519,7 @@ msgstr "動画付きの投稿のみ" msgid "Only replies" msgstr "返信のみ" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT(.vtt)ファイルのみに対応しています" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "このプロフィールは存在しません。別のものをスキャンしてみてください。" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "おっと!" @@ -8544,7 +8544,7 @@ msgstr "おっと!" msgid "Open advanced search options" msgstr "高度な検索オプションを開く" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "アバター・クリエイターを開く" @@ -8570,21 +8570,22 @@ msgstr "会話のオプションを開く" msgid "Open draft" msgstr "下書きを開く" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "引き出しメニューを開く" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "絵文字を入力" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "フィードを画面で開く" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "フィードの設定メニューを開く" @@ -8627,7 +8628,7 @@ msgstr "モデレーションデバッグページを開く" msgid "Open muted words and tags settings" msgstr "ミュートしたワードとタグの設定を開く" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "パックを開く" @@ -8699,7 +8700,7 @@ msgstr "デバッグエントリーの追加詳細を開く" msgid "Opens alt text dialog" msgstr "ALTテキストのダイアログを開く" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "デバイスのカメラを開く" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "新しいBlueskyのアカウントを作成するフローを開く" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "既存のBlueskyアカウントにサインインする画面を開きます" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "パスワードが更新されました!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "一時停止" @@ -8925,12 +8926,12 @@ msgstr "一時停止" msgid "Pause GIF" msgstr "GIFを一時停止" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "ビデオを一時停止" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "ユーザー" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName}がフォロー中の人は参加をリクエストできます" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0}がフォロー中のユーザー" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0}をフォロー中のユーザー" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "フォロー中の人" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "フォロー中の人は参加をリクエストできます" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "フォロー中の人" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "成人向けの画像です。" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "フィードをピン留め" @@ -9034,7 +9035,7 @@ msgstr "フィードをピン留め" msgid "Pin to home" msgstr "ホームにピン留め" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "ホームにピン留め" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "固定" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0}をホームにピン留めしました" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "フィードにピン留めしました" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "再生" @@ -9076,8 +9077,8 @@ msgstr "{0}を再生" msgid "Play GIF" msgstr "GIFを再生" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "ビデオを再生" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "メッセージを以下に記入してください:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "政治" @@ -9269,7 +9270,7 @@ msgstr "政治" msgid "Porn" msgstr "ポルノ" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "投稿" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "投稿" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "写真を投稿" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "ビデオを投稿" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "すべてポスト" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "とにかく投稿する" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "ブロックされた投稿" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0}による投稿" @@ -9340,7 +9341,7 @@ msgstr "あなたが非表示にした投稿" msgid "Post interaction settings" msgstr "投稿への反応の設定" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "投稿への反応の設定" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "投稿を固定しました" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "投稿を保存しました" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "投稿の固定を解除しました" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "投稿" @@ -9398,6 +9396,10 @@ msgstr "投稿はテキスト、タグ、またはその両方に基づいてミ msgid "Posts hidden" msgstr "非表示の投稿" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "投稿、返信" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "誤解を招く可能性のあるリンク" @@ -9449,20 +9451,21 @@ msgstr "プライバシー" msgid "Privacy and security" msgstr "プライバシーとセキュリティ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "プライバシーとセキュリティ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "プライバシーとセキュリティの設定" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "プライバシーポリシー" msgid "Privacy violation of a minor" msgstr "未成年者のプライバシー侵害" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIFを処理しています…" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "ビデオを処理中…" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "ユーザーを一括でミュートまたはブロックする、公開された共有可能なリスト。" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "投稿を公開" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "投稿を公開" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "返信を公開" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "返信を公開" @@ -9599,12 +9602,12 @@ msgstr "引用投稿は無効です" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "引用" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "この投稿を引用する" @@ -9647,7 +9650,7 @@ msgstr "あなたのアカウントを再有効化" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "{0, plural, other {さらに#個の返信}}を読む" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "高度な検索フィルターの使い方を読む" @@ -9657,11 +9660,11 @@ msgstr "高度な検索フィルターの使い方を読む" msgid "Read blog post" msgstr "ブログ記事を読む" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "文字を減らす" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "もっと読む" @@ -9687,11 +9690,11 @@ msgstr "Blueskyのプライバシーポリシーを読む" msgid "Read the Bluesky Terms of Service" msgstr "Blueskyの利用規約を読む" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "リアルな会話。" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "リアルな人々。" @@ -9721,10 +9724,6 @@ msgstr "検索履歴" msgid "Recently used" msgstr "最近使用" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "おすすめ" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "再接続" @@ -9748,7 +9747,7 @@ msgstr "チャットのリクエストを拒否する" msgid "Reject join request" msgstr "参加リクエストを拒否" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "会話を再読み込み" @@ -9766,7 +9765,7 @@ msgstr "会話を再読み込み" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "削除" @@ -9792,8 +9791,8 @@ msgstr "{displayName}を外しますか?" msgid "Remove {q}" msgstr "{q}を削除" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "アカウント切替リストから取り除く" @@ -9845,15 +9844,15 @@ msgstr "フィルターを削除" msgid "Remove from chat" msgstr "チャットから削除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "マイフィードから削除" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "クイックアクセスから削除しますか?" @@ -9862,7 +9861,7 @@ msgstr "クイックアクセスから削除しますか?" msgid "Remove from saved feeds" msgstr "保存されたフィードから削除" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "保存済投稿から削除" @@ -9880,8 +9879,8 @@ msgstr "イメージを削除" msgid "Remove live status" msgstr "ライブステータスを削除" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "メンバーを外す" @@ -9943,7 +9942,7 @@ msgstr "リストから削除されました" msgid "Removed from saved feeds" msgstr "保存されたフィードから削除しました" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "保存済投稿から削除しました" @@ -9952,7 +9951,7 @@ msgstr "保存済投稿から削除しました" msgid "Removed from starter pack" msgstr "スターターパックから削除しました" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "あなたへの返信" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "{senderName}からの返信先メッセージ。タップしてスクロール" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "参加する前に送られた返信先メッセージ" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "返信先のメッセージ、タップしてスクロール" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "返信" @@ -10037,7 +10037,7 @@ msgstr "この投稿への返信は無効化されています。" msgid "Reply" msgstr "返信" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "返信" @@ -10098,8 +10098,8 @@ msgstr "会話を報告" msgid "Report dialog" msgstr "報告ダイアログ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "フィードを報告" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "あなたのリポスト" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "リポスト" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "この投稿をリポストする" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "リポストのリポスト" @@ -10253,7 +10253,7 @@ msgstr "リクエスト済" msgid "Requests" msgstr "リクエスト" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "エラーになった最後のアクションをやり直す" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "ホームページに戻る" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "前のページに戻る" @@ -10446,27 +10446,27 @@ msgstr "生年月日を保存" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "変更を保存" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "変更を保存しますか?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "下書きを保存" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "下書きを保存しますか?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QRコードを保存" msgid "Save these options for next time" msgstr "これらのオプションを次回のために保存する" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "マイフィードに保存" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "保存されたフィード" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "保存済投稿" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "フィードを保存しました" @@ -10520,8 +10520,8 @@ msgstr "フィードを保存しました" msgid "Say hello!" msgstr "よろしく!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "誰かに挨拶してみよう" @@ -10535,7 +10535,7 @@ msgstr "スキャン" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "QRコードをスキャン" @@ -10543,15 +10543,15 @@ msgstr "QRコードをスキャン" msgid "Science" msgstr "科学" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "左にスクロール" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "右にスクロール" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "返信先のメッセージにスクロール" @@ -10564,8 +10564,8 @@ msgstr "一番上までスクロール" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "検索" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0}の投稿を検索" @@ -10612,11 +10612,11 @@ msgstr "{q}を検索" msgid "Search for feeds that you want to suggest to others." msgstr "他の人におすすめしたいフィードを検索。" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "もっとアカウントを検索" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "もっとフィードを検索" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIFを検索" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "ログアウト時の検索は現在利用できません" @@ -10709,6 +10709,7 @@ msgstr "Blueskyの求人を見る" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "もっと見る" @@ -10716,8 +10717,12 @@ msgstr "もっと見る" msgid "See more suggested profiles" msgstr "推奨プロフィールをもっと見る" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "トレンド・トピックをもっと見る" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "おすすめのアカウントを見る" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "シークバー。矢印キーで早送りや早戻し、スペースで再生/一時停止" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "\"{interestsDisplayName}\" カテゴリーを選択" @@ -10748,7 +10753,7 @@ msgstr "{0}を選択" msgid "Select {langName}" msgstr "{langName}を選択" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "色を選択" @@ -10764,11 +10769,11 @@ msgstr "アカウントを選択" msgid "Select an app language" msgstr "アプリの言語を選択" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "アバターを選択" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "絵文字を選択" @@ -10780,12 +10785,13 @@ msgstr "オプションを選択" msgid "Select app language" msgstr "アプリの言語を選択" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "キャプションファイルを選択(.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "チャット\"{name}\"を選択" @@ -10826,7 +10832,7 @@ msgstr "GIFを選ぶ" msgid "Select GIF \"{0}\"" msgstr "GIF「{0}」を選ぶ" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "グループチャットのメンバーを選択" @@ -10864,7 +10870,7 @@ msgstr "第一言語を選択" msgid "Select telephone code" msgstr "電話の国番号を選択" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "絵文字{emojiName}をアバターとして選択" @@ -10945,7 +10951,8 @@ msgstr "メッセージを送信" msgid "Send post to {name}" msgstr "投稿を {name} に送る" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "投稿を送る…" @@ -10963,12 +10970,12 @@ msgstr "携帯電話からメッセージを送信する" msgid "Send verification email" msgstr "確認メールを送信" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "ダイレクトメッセージで送信" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "チャットで送信" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "ホスティングプロバイダーを手動で設定" msgid "Sets email for password reset" msgstr "パスワードをリセットするためのメールアドレスを入力" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "設定" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "他のユーザーのアクティビティの通知の設定" @@ -11036,49 +11043,49 @@ msgstr "他のユーザーのアクティビティの通知の設定" msgid "Settings for allowing others to be notified of your posts" msgstr "あなたの投稿の通知を他のユーザーが受け取るのを許可する設定" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "いいねの通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "メンションの通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "新しいフォロワーの通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "その他すべての通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "リポストへのいいねの通知の設定" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "新しいメッセージリクエストの通知の設定" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "新しいメッセージの通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "リポストのリポストの通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "引用の通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "返信の通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "リポストの通知の設定" @@ -11115,8 +11122,8 @@ msgstr "年齢範囲を共有" msgid "Share anyway" msgstr "とにかく共有" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "著者DIDを共有" @@ -11127,7 +11134,7 @@ msgstr "著者DIDを共有" msgid "Share feedback" msgstr "フィードバックを共有" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "リンク共有のダイアログ" msgid "Share my profile" msgstr "プロフィールを共有" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "投稿のat:// URIをコピー" @@ -11169,12 +11176,12 @@ msgstr "プロフィールを共有" msgid "Share QR code" msgstr "QRコードを共有" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "このフィードを共有" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "この検索を共有" @@ -11186,8 +11193,8 @@ msgstr "このスターターパックを共有" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "このスターターパックを共有して、他のユーザーがBlueskyでのコミュニティに参加するよう手伝います" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "連絡先を共有して友達を見つける" msgid "Share your thoughts…" msgstr "あなたの考えを共有…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Shared Preferencesのテスター" @@ -11219,7 +11226,7 @@ msgstr "年齢範囲を共有すると、Appleアカウントに関連付けら msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "年齢範囲を共有すると、Googleアカウントに関連付けられた範囲のみが開示されます(例:18歳以上であること)。<0>正確な年齢や誕生日が共有されることはなく、このデータがこのデバイスから送信されることもありません。そのため、このデバイスでのみアクセスが有効になります。または、<1>信頼できるパートナーである KWS を利用して認証を完了し、すべてのプラットフォームでアクセスを有効にすることもできます。" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "表示" msgid "Show alt text" msgstr "ALTテキストを表示" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "とにかく表示" @@ -11274,8 +11281,8 @@ msgstr "とにかくリストを表示" msgid "Show lists of users to select from" msgstr "選択するユーザーのリストを表示します" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "さらに表示" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "警告の表示とフィードからのフィルタリング" msgid "Show when you’re live" msgstr "ライブ状態を表示" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "この投稿がいつ作成されたかについての情報を表示する" @@ -11341,15 +11348,15 @@ msgstr "この投稿がいつ作成されたかについての情報を表示す msgid "Shows other accounts you can switch to" msgstr "切替可能な他のアカウントを表示" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "コンテンツを表示" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "コンテンツを表示" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "サインアウトしますか?" msgid "Sign up" msgstr "サインアップ" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "サインインが必要" @@ -11469,7 +11476,7 @@ msgstr "スキップ" msgid "Skip contact sharing and continue to the app" msgstr "連絡先の共有をスキップしてアプリに進む" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "空の投稿をスキップしますか?" @@ -11487,7 +11494,7 @@ msgstr "次のステップへスキップ" msgid "slide" msgstr "スライド" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "小さい" @@ -11499,7 +11506,7 @@ msgstr "リマインダーをスヌーズ" msgid "So many thoughts, you should post one" msgstr "下書きがいっぱいだ、どれかひとつ投稿しよう" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "あなたがコントロールするソーシャルメディア。" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "誰かがグループから退出しました" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "誰かが{0}とリアクションしました" @@ -11554,7 +11561,7 @@ msgstr "誰かが{0}とリアクションしました" msgid "Someone reacted {0} to {target}" msgstr "誰かが{target}に{0}とリアクションしました" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "誰かが返信しました" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "何らかの問題が発生したようなので、もう一度お試しください" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "問題が発生しました。しばらくしてからもう一度お試 msgid "Something went wrong. Please try again." msgstr "問題が発生しました。もう一度お試しください。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "何か問題がありますか?お知らせください。" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "スパム、その他の不正・欺瞞的行為" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "スポーツ" @@ -11668,7 +11675,7 @@ msgstr "会話を開始すると、ここに表示されます。" msgid "Start a group chat" msgstr "グループチャットを開始" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "新しいチャットを開始" @@ -11682,17 +11689,17 @@ msgstr "ユーザーを追加する" msgid "Start adding people!" msgstr "ユーザーを追加して!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "チャットを開始" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "{displayName}とのチャットを開始" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "スターターパック" @@ -11715,12 +11722,16 @@ msgstr "自分のスターターパック" msgid "Starter pack is invalid" msgstr "スターターパックが無効です" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "スターターパック" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "スターターパック" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ簡単に共有できます。" @@ -11728,7 +11739,7 @@ msgstr "スターターパックを使ってお気に入りのフィードやユ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ簡単に共有できます。" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ共有できます。" @@ -11742,7 +11753,7 @@ msgstr "ステータスページ" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "ステップ {0} / {1}" @@ -11754,7 +11765,7 @@ msgstr "ストレージがクリアされたため、今すぐアプリを再起 msgid "Stored as part of a secure code for matching with others" msgstr "他のユーザーとのマッチングのため、セキュアなコードの一部として保存されます" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "ストーリーブック" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "{0}の{publicationTitle}を購読" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "これらのラベルを使用するには@{0}を登録してください:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "正常に認証されました" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "おすすめ" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "おすすめのアカウント" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "サンセット" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "お住まいの国ではこの機能がサポートされていません!後でもう一度確認してください。" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "停止中のアカウントはグループチャットに参加できません。" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "停止中のアカウントはチャットに参加できません。" @@ -11921,8 +11934,8 @@ msgstr "{0}へ切り替える" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "システム" @@ -11945,7 +11958,7 @@ msgstr "会話をプライベートに。" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "下をタップするとBlueskyがGPSの位置情報にアクセスできるようになります。 その後、そのデータを使用して、お住まいの地域で利用可能なコンテンツと機能をより正確に決定します。" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "タップして詳細を表示" @@ -11976,7 +11989,7 @@ msgstr "タップしてコンテキストメニューを閉じる" msgid "Tap to copy this invite link" msgstr "タップしてこの招待リンクをコピー" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "タップして消す" @@ -12003,7 +12016,7 @@ msgstr "タップしてリアクション{0}を削除" msgid "Tap to request access to join this group chat" msgstr "タップしてこのグループチャットへの参加をリクエストします" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "タップして再試行" @@ -12016,7 +12029,7 @@ msgstr "タップして{0}のリアクションを表示" msgid "Tap to show all reactions" msgstr "タップしてすべてのリアクションを表示" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "タップしてリアクションを表示" @@ -12032,7 +12045,7 @@ msgstr "タスク完了 - 10フォロー!" msgid "Task complete - 10 likes!" msgstr "タスク完了 - 10いいね!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "アルゴリズムを鍛える" @@ -12060,7 +12073,7 @@ msgstr "規約" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "そのスターターパックが見つかりませんでした。" msgid "That username is already taken" msgstr "そのユーザー名は既に使用されています" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "以上です、皆さん!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "これで全部です!" @@ -12216,7 +12229,7 @@ msgstr "サーバーで問題が発生しているようです。少し間をお msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "見ようとしたスターターパックが無効です。代わりにスターターパックを削除してください。" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "コンテキストメニューの件名" @@ -12238,7 +12251,7 @@ msgstr "入力された確認コードが正しくありません。正しいリ msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "認証プロバイダがあなたの電話番号にコードを送信できませんでした。電話番号を確認して、もう一度お試しください。" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "テーマ" @@ -12266,7 +12279,7 @@ msgstr "GIF の読み込み中に問題が発生しました。接続を確認 msgid "There was a problem with your internet connection, please try again" msgstr "インターネット接続に問題が発生しました。もう一度やり直してください" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "インターネット接続に問題が発生しました。もう一度 msgid "There was an issue contacting the server" msgstr "サーバーへの問い合わせ中に問題が発生しました" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "サーバーへの問い合わせ中に問題が発生したので、インターネットへの接続を確認の上、もう一度試してください。" @@ -12283,8 +12296,8 @@ msgstr "サーバーへの問い合わせ中に問題が発生したので、イ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "通知の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "投稿の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" @@ -12309,7 +12322,7 @@ msgstr "サービス情報の取得中に問題が発生しました" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "フィードの削除中に問題が発生しました。インターネットへの接続を確認の上、もう一度試してください。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "これらの設定はFollowingフィードにのみ適用されます。 msgid "These URLs" msgstr "これらのURL" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "彼らはこのチャットのオーナーです" @@ -12392,7 +12405,7 @@ msgstr "彼らはこのチャットのオーナーです" msgid "They won’t be able to rejoin unless you invite them again." msgstr "再度招待しないと再び参加することはできません。" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "この{screenDescription}にはフラグが設定されています:" @@ -12408,7 +12421,7 @@ msgstr "このアカウントは所有者により自動化済みとして設定 msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "このアカウントは認証は何度か認証が試みられましたが、現在は認証されていません。" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "このアカウントを閲覧するためにはサインインが必要です。" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "このフィードは空です!もっと多くのユーザーをフォローするか、言語の設定を調整する必要があるかもしれません。" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "このフィードは空です。" @@ -12554,7 +12567,7 @@ msgstr "このグループはオーナーへのモデレーション処置によ msgid "This handle is reserved. Please try a different one." msgstr "このハンドルは予約されています。他のものをお試しください。" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "この画像は使用できませんでした。.jpgまたは.pngのような別の形式で試してください。" @@ -12596,7 +12609,7 @@ msgstr "あなたによって適用されたラベルです。" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "このラベルはあなたのアカウント全体に適用され、すべての投稿に表示されます。" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "このラベラーはどのようなラベルを発行しているか宣言しておらず、活動していない可能性もあります。" @@ -12621,13 +12634,13 @@ msgstr "このリストは空です。" msgid "This message is hidden" msgstr "このメッセージは非表示です" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "このユーザーがあなたをブロックしているため、このメッセージは非表示です。" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "このユーザーをブロックしているため、このメッセージは非表示です。" @@ -12641,7 +12654,7 @@ msgstr "このユーザーはあなたをブロックしています" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "<0>{0}に投稿されたと表示されていますが、Blueskyに初めて登場したのは<1>{1}です。" @@ -12649,7 +12662,7 @@ msgstr "<0>{0}に投稿されたと表示されていますが、Blueskyに msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "投稿に対する返信制限のタイプが不明です。アプリが古いかもしれません。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "この投稿はログイン中のユーザーにのみ表示されます。" @@ -12661,7 +12674,7 @@ msgstr "この投稿は投稿者によって削除されました" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "この投稿はフィードとスレッドから非表示になります。元に戻すことはできません。" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "この投稿の投稿者は引用投稿を無効にしています。" @@ -12698,11 +12711,12 @@ msgstr "これには数分かかるはずです。" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "このユーザーには表示名がないため認証できません。" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "このユーザーにはフォロワーがいません。" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "このユーザーはあなたをブロックしているため、メッセージを送信できません。" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "このユーザーはあなたをブロックしているため、あなたはこのユーザーのコンテンツを閲覧できません。" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "このユーザーはチャットを無効にしているため、メッセージできません。" @@ -12733,11 +12748,11 @@ msgstr "このユーザーはミュートした<0>{0}リストに含まれ msgid "This user is new here. Press for more info about when they joined." msgstr "新しいユーザーです。ここを押すといつ参加したかの情報が表示されます。" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "このユーザーは誰もフォローしていません。" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "このビデオはあなたのデバイスでは再生できません。あたなのブラウザには再生に必要なビデオコーデック(H.264/AAC)が無いようです。" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "あなたのBlueskyアカウント <0>{currentHandle}と関連するすべてのデータは削除され、元に戻せません。 このアカウントで使用する他の<1>ATプロトコルサービスに影響を与えることに注意してください。" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "クイックアクセスのリストから@{0}を削除します。" @@ -12786,7 +12801,7 @@ msgstr "スレッドの設定" msgid "Threaded" msgstr "スレッド" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "スレッドの設定" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "連絡先が多すぎます。友達を見つけるためにインポートできる連絡先の数を超えています" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "トップ" @@ -12858,7 +12873,7 @@ msgstr "トップ" msgid "Top replies first" msgstr "トップの返信を最初に" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "トピック" @@ -12893,7 +12908,9 @@ msgstr "お使いのデバイスでは同じ言語への翻訳ができません msgid "Tree view" msgstr "ツリー表示" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "トレンド" @@ -12902,7 +12919,7 @@ msgstr "トレンド" msgid "Trending GIFs" msgstr "人気のGIF" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "トレンドのオプション" @@ -12918,11 +12935,11 @@ msgstr "トローリング(荒らし)" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "信頼は人間関係、コミュニティ、共有されている文脈から得られるため、<0>信頼できる認証者(認証を直接発行できる組織)を有効にしています。" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "他の検索キーワードを試すか、フィルターを削除してください。" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "他の検索キーワードをお試しください。" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "参加リクエストを取得できませんでした。" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "選択した受信者を見つけられません。" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "選択した受信者が見つけられません。" @@ -13024,12 +13043,12 @@ msgstr "利用不可" msgid "Unavailable feed information" msgstr "フィードの情報が利用できません" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "アカウントのブロックを解除しますか?" msgid "Unblock list" msgstr "リストのブロックを解除" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "{0}のフォローを解除" msgid "Unfollow account" msgstr "アカウントのフォローを解除" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "ユーザーのフォローを解除" @@ -13132,7 +13151,7 @@ msgstr "ラベルのない成人向けコンテンツ" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "ラベルなし、虐待的、または合意のない成人向けコンテンツ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "いいねを外す" @@ -13192,7 +13211,7 @@ msgstr "このグループチャットのミュートを解除" msgid "Unmute thread" msgstr "スレッドのミュートを解除" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "ビデオのミュートを解除" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "ピン留めを解除" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "フィードのピン留めを外す" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "ホームからピン留めを解除" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "モデレーションリストのピン留めを解除" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0}のピン留めを解除しました" @@ -13258,11 +13277,11 @@ msgstr "このラベラーの登録を解除" msgid "Unsubscribed from list" msgstr "リストの登録を解除しました" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "サポートされていなクリップボードのコンテンツ" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "サポートしていないビデオ形式:{mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "返信の表示設定の更新に失敗しました" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "代わりに写真をアップロード" @@ -13355,7 +13374,7 @@ msgstr "ファイルからアップロード" msgid "Upload from Library" msgstr "ライブラリーからアップロード" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIFをアップロード中…" @@ -13369,7 +13388,7 @@ msgstr "画像をアップロード中…" msgid "Uploading link thumbnail..." msgstr "リンクのサムネイルをアップロード中…" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "ビデオをアップロード中…" @@ -13408,7 +13427,7 @@ msgstr "ハンドルと一緒にこのパスワードを使用して、他のア msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "KWSまたはBlueskyがあなたに連絡する必要がある場合に備えて、あなたが持っているアカウントの電子メールアドレスまたは別の実際の電子メールアドレスを使用してください。" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "ユーザー" @@ -13510,7 +13529,7 @@ msgstr "認証に失敗しました。再度試してください。" msgid "Verification settings" msgstr "認証設定" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "認証設定" @@ -13618,7 +13637,7 @@ msgstr "ビデオ" msgid "Video failed to process" msgstr "ビデオの処理に失敗" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "ビデオフィード" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "{0}からのビデオ:{text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "{0}のビデオ。タップして再生または一時停止します" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "ビデオゲーム" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "ビデオは一時停止中です" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "ビデオを再生中です" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "ビデオが見つかりません。" @@ -13653,7 +13672,7 @@ msgstr "ビデオが見つかりません。" msgid "Video settings" msgstr "ビデオの設定" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "ビデオをアップロードしました" @@ -13662,17 +13681,17 @@ msgstr "ビデオをアップロードしました" msgid "Video: {0}" msgstr "ビデオ:{0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "ビデオ" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "ビデオは3分未満でなければなりません。" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "表示" @@ -13691,9 +13710,9 @@ msgstr "{0}のアバターを表示" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0}のプロフィールを表示" @@ -13724,13 +13743,13 @@ msgstr "詳細についてのブログの記事を見る" msgid "View debug entry" msgstr "デバッグエントリーを表示" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "詳細を表示" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "スレッドをすべて表示" @@ -13761,7 +13780,7 @@ msgstr "もっと表示" msgid "View more trending videos" msgstr "話題のビデオをもっと見る" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "投稿を表示" @@ -13798,11 +13817,11 @@ msgstr "このグループチャットの招待リンクを表示" msgid "View the labeling service provided by @{0}" msgstr "@{0}によって提供されるラベリングサービスを見る" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "このユーザーの認証情報を表示" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "このフィードにいいねしたユーザーを見る" @@ -13831,7 +13850,7 @@ msgstr "モデレーションリストを見る" msgid "View your muted accounts" msgstr "ミュートしたアカウントを見る" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "あなたの認証情報を表示" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "ネットワークで問題が発生しています。もう一度試してください" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "ネットワークで問題が発生しています。もう一度試してください" @@ -14043,7 +14062,7 @@ msgstr "ネットワークで問題が発生しています。もう一度試し msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Blueskyに新しい認証方式を導入しました。見やすいチェックマークです。" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "参加してくださることを大変嬉しく思います!" @@ -14064,13 +14083,15 @@ msgstr "大変申し訳ありませんが、このリストを解決できませ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "大変申し訳ありませんが、現在ミュートされたワードを読み込むことができませんでした。もう一度お試しください。" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "申し訳ございませんが、検索を完了できませんでした。" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "大変申し訳ありませんが、検索を完了できませんでした。数分後にもう一度お試しください。" @@ -14078,7 +14099,7 @@ msgstr "大変申し訳ありませんが、検索を完了できませんでし msgid "We're sorry, you cannot access this screen at this time." msgstr "申し訳ありませんが、現時点ではこの画面にアクセスできません。" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "大変申し訳ありません!返信しようとしている投稿は削除されました。" @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "what's up" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "最近どう?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "誰が認証できますか?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "おっと!" @@ -14220,21 +14241,21 @@ msgstr "ユーザーをブロックするかこの会話を削除しますか( msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "保存されている下書きを表示する前にこれを下書きとして保存しますか?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "後で編集するためにこれを下書きとして保存しますか?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "投稿を書く" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "投稿を書く" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "返信を書く" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "お客様は、アプリにアクセスする前に年齢を確認することを法的に要求する地域からBlueskyにアクセスしています。" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0}をブロックしています" @@ -14342,7 +14363,7 @@ msgstr "もうライブ中ではありません" msgid "You are not allowed to upload videos." msgstr "あなたはビデオのアップロードを許可されていません。" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "まだ誰もフォローしていません" @@ -14362,7 +14383,7 @@ msgstr "あなたは認証されています。表示名を変更すると、認 msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "あなたは認証されています。ハンドルを変更すると、認証ステータスが失われます。<0>詳細はこちら。" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "「気になること」は「コンテンツとメディアの設定」でいつでも変更できます。" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "新しいパスワードでサインインできるようになりました。" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "投稿ひとつあたり{MAX_GALLERY_IMAGES, plural, other {画像#枚}}までしか添付できません" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "下書きは最大で1000文字です。" @@ -14439,9 +14460,9 @@ msgstr "チャットの履歴は読めますが、新しいメッセージは送 msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "合計で{MAX_GALLERY_IMAGES, plural, other {#枚の画像}}まで選択できます。" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "これは設定画面から後で変更できます。" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "最大で{EMOJI_REACTION_LIMIT, plural, other {#文字の絵文字リアクション}}までしか追加できません" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "あなたはまだグループチャットを作成できません。" @@ -14555,7 +14577,7 @@ msgstr "メールアドレスの確認に成功しました。このダイアロ msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "ビデオのアップロードの制限に一時的に到達しました。時間をおいてもう一度お試しください。" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "この下書きに未保存の変更があります。保存しますか?" @@ -14563,7 +14585,7 @@ msgstr "この下書きに未保存の変更があります。保存しますか msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "未保存の変更があります。既存の下書きを表示する前に保存しますか?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "スターターパックをまだ作成していません!" @@ -14614,7 +14636,7 @@ msgstr "追加できるのは{STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PAC msgid "You may only add up to 3 feeds" msgstr "3つまでフィードを追加できます" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "メンバーを外すには、チャットのオーナーでなければなりません。" @@ -14622,7 +14644,7 @@ msgstr "メンバーを外すには、チャットのオーナーでなければ msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Blueskyを使用するには、13歳以上である必要があります。詳細については、<0>利用規約をご覧ください。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "スターターパックを作成するには、少なくとも7人をフォローしなければなりません。" @@ -14639,7 +14661,7 @@ msgstr "メディアライブラリへのアクセスを許可する必要があ msgid "You need to verify your email address before you can enable email 2FA." msgstr "2要素認証メールを有効にする前に、メールアドレスを確認する必要があります。" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "あなたはこのチャットのオーナーです" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "今すぐアプリを再起動したほうが良いでしょう。" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "あなたは{0}とリアクションしました" @@ -14667,15 +14689,15 @@ msgstr "あなたは{target}に{0}とリアクションしました" msgid "You recently changed your birthdate" msgstr "最近、生年月日を変更しました" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "返信しました" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "{originalName}さんに返信しました" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "自分の投稿に返信しました" @@ -14715,11 +14737,11 @@ msgstr "招待されない限り、再び参加することはできません。 msgid "You: {message}" msgstr "あなた: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "アカウントの作成を完了するとおすすめのユーザーやフィードをフォローします!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "アカウントの作成を完了するとおすすめのユーザーをフォローします!" @@ -14791,7 +14813,7 @@ msgstr "アクティブなコンテンツの最後に到達しました。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "フィードはここまでです!もっとフォローするアカウントを見つけましょう。" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "下書きの数の上限に達しました" @@ -14799,7 +14821,7 @@ msgstr "下書きの数の上限に達しました" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "リクエスト数の上限に達しました。後でもう一度お試しください。" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "フィルターの上限である{MAX_FILTERS, plural, other {#個}}に達しました。新しいフィルターを作成する代わりに、既存のフィルターに値を追加してください。" @@ -14815,11 +14837,11 @@ msgstr "ビデオのアップロードの一日の上限に到達しました( msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ビデオのアップロードの一日の上限に到達しました(ビデオの数が多すぎます)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "見るべきビデオがなくなりました。休憩を取ってもいい時間かも?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "あなたのアカウント" @@ -14835,11 +14857,11 @@ msgstr "あなたのアカウントは停止されています" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "あなたのアカウントは作成して間もないため動画をアップロードできません。もう一度お試しください。" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "あなたのアカウントは新しすぎます" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "新しいグループチャットを作るにはアカウントを作って少なくとも7日経ってなくてはなりません。" @@ -14930,8 +14952,8 @@ msgstr "メールアドレスからホスティングプロバイダーを検出 msgid "Your hosting provider is detected automatically from the username you enter." msgstr "入力したユーザー名から、ホスティングプロバイダーが自動的に検出されました。" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "「気になること」を更新しました!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "「気になること」を設定すると、好きなものを見つけやすくなります!" @@ -14967,11 +14989,11 @@ msgstr "パスワードが正常に変更されました!これからBluesky msgid "Your password must be at least 8 characters long." msgstr "パスワードは 8 文字以上である必要があります。" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "投稿が送信されました" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "投稿が送信されました" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "あなたの主要言語" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "あなたのプロフィール画像" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "あなたのプロフィール写真のまわりを、他のユーザーのプロフィール写真が同心円状に取り囲んでいる" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "返信が送信されました" @@ -15005,7 +15027,7 @@ msgstr "報告は <0>{0}に送信されます。" msgid "Your selected interests help us serve you content you care about." msgstr "「気になること」は興味を引くコンテンツを提供するために役立てます。" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "あなたのスレッドには空の投稿がありますが、それらはスキップされます。他の残りの投稿はスレッドとして公開されます。" diff --git a/src/locale/locales/kab/messages.po b/src/locale/locales/kab/messages.po index da997055fd..d245e243f3 100644 --- a/src/locale/locales/kab/messages.po +++ b/src/locale/locales/kab/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: kab\n" +"Language: kab_KAB\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Kabyle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1600,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1665,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1849,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1938,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2262,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2299,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2425,28 +2394,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2825,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2974,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3112,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3236,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3269,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3591,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3624,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3633,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3665,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3861,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3955,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,19 +4070,19 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4374,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4473,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4482,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4582,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4658,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4729,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4860,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +5002,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5515,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "" @@ -6198,7 +6172,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,12 +6748,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6788,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6824,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6836,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6846,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6889,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6965,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7029,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7057,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7065,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7083,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7282,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7630,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7639,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8330,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8350,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8471,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8544,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8570,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8727,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8926,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9077,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "" @@ -9269,7 +9270,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9341,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,12 +10703,13 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13374,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13672,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13681,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13743,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" @@ -13818,8 +13837,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13850,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14154,8 @@ msgstr "" msgid "what’s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/km/messages.po b/src/locale/locales/km/messages.po index 229662102d..04bdceea19 100644 --- a/src/locale/locales/km/messages.po +++ b/src/locale/locales/km/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: km\n" +"Language: km_KH\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Khmer\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} កំពុងតាម" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} មិនអាចផ្ញើសារបានទេ" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {អ្នកកំពុងតាម} other #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "៣០ ថ្ងៃ" msgid "7 days" msgstr "៧ ថ្ងៃ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "ភាពងាយស្រួល" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "ការកំណត់មានភាពងាយស្រួល" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "គណនីត្រូវបានបិទសំឡេងដោយប msgid "Account options" msgstr "ជម្រើសគណនី" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "គណនីត្រូវបានដកចេញពីការចូលប្រើរហ័ស" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "បន្ថែមអត្ថបទជំនួស (ជាជម្រ msgid "Add another account" msgstr "បន្ថែមគណនីផ្សេងទៀត" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "បន្ថែមប្រកាសមួយទៀត" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "បញ្ចូលព័ត៌មាននេះទៅក្នុងម msgid "Add to lists" msgstr "បន្ថែមទៅបញ្ជី" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "មនុស្សពេញវ័យ" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "អនុញ្ញាតឱ្យចូលប្រើសារផ្ទ msgid "Already have a code?" msgstr "មានលេខកូដរួចហើយ?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "\"អ៊ីមែល​ត្រូវ​បាន​ផ្ញើ​ទ msgid "An error has occurred" msgstr "កំហុសមួយបានកើតឡើង" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "កំហុសមួយបានកើតឡើង" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងបង្កើតកញ្ចប់ចាប់ផ្តើមរបស់អ្នក។ ចង់សាកល្បងម្តងទៀតទេ?" @@ -1640,11 +1600,11 @@ msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុ msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងផ្ទុកវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុងផ្ទុកវីដេអូ។ សូមព្យាយាមម្តងទៀត" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "បញ្ហាដែលមិនត្រូវបានរួមបញ្ចូលនៅក្នុងជម្រើសទាំងនេះ" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "បញ្ហាមួយបានកើតឡើងខណៈពេលព្យាយាមបើកការជជែក" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "ឈ្មោះពាក្យសម្ងាត់កម្មវិធ msgid "App passwords" msgstr "ពាក្យសម្ងាត់កម្មវិធី" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ពាក្យសម្ងាត់កម្មវិធី" @@ -1891,8 +1849,8 @@ msgstr "ប្តឹងឧទ្ធរណ៍លើការសម្រេចច msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "បានរក្សាទុកពី {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1938,7 @@ msgstr "តើអ្នកប្រាកដថាចង់លុបវាចេ msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "តើអ្នកប្រាកដថាចង់បោះបង់ការបង្ហោះនេះទេ?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "ចាក់វីដេអូ និង GIFs ដោយស្វ័យ msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "មុននឹងបង្កើតកញ្ចប់ចាប់ផ្តើម អ្នកត្រូវតែផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នកជាមុនសិន" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "ថ្ងៃកំណើត" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "រារាំង" msgid "Blocked accounts" msgstr "គណនី​ដែល​បាន​ទប់ស្កាត់" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "គណនី​ដែល​បាន​ទប់ស្កាត់" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ការទប់ស្កាត់មិនរារាំងអ្នកដាក់ស្លាកនេះពីការដាក់ស្លាកនៅលើគណនីរបស់អ្នកនោះទេ" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky មិនអាចបញ្ជាក់ពីភាពត្រឹមត្រូវនៃកាលបរិច្ឆេទដែលបានទាមទារនោះទេ" @@ -2330,7 +2299,7 @@ msgstr "Bluesky គឺជាបណ្តាញបើកចំហដែលអ្ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky គឺល្អជាមួយមិត្តភក្តិ!" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky នឹងជ្រើសរើសសំណុំនៃគណនីដែលបានណែនាំពីមនុស្សនៅក្នុងបណ្តាញរបស់អ្នក" @@ -2425,24 +2394,25 @@ msgstr "រកមើលការណែនាំបន្ថែមនៅលើទ msgid "Browse other feeds" msgstr "រកមើលព័ត៌មានផ្សេងទៀត" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "ដោយ {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "តាមរយៈការបង្កើតគណនីមួយ អ msgid "By creating an account you agree to the <0>Terms of Service." msgstr "តាមរយៈការបង្កើតគណនីមួយ អ្នកយល់ព្រមនឹង <0>លក្ខខណ្ឌប្រើប្រាស់" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "កាមេរ៉ា" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "បោះបង់ការបើកដំណើរការឡើងវ msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "បោះបង់ការស្វែងរក" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "បានបិទការជជែក" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "ការកំណត់ការជជែក" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "បាន​បើក​ការ​ជជែក" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "ជ្រើសរើសវិធីសាស្ត្រផ្ទៀង msgid "Choose Feeds" msgstr "ជ្រើសរើសមតិព័ត៌មាន" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "ជ្រើសរើសសម្រាប់ខ្ញុំ" @@ -2854,7 +2825,7 @@ msgstr "ជ្រើសរើសមនុស្ស" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "ជ្រើសរើសពណ៌នេះជារូបតំណាងរបស់អ្នក" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "ជ្រើសរើសពាក្យសម្ងាត់របស់អ្នក" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "ចុចដើម្បីព្យាយាមសារដែលបរាជ័យម្តងទៀត" @@ -3003,7 +2974,7 @@ msgstr "ចុចដើម្បីព្យាយាមសារដែលបរ #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "ចុចដើម្បីព្យាយាមសារដែលបរ msgid "Close" msgstr "បិទ" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "បិទប្រអប់សកម្ម" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "បិទប្រអប់នេះ។" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "បិទការជូនដំណឹងអំពីការអាប់ដេតពាក្យសម្ងាត់" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "របៀបពណ៌" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "រឿងកំប្លែង" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "គោលការណ៍ណែនាំសហគមន៍" @@ -3141,7 +3112,7 @@ msgstr "គោលការណ៍ណែនាំសហគមន៍" msgid "Complete onboarding and start using your account" msgstr "បញ្ចប់ការបើកដំណើរការ ហើយចាប់ផ្តើមប្រើគណនីរបស់អ្នក" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "បញ្ចប់ការប្រឈម" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "សរសេរអត្ថបទថ្មី" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "សរសេរការឆ្លើយតប" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "កំពុង​បង្ហាប់​វីដេអូ..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "ទាក់ទងផ្នែកគាំទ្រ" @@ -3253,7 +3224,7 @@ msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព msgid "Content and media" msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ" @@ -3265,10 +3236,6 @@ msgstr "មាតិកាត្រូវបានរារាំង" msgid "Content filters" msgstr "តម្រងមាតិកា" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "ការព្រមានអំពីខ្លឹមសារ" msgid "Content warnings" msgstr "ការព្រមានអំពីខ្លឹមសារ" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "ផ្ទាំងខាងក្រោយម៉ឺនុយបរិបទ ចុចដើម្បីបិទម៉ឺនុយ" @@ -3302,7 +3269,7 @@ msgstr "ផ្ទាំងខាងក្រោយម៉ឺនុយបរិប #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "បន្ត​ខ្សែ..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "បានចម្លងកំណែស្ថាបនាទៅ clipboard" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "ចម្លងពាក្យសម្ងាត់កម្មវិធ msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "ចម្លងតំណ" msgid "Copy link to list" msgstr "ចម្លងតំណទៅបញ្ជី" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "ចម្លងតំណទៅប្រកាស" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "ចម្លងអត្ថបទសារ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "ចម្លងតម្លៃកំណត់ត្រា TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "គោលការណ៍រក្សាសិទ្ធិ" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "មិនអាចចាកចេញពីការជជែកបានទេ" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "មិនអាចផ្ទុកព័ត៌មានបានទេ" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "មិនអាចបិទការជជែកបានទេ" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "បង្កើត" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "បង្កើតលេខកូដ QR សម្រាប់កញ្ចប់ចាប់ផ្តើម" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើមសម្រាប់ខ្ញុំ" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "ចុះឈ្មោះ" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "បង្កើតគណនី" @@ -3666,15 +3633,15 @@ msgstr "បង្កើតគណនី" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "បង្កើតរូបតំណាងជំនួសវិញ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "បង្កើតមួយផ្សេងទៀត" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "វប្បធម៌" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "ងងឹត" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "ងងឹត" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ស្បែកខ្មៅងងឹត" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "លំនាំដើម" @@ -3894,7 +3861,7 @@ msgstr "លុបសារពីខ្ញុំ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "លុប post" @@ -3988,7 +3955,7 @@ msgstr "ប្រអប់៖ កែតម្រូវអ្នកដែលអ msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "បានបិទ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "បោះបង់" msgid "Discard changes?" msgstr "បោះបង់ " -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "បោះបង់ការផ្លាស់ប្តូរ?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "បោះបង់ការបង្ហោះ?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "រារាំងកម្មវិធីមិនឱ្យបង្ហាញគណនីរបស់ខ្ញុំទៅអ្នកប្រើប្រាស់ដែលបានចេញពីគណនី" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "រារាំងកម្មវិធីមិនឱ្យបង្ហ msgid "Discover new custom feeds" msgstr "ស្វែងរកព័ត៌មានផ្ទាល់ខ្លួនថ្មី" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "ស្វែងរកមតិព័ត៌មានថ្មី" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "ច្រានចោល" @@ -4103,19 +4070,19 @@ msgstr "ច្រានចោល" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "ច្រានចោលកំហុស" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "បោះបង់ការណែនាំអំពីការចាប់ផ្តើម" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "បង្ហាញផ្លាកសញ្ញាអក្សរជំន msgid "Display name" msgstr "បង្ហាញឈ្មោះ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "រួចរាល់" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "ចុចពីរដងដើម្បីបិទប្រអប់" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "កែរូបភាព" msgid "Edit interaction settings" msgstr "កែសម្រួលការកំណត់អន្តរកម្ម" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "កែសម្រួលមតិព័ត៌មានរបស់ខ្ញុំ" @@ -4406,6 +4374,11 @@ msgstr "កែសម្រួលមតិព័ត៌មានរបស់ខ្ msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "កែសម្រួលមនុស្ស" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "កែសម្រួលអ្នកណាអាចឆ្លើយតបបាន" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "កែសម្រួលកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" @@ -4500,8 +4473,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4482,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "បង្កប់ការបង្ហោះនេះនៅក្នុងគេហទំព័ររបស់អ្នក។ គ្រាន់តែចម្លងផ្នែកខាងក្រោម ហើយបិទភ្ជាប់វាទៅក្នុងកូដ HTML នៃគេហទំព័ររបស់អ្នក" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "កម្មវិធីចាក់វីដេអូដែលបានបង្កប់" @@ -4533,7 +4506,7 @@ msgstr "បើកមាតិកាសម្រាប់មនុស្សពេ msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "បើកប្រព័ន្ធផ្សព្វផ្សាយខា msgid "Enable media players for" msgstr "បើកកម្មវិធីចាក់មេឌៀសម្រាប់" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "បានបើក" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "ចុងបញ្ចប់នៃមតិព័ត៌មាន" @@ -4608,7 +4582,7 @@ msgstr "បញ្ចូលពាក្យ ឬស្លាក" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "បញ្ចូលអេក្រង់ពេញ" @@ -4650,11 +4624,11 @@ msgstr "បញ្ចូលឈ្មោះអ្នកប្រើប្រាស msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "កំហុស" @@ -4684,7 +4658,7 @@ msgstr "កំហុសបានកើតឡើងខណៈពេលរក្ស msgid "Error receiving captcha response." msgstr "កំហុសក្នុងការទទួលការឆ្លើយតប captcha" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "អ្នក​រាល់​គ្នា​អាច​ឆ្លើយ msgid "Everybody can reply to this post." msgstr "អ្នក​រាល់​គ្នា​អាច​ឆ្លើយ​តប​នឹង​ការ​ប្រកាស​នេះ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "ទាំងអស់គ្នា" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "ទាំងអស់គ្នា" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "មិនរាប់បញ្ចូលអ្នកប្រើប្រ msgid "Excludes users you follow" msgstr "មិនរាប់បញ្ចូលអ្នកប្រើប្រាស់ដែលអ្នកតាមដាន" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "ចេញពីអេក្រង់ពេញ" @@ -4755,11 +4729,11 @@ msgstr "ពង្រីកបញ្ជីអ្នកប្រើប្រាស msgid "Expand or collapse the full post you are replying to" msgstr "ពង្រីក ឬបង្រួមការបង្ហោះពេញដែលអ្នកកំពុងឆ្លើយតប" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "ប្រព័ន្ធផ្សព្វផ្សាយច្បាស msgid "Explicit sexual images." msgstr "រូបភាពផ្លូវភេទច្បាស់លាស់" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "ប្រព័ន្ធផ្សព្វផ្សាយខាងក្ msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅអាចអនុញ្ញាតឱ្យគេហទំព័រប្រមូលព័ត៌មានអំពីអ្នក និងឧបករណ៍របស់អ្នក។ គ្មាន​ព័ត៌មាន​ត្រូវ​បាន​ផ្ញើ ឬ​ស្នើ​រហូត​ដល់​អ្នក​ចុច​ប៊ូតុង \"play\"" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "ចំណូលចិត្តប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅ" @@ -4886,7 +4860,7 @@ msgstr "បរាជ័យក្នុងការផ្លាស់ប្តូ #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "បានបរាជ័យក្នុងការផ្ទុកចំណូលចិត្តមតិព័ត៌មាន" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "បានបរាជ័យក្នុងការផ្ទុកព័ត៌មានដែលបានណែនាំ" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "បានបរាជ័យក្នុងការផ្ទុកដែលបានណែនាំដូចខាងក្រោម" @@ -5027,12 +5002,12 @@ msgstr "បានបរាជ័យក្នុងការផ្ទុកដែ msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "ព័ត៌មាន" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "បានធ្វើបច្ចុប្បន្នភាពព័ត៌មាន!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "ឯកសារត្រូវបានរក្សាទុកដោយជោគជ័យ!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "ស្វែងរកគណនីដើម្បីតាមដាន" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "តាម {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "តាមដាន 7 គណនី" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "អ្នកតាមដាន @{0} ដែលអ្នកស្គាល់" @@ -5544,7 +5515,7 @@ msgstr "អ្នកតាមដែលអ្នកស្គាល់" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "កំពុងតាម {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "តាមអ្នក" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "ពុម្ពអក្សរ" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "ទំហំពុម្ពអក្សរ" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "សម្រាប់ហេតុផលសុវត្ថិភាព អ្នកនឹងមិនអាចមើលវាម្តងទៀតបានទេ។ ប្រសិនបើអ្នកបាត់ពាក្យសម្ងាត់កម្មវិធីនេះ អ្នកនឹងត្រូវបង្កើតពាក្យសម្ងាត់ថ្មី" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "សម្រាប់បទពិសោធន៍ដ៏ល្អបំផុត យើងសូមណែនាំឱ្យប្រើពុម្ពអក្សរស្បែក" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "ជារៀងរហូត" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "ភ្លេចពាក្យសម្ងា?ត់" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "ពី <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "រកជំនួយ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "ផ្តល់ទម្រង់មុខរបស់អ្នក" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "មានបញ្ហា?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "ជំនួយ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "ជួយមនុស្សឱ្យដឹងថាអ្នកមិនមែនជារូបយន្តដោយការបង្ហោះរូបភាព ឬបង្កើតរូបតំណាង" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "បញ្ជីដែលលាក់" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "បញ្ជីដែលលាក់" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "លាក់" @@ -6198,7 +6172,7 @@ msgstr "លាក់ការឆ្លើយតបសម្រាប់អ្ន msgid "Hide reply for me" msgstr "លាក់ការឆ្លើយតបសម្រាប់ខ្ញុំ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "លាក់ការឆ្លើយតបនេះ?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "លាក់បញ្ជីអ្នកប្រើប្រាស់" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "ហ៊ឺ យើងមិនអាចផ្ទុកសេវាកម msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "ចាំ! យើងកំពុងផ្តល់សិទ្ធិចូលប្រើវីដេអូបន្តិចម្តងៗ ហើយអ្នកនៅតែរង់ចាំក្នុងជួរ។ សូមពិនិត្យមើលឡើងវិញឆាប់ៗនេះ" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "ប្រសិនបើអ្នកចង់ផ្លាស់ប្តូរពាក្យសម្ងាត់របស់អ្នក យើងនឹងផ្ញើលេខកូដទៅអ្នកដើម្បីផ្ទៀងផ្ទាត់ថានេះគឺជាគណនីរបស់អ្នក" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "មានតែអ្នកទេឥឡូវនេះ! បន្ថែមមនុស្សបន្ថែមទៀតទៅក្នុងកញ្ចប់ចាប់ផ្តើមរបស់អ្នកដោយស្វែងរកខាងលើ" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" @@ -6816,8 +6788,8 @@ msgstr "ចូលរួមការសន្ទនា" msgid "Journalism" msgstr "សារព័ត៌មាន" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "ដាក់ស្លាកដោយ {0}" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "ដាក់ស្លាកដោយអ្នកនិពន្ធ" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ស្លាក" @@ -6852,7 +6824,7 @@ msgstr "ស្លាកត្រូវបានបន្ថែម" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ស្លាកគឺជាចំណារពន្យល់អំពីអ្នកប្រើប្រាស់ និងខ្លឹមសារ។ ពួកវាអាចត្រូវបានប្រើដើម្បីលាក់ ព្រមាន និងចាត់ថ្នាក់បណ្តាញ" @@ -6864,7 +6836,7 @@ msgstr "ស្លាកនៅលើគណនីរបស់អ្នក" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "ការកំណត់ភាសា" @@ -6874,7 +6846,7 @@ msgstr "ការកំណត់ភាសា" msgid "Languages" msgstr "ភាសា" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ធំជាង" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "ចុងក្រោយ" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "ស្វែងយល់បន្ថែម" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "ស្វែងយល់បន្ថែមអំពីការបង្ហោះដោយខ្លួនឯង PDS របស់អ្នក" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "ស្វែងយល់បន្ថែមអំពីការព្រមាននេះ" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "ស្វែងយល់បន្ថែម" @@ -6993,8 +6965,8 @@ msgstr "ចាកចេញ" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "ចាកចេញពី Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "ចាកចេញទៅ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "អនុញ្ញាតឱ្យខ្ញុំជ្រើសរើស" @@ -7057,7 +7029,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "ពន្លឺ" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ពន្លឺ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "ចូលចិត្ត 10 ប្រកាស" @@ -7085,7 +7057,7 @@ msgstr "ចូលចិត្ត 10 ប្រកាស" msgid "Like 10 posts to train the Discover feed" msgstr "ចូលចិត្តការបង្ហោះចំនួន 10 ដើម្បីបណ្តុះបណ្តាល Discover feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "ចូលចិត្តមតិព័ត៌មាននេះ" @@ -7093,8 +7065,8 @@ msgstr "ចូលចិត្តមតិព័ត៌មាននេះ" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "ចូលចិត្ត" @@ -7111,27 +7083,45 @@ msgstr "ចូលចិត្ត" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "ចូលចិត្ត" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "ចូលចិត្តនៅលើប្រកាសនេះ" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "បញ្ជី" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "បាន​បិទ​បញ្ជី" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "ផ្ទុកច្រើនទៀត" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "ផ្ទុកព័ត៌មានដែលបានណែនាំបន្ថែមទៀត" @@ -7292,8 +7282,8 @@ msgstr "ផ្ទុកព័ត៌មានដែលបានណែនាំប msgid "Load new notifications" msgstr "ផ្ទុកការជូនដំណឹងថ្មីៗ" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "កំណត់ហេតុ" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "ធ្វើមួយសម្រាប់ខ្ញុំ" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "សម្គាល់ថាបានអានហើយ" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "ប្រព័ន្ធផ្សព្វផ្សាយ" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "ប្រព័ន្ធផ្សព្វផ្សាយដែលអាចរំខាន ឬមិនសមរម្យសម្រាប់ទស្សនិកជនមួយចំនួន" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "អ្នកប្រើប្រាស់ដែលបានលើកឡើង" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "សារត្រូវបានលុប" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "សារ" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "ការសម្របសម្រួល" @@ -7636,7 +7630,7 @@ msgstr "បានធ្វើបច្ចុប្បន្នភាពបញ្ msgid "Moderation lists" msgstr "បញ្ជីសម្របសម្រួល" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "បញ្ជីការសម្របសម្រួល" @@ -7645,7 +7639,7 @@ msgstr "បញ្ជីការសម្របសម្រួល" msgid "moderation settings" msgstr "ការកំណត់កម្រិតមធ្យម" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "គណនីបិទ" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "គណនីបិទ" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "មិនអីទេ បង្កើត handle សម្រាប់ខ្ញុំ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "ថ្មី" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "ការជជែកថ្មី" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "ពាក្យសម្ងាត់ថ្មី" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "post ថ្មី" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "ការឆ្លើយតបថ្មីបំផុតជាមុនសិន" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "ព័ត៌មាន" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "រូបភាពបន្ទាប់" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "រកមិនឃើញមតិព័ត៌មានទេ។ ព្យាយាមស្វែងរកអ្វីផ្សេងទៀត" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "មិនទាន់មានអ្នកចូលចិត្តទេ" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "លែង​តាម {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "មិនមានសារនៅឡើយទេ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "មិនទាន់មានសម្រង់ទេ" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "គ្មានលទ្ធផល" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "គ្មានលទ្ធផល" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "រកមិនឃើញលទ្ធផលទេ" msgid "No results found for \"{query}\"" msgstr "រកមិនឃើញលទ្ធផលសម្រាប់ \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "ទេ អរគុណ" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "គ្មាននរណាម្នាក់" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "គ្មាននរណាម្នាក់ចូលចិត្តវានៅឡើយទេ។ ប្រហែលជាអ្នកគួរតែជាអ្នកដំបូង" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "មិនទាន់មាននរណាម្នាក់ដកស្រង់រឿងនេះនៅឡើយទេ។ ប្រហែលជាអ្នកគួរតែជាអ្នកដំបូង" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "រកមិនឃើញ" @@ -8333,7 +8330,7 @@ msgstr "ចំណាំអំពីការចែករំលែក" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "ចំណាំ៖ Bluesky គឺជាបណ្តាញបើកចំហ និងសាធារណៈ។ ការកំណត់នេះកំណត់តែការមើលឃើញខ្លឹមសាររបស់អ្នកនៅលើកម្មវិធី និងគេហទំព័រ Bluesky ហើយកម្មវិធីផ្សេងទៀតប្រហែលជាមិនគោរពការកំណត់នេះទេ។ ខ្លឹមសាររបស់អ្នកអាចនៅតែត្រូវបានបង្ហាញដល់អ្នកប្រើប្រាស់ដែលបានចេញពីគណនីដោយកម្មវិធី និងគេហទំព័រផ្សេងទៀត" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "ការកំណត់ការជូនដំណឹង" @@ -8353,11 +8350,12 @@ msgstr "ការកំណត់ការជូនដំណឹង" msgid "Notification sounds" msgstr "សំឡេងជូនដំណឹង" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "កំណត់ការចូលដំណើរការឡើងវិញ" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "GIFs មួយ ឬ​ច្រើន​បាត់​អត្ថបទ​ជំនួស" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "រូបភាពមួយ ឬច្រើនបាត់អត្ថបទជំនួស" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "វីដេអូមួយ ឬច្រើនបាត់អត្ថបទជំនួស" @@ -8471,7 +8471,7 @@ msgstr "មានតែ {0} ប៉ុណ្ណោះដែលអាចឆ្ល #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "មានតែឯកសារ WebVTT (.vtt) ប៉ុណ្ណោះដែលត្រូវបានគាំទ្រ" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8544,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "បើកអ្នកបង្កើតរូបតំណាង" @@ -8570,21 +8570,22 @@ msgstr "បើកជម្រើសការសន្ទនា" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "បើកកម្មវិធីជ្រើសរើសរូបអារម្មណ៍" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "បើកម៉ឺនុយជម្រើសមតិព័ត៌មាន" @@ -8627,7 +8628,7 @@ msgstr "បើកទំព័របំបាត់កំហុសការសម msgid "Open muted words and tags settings" msgstr "បើកការកំណត់ពាក្យ និងស្លាកដែលបានបិទ" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "បើកព័ត៌មានលម្អិតបន្ថែមសម msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "បើកកាមេរ៉ានៅលើឧបករណ៍" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "បើកលំហូរដើម្បីបង្កើតគណនី Bluesky ថ្មី" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "បានធ្វើបច្ចុប្បន្នភាពពាក្យសម្ងាត់" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "ផ្អាក" @@ -8925,12 +8926,12 @@ msgstr "ផ្អាក" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "ផ្អាក video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "មនុស្ស" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "មនុស្ស​តាម​ដោយ @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "មនុស្ស​តាម @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "រូបភាពមានន័យសម្រាប់មនុស្សពេញវ័យ" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "លេង" @@ -9076,8 +9077,8 @@ msgstr "លេង {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "ចាក់វីដេអូ" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "នយោបាយ" @@ -9269,7 +9270,7 @@ msgstr "នយោបាយ" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "ការបង្ហោះ" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "ការបង្ហោះ" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Post ទាំងអស់" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9341,7 @@ msgstr "" msgid "Post interaction settings" msgstr "ការ​កំណត់​អន្តរកម្ម​ post" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "ការបង្ហោះ" @@ -9398,6 +9396,10 @@ msgstr "ការបង្ហោះអាចត្រូវបានបិទដ msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "ឯកជនភាព" msgid "Privacy and security" msgstr "ភាពឯកជន និងសុវត្ថិភាព" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "ភាពឯកជន និងសុវត្ថិភាព" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "គោលការណ៍ឯកជនភាព" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "ដំណើរការវីដេអូ..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Quote posts ត្រូវបានបិទ" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "បើកដំណើរការគណនីរបស់អ្នកឡ msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "អានគោលការណ៍ឯកជនភាព Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "អានលក្ខខណ្ឌនៃសេវាកម្ម Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "ភ្ជាប់ឡើងវិញ" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "ផ្ទុកការសន្ទនាឡើងវិញ" @@ -9766,7 +9765,7 @@ msgstr "ផ្ទុកការសន្ទនាឡើងវិញ" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "ដកចេញ" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "លុបគណនី" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "លុបចេញពីមតិព័ត៌មានរបស់ខ្ញុំ" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "ដកចេញពីការចូលប្រើរហ័ស?" @@ -9862,7 +9861,7 @@ msgstr "ដកចេញពីការចូលប្រើរហ័ស?" msgid "Remove from saved feeds" msgstr "យកចេញពីព័ត៌មានដែលបានរក្សាទុក" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "លុបរូបភាព" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "បានដកចេញពីបញ្ជី" msgid "Removed from saved feeds" msgstr "បានលុបចេញពីព័ត៌មានដែលបានរក្សាទុក" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "ការឆ្លើយតប" @@ -10037,7 +10037,7 @@ msgstr "ការឆ្លើយតបទៅនឹងការបង្ហោះ msgid "Reply" msgstr "ឆ្លើយតប" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "ឆ្លើយតប" @@ -10098,8 +10098,8 @@ msgstr "រាយការណ៍ការសន្ទនា" msgid "Report dialog" msgstr "ប្រអប់រាយការណ៍" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "រាយការណ៍ព័ត៌មាន" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "ផ្សាយឡើងវិញដោយអ្នក" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "ការផ្សាយឡើងវិញនៃប្រកាសនេះ" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "ព្យាយាមម្តងទៀតនូវសកម្មភា #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "ត្រឡប់ទៅទំព័រដើមវិញ" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "ត្រឡប់ទៅទំព័រមុនវិញ" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "រក្សាទុកការផ្លាស់ប្តូរ" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "រក្សាទុកកូដ QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "រក្សាទុកក្នុងព័ត៌មានរបស់ខ្ញុំ" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "មតិព័ត៌មានដែលបានរក្សាទុក" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "បានរក្សាទុកទៅក្នុងមតិព័ត៌មានរបស់អ្នក" @@ -10520,8 +10520,8 @@ msgstr "បានរក្សាទុកទៅក្នុងមតិព័ត msgid "Say hello!" msgstr "និយាយថាជំរាបសួរ" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "វិទ្យាសាស្ត្រ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "រំកិលទៅកំពូល" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "ស្វែងរក" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "ស្វែងរកព័ត៌មានដែលអ្នកចង់ណែនាំដល់អ្នកដទៃ" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "ស្វែងរក GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "មើលការងារនៅ Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "ស្វែងរកគ្រាប់រំកិល។ ប្រើគ្រាប់ចុចព្រួញដើម្បីស្វែងរកទៅមុខ និងថយក្រោយ និងកន្លែងទំនេរសម្រាប់ លេង/ផ្អាក" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "ជ្រើសរើសពណ៌មួយ" @@ -10764,11 +10769,11 @@ msgstr "ជ្រើសរើសគណនី" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "ជ្រើសរើសរូបតំណាង" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "ជ្រើសរើសរូបអារម្មណ៍" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "ជ្រើសរើស GIF" msgid "Select GIF \"{0}\"" msgstr "ជ្រើសរើស GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "ជ្រើសរើសរូបអារម្មណ៍ {emojiName} ជារូបតំណាងរបស់អ្នក" @@ -10945,7 +10951,8 @@ msgstr "ផ្ញើសារ" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "ផ្ញើរសារទៅ..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "ផ្ញើអ៊ីមែលផ្ទៀងផ្ទាត់" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "ផ្ញើតាមសារផ្ទាល់" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "កំណត់អ៊ីមែលសម្រាប់កំណត់ពាក្យសម្ងាត់ឡើងវិញ" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "ការកំណត់" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "ចែករំលែក" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "ប្រអប់ចែករំលែកតំណ" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "ចែករំលែកកូដ QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "ចែករំលែកកញ្ចប់ចាប់ផ្តើមន msgid "Share this starter pack and help people join your community on Bluesky." msgstr "ចែករំលែកកញ្ចប់ចាប់ផ្តើមនេះ និងជួយមនុស្សចូលរួមសហគមន៍របស់អ្នកនៅលើ Bluesky" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "កម្មវិធីសាកល្បងចំណូលចិត្តដែលបានចែករំលែក" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "បង្ហាញ" msgid "Show alt text" msgstr "បង្ហាញអត្ថបទជំនួស" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "បង្ហាញ" @@ -11274,9 +11281,9 @@ msgstr "ទោះយ៉ាងណាក៏ដោយ បង្ហាញបញ្ msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "បង្ហាញច្រើនទៀត" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "បង្ហាញការព្រមាន និងត្រងព msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ចេញ?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "តម្រូវឱ្យចូល" @@ -11469,7 +11476,7 @@ msgstr "រំលង" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "តូចជាង" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "មានអ្វីមួយខុសប្រក្រតី សូមព្យាយាមម្តងទៀត" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "កីឡា" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "ចាប់ផ្តើមការជជែកថ្មី" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "ចាប់ផ្តើមជជែកជាមួយ {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "កញ្ចប់ចាប់ផ្តើម" @@ -11715,12 +11722,16 @@ msgstr "កញ្ចប់ចាប់ផ្តើមដោយអ្នក" msgid "Starter pack is invalid" msgstr "កញ្ចប់ចាប់ផ្តើមមិនត្រឹមត្រូវទេ" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "កញ្ចប់ចាប់ផ្តើម" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "កញ្ចប់ចាប់ផ្តើមអនុញ្ញាតឱ្យអ្នកចែករំលែកព័ត៌មានដែលអ្នកចូលចិត្ត និងមនុស្សយ៉ាងងាយស្រួលជាមួយមិត្តភក្តិរបស់អ្នក" @@ -11728,7 +11739,7 @@ msgstr "កញ្ចប់ចាប់ផ្តើមអនុញ្ញាតឱ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "ទំព័រស្ថានភាព" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "ជំហានទី {0} នៃ {1}" @@ -11754,7 +11765,7 @@ msgstr "កន្លែងផ្ទុកត្រូវបានសម្អា msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "ជាវ @{0} ដើម្បីប្រើស្លាកទាំងនេះ៖" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "ប្រព័ន្ធ" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "ប៉ះដើម្បីច្រានចោល" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "កិច្ចការបានបញ្ចប់ - 10 ចូលចិត្ត" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "បង្រៀនក្បួនដោះស្រាយរបស់យើងនូវអ្វីដែលអ្នកចូលចិត្ត" @@ -12060,7 +12073,7 @@ msgstr "លក្ខខណ្ឌ" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "កញ្ចប់ចាប់ផ្តើមនោះមិនត្រ msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "ម៉ាស៊ីនមេហាក់ដូចជាកំពុងជ msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "កញ្ចប់ចាប់ផ្តើមដែលអ្នកកំពុងព្យាយាមមើលគឺមិនត្រឹមត្រូវទេ។ អ្នកអាចលុបកញ្ចប់ចាប់ផ្តើមនេះជំនួសវិញ" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "លេខកូដផ្ទៀងផ្ទាត់ដែលអ្នក msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត" @@ -12283,8 +12296,8 @@ msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "មានបញ្ហាក្នុងការទាញយកការជូនដំណឹង។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "មានបញ្ហាក្នុងការទាញយកសារបង្ហោះ។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត" @@ -12309,7 +12322,7 @@ msgstr "មានបញ្ហាក្នុងការទាញយកព័ត msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "មាន​បញ្ហា​ក្នុង​ការ​ដក​មតិ​ព័ត៌មាន​នេះ​ចេញ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "ការកំណត់ទាំងនេះអនុវត្តចំ msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} នេះត្រូវបានសម្គាល់៖" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "គណនីនេះបានស្នើសុំឱ្យអ្នកប្រើប្រាស់ចូលដើម្បីមើលកម្រងព័ត៌មានរបស់ពួកគេ" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "មតិព័ត៌មាននេះទទេ! អ្នកប្រហែលជាត្រូវតាមដានអ្នកប្រើប្រាស់បន្ថែមទៀត ឬកែសម្រួលការកំណត់ភាសារបស់អ្នក" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "មតិព័ត៌មាននេះគឺទទេ" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "ចំណុចទាញនេះត្រូវបានបម្រុងទុក។ សូមសាកល្បងមួយផ្សេងទៀត" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "ស្លាកនេះត្រូវបានអនុវត្តដ msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "អ្នកដាក់ស្លាកនេះមិនទាន់បានប្រកាសថាស្លាកណាដែលវាបោះពុម្ពទេ ហើយប្រហែលជាមិនសកម្មទេ" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "ប្រកាសនេះអះអាងថាត្រូវបានបង្កើតឡើងនៅលើ <0>{0} ប៉ុន្តែត្រូវបានមើលឃើញជាលើកដំបូងដោយ Bluesky នៅលើ <1>{1}" @@ -12649,7 +12662,7 @@ msgstr "ប្រកាសនេះអះអាងថាត្រូវបាន msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "ប្រកាសនេះនឹងត្រូវបានលាក់ពីមតិព័ត៌មាន និងខ្សែស្រលាយ។ នេះមិនអាចត្រឡប់វិញបានទេ" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "អ្នកនិពន្ធនៃប្រកាសនេះបានបិទការបង្ហោះសម្រង់" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "អ្នកប្រើប្រាស់នេះមិនមានអ្នកតាមទេ" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "អ្នកប្រើប្រាស់នេះបានរារាំងអ្នក។ អ្នកមិនអាចមើលមាតិការបស់ពួកគេបានទេ" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "អ្នកប្រើប្រាស់នេះត្រូវបា msgid "This user is new here. Press for more info about when they joined." msgstr "អ្នកប្រើប្រាស់នេះថ្មីនៅទីនេះ។ ចុចសម្រាប់ព័ត៌មានបន្ថែមអំពីពេលដែលពួកគេបានចូលរួម" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "អ្នកប្រើប្រាស់នេះមិនតាមដាននរណាម្នាក់ទេ" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "វានឹងដក @{0} ចេញពីបញ្ជីចូលប្រើរហ័ស" @@ -12786,7 +12801,7 @@ msgstr "ចំណូលចិត្តខ្សែស្រឡាយ" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "កំពូល" @@ -12858,7 +12873,7 @@ msgstr "កំពូល" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "បិទគណនី?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "ឈប់តាម {0}" msgid "Unfollow account" msgstr "ឈប់តាមដានគណនី" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "ឈប់ជាវពីអ្នកដាក់ស្លាកនេះ msgid "Unsubscribed from list" msgstr "ឈប់ជាវពីបញ្ជី" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "ការធ្វើបច្ចុប្បន្នភាពលទ្ធភាពមើលឃើញការឆ្លើយតបបានបរាជ័យ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "បង្ហោះរូបថតជំនួសវិញ" @@ -13355,7 +13374,7 @@ msgstr "បង្ហោះពីឯកសារ" msgid "Upload from Library" msgstr "បង្ហោះពីបណ្ណាល័យ" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "កំពុងបង្ហោះរូបភាព..." msgid "Uploading link thumbnail..." msgstr "កំពុងបង្ហោះរូបភាពតូចនៃតំណ..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "កំពុងបង្ហោះវីដេអូ..." @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "វីដេអូ" msgid "Video failed to process" msgstr "វីដេអូបានបរាជ័យក្នុងដំណើរការ" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "វីដេអូហ្គេម" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "រកមិនឃើញវីដេអូ" @@ -13653,7 +13672,7 @@ msgstr "រកមិនឃើញវីដេអូ" msgid "Video settings" msgstr "ការកំណត់វីដេអូ" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "បង្ហោះវីដេអូ" @@ -13662,17 +13681,17 @@ msgstr "បង្ហោះវីដេអូ" msgid "Video: {0}" msgstr "វីដេអូ៖ {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "មើលរូបតំណាងរបស់ {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "មើលប្រវត្តិរូបរបស់ {0}" @@ -13724,13 +13743,13 @@ msgstr "មើលប្លុកសម្រាប់ព័ត៌មានលម msgid "View debug entry" msgstr "មើលធាតុបំបាត់កំហុស" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "មើលព័ត៌មានលម្អិត" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "មើល thread ពេញ" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "មើលសេវាកម្មដាក់ស្លាកដែលផ្តល់ដោយ @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "មើលអ្នកប្រើប្រាស់ដែលចូលចិត្តព័ត៌មាននេះ" @@ -13831,7 +13850,7 @@ msgstr "មើលបញ្ជីសម្របសម្រួលរបស់អ msgid "View your muted accounts" msgstr "មើលគណនីដែលបានបិទរបស់អ្នក" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "យើងកំពុងមានបញ្ហាបណ្តាញ សូមព្យាយាមម្តងទៀត" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "យើងសុំទោស ប៉ុន្តែយើងមិនអ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "យើងសុំទោស ប៉ុន្តែយើងមិនអាចផ្ទុកពាក្យដែលអ្នកបានបិទសំឡេងនៅពេលនេះបានទេ។ សូមព្យាយាមម្តងទៀត" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "យើងសុំទោស! ប្រកាសដែលអ្នកកំពុងឆ្លើយតបត្រូវបានលុប" @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "មានរឿងអី?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "សរសេរសារបង្ហោះ" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "សរសេរការឆ្លើយតបរបស់អ្នក" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបង្ហោះវីដេអូទេ" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "ឥឡូវនេះ អ្នកអាចចូលដោយប្រើពាក្យសម្ងាត់ថ្មីរបស់អ្នក" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "អ្នកបានឈានដល់ដែនកំណត់បណ្តោះអាសន្នសម្រាប់ការបង្ហោះវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "អ្នកមិនទាន់បានបង្កើតកញ្ចប់ចាប់ផ្តើមនៅឡើយទេ" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "អ្នកអាចបន្ថែមបានត្រឹមតែ 3 មតិព័ត៌មានប៉ុណ្ណោះ" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "អ្នក​ត្រូវ​តែ​តាម​យ៉ាង​ហោច​ណាស់​ប្រាំពីរ​នាក់​ផ្សេង​ទៀត​ដើម្បី​បង្កើត​កញ្ចប់​ចាប់ផ្ដើម" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "អ្នក​នឹង​ធ្វើ​តាម​អ្នក​ប្រើ​ដែល​បាន​ណែនាំ និង​មតិព័ត៌មាន​នៅ​ពេល​អ្នក​បញ្ចប់​ការ​បង្កើត​គណនី​របស់​អ្នក" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "អ្នកនឹងធ្វើតាមអ្នកប្រើប្រាស់ដែលបានណែនាំ នៅពេលអ្នកបញ្ចប់ការបង្កើតគណនីរបស់អ្នក" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "អ្នក​បាន​ដល់​ចុង​បញ្ចប់​នៃ​ព័ត៌មាន​របស់​អ្នក​ហើយ! ស្វែងរកគណនីមួយចំនួនទៀតដើម្បីតាមដាន" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រ msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកសម្រាប់ការបង្ហោះវីដេអូ (វីដេអូច្រើនពេក)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "គណនីរបស់អ្នក។" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "គណនីរបស់អ្នកមិនទាន់ចាស់គ្រប់គ្រាន់ក្នុងការបង្ហោះវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index 176a8e956b..93e47b10f0 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: ko\n" +"Language: ko_KR\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Korean\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "‘{interestsDisplayName}’ 카테고리 (활성)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(차단한 메시지 숨겨짐)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(임베드 콘텐츠 포함)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(삭제된 메시지)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(잘못된 대화 초대 링크)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(내가 참여하기 전에 보내진 메시지)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, other {#시간}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, other {내 게시물에 #개의 라벨이 적용되었습니다}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, other {#개 라벨 적용됨}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, other {# 좋아요}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "멤버 {0, plural, other {#명}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, other {새 참여 요청 #개}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {#명}} 반응함 – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{1} · {0}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (계정)" @@ -251,36 +252,13 @@ msgstr "{0} 님이 대화에 추가되었습니다" msgid "{0} and {1} added to chat" msgstr "{0} 님과 {1} 님이 대화에 추가되었습니다" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} 님과 {1} 님이 좋아합니다" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} 님 {others, plural, other {외 {2}명}}이 좋아합니다" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} 님 {othersLabel}이 좋아합니다" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} 팔로우 중" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} 님이 나를 차단했습니다" @@ -324,14 +302,6 @@ msgstr "{0} 님이 나갔습니다" msgid "{0} left the group" msgstr "{0} 님이 그룹에서 나갔습니다" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} 님이 좋아합니다" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0}/50자" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} 님이 {1}(으)로 반응함" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0} 님, {1} 님 {memberCount, plural, other {외 #명}}이 대화에 추가되었습니다" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0} 님, {1} 님 {others, plural, other {외 {3}명}}이 좋아합니다" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0} 님, {1} 님 {othersLabel}이 좋아합니다" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} 님이 나를 인증했습니다" msgid "{following} following" msgstr "{following} 팔로우 중" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} 님은 추가할 수 없습니다" @@ -698,7 +660,7 @@ msgstr "{handle} 님은 추가할 수 없습니다" msgid "{handle} can't be messaged" msgstr "{handle} 님에게 메시지를 보낼 수 없습니다" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} 님에게 메시지를 보낼 수 없습니다" @@ -776,12 +738,6 @@ msgstr "읽지 않은 항목 {notificationCount, plural, other {#개}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {연락처 #개를}} 찾았습니다" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, other {외 {1}명}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} 님은 {timeAgoString} 전에 Bluesky에 가입했습니다" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} 님은 {timeAgoString} 전에 스타터 팩을 사용하여 Bluesky에 가입했습니다" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, other {#자}} 남음" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} 님이 보내는 답장" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} 님이 {originalName} 님에게 보내는 답장" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} 님이 나에게 보내는 답장" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {#개 요청}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+개 요청" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}시간 전" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} 님은 신뢰할 수 있는 인증자입니다" @@ -842,13 +795,13 @@ msgstr "{userName} 님의 인증" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, other {팔로우 중}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {인용}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {재게시}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, other {저장}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, other {좋아요}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> 님이 나를 추가함" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>로그인<1>하거나 <2>계정을 만들고<3> <4>뉴스, 스포츠, 정치 등 Bluesky의 다양한 소식을 검색하세요." @@ -971,7 +924,7 @@ msgstr "30일" msgid "7 days" msgstr "7일" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "News, Booksky, Game Dev, Blacksky, Fountain Pens 등 Bluesky에서 찾을 수 있는 인기 피드 모음" @@ -988,9 +941,11 @@ msgstr "네트워크 오류가 발생했습니다. 인터넷 연결 상태를 #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "새 코드를 보냈습니다" msgid "A new form of verification" msgstr "새로운 방식의 인증" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "내가 참여하기 전에 보내진 메시지에 보내는 답장" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "‘임시 저장’이라는 새로운 버튼이 추가된 게시물 작성기 스크린샷. 버튼에는 무지개색 폭죽 효과가 적용되어 있습니다. 버튼 아래에는 “이봐, 소식 들었어? 이제 Bluesky에 임시 저장 기능이 생겼대!!!”라는 문구가 적혀 있습니다." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "선택한 수신자를 발신자가 팔로우하지 않았습니다." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "참여 요청 완료! 그룹 소유자가 요청을 검토할 예정입 msgid "Accessibility" msgstr "접근성" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "접근성 설정" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "리스트로 계정 뮤트됨" msgid "Account options" msgstr "계정 옵션" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "빠른 액세스에서 계정 제거" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "물결 모양의 파란색 체크 표시 <0><1/> 가 있는 계정은 다른 계정을 인증할 수 있습니다. 이러한 신뢰할 수 있는 인증자는 Bluesky에서 선정합니다." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "다른 사용자의 활동" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "활동 알림" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "대체 텍스트 추가 (선택 사항)" msgid "Add another account" msgstr "다른 계정 추가" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "다른 게시물 추가하기" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "스레드에 다른 게시물 추가" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "다른 검색 필터 추가하기" @@ -1253,7 +1213,7 @@ msgstr "계정에 자동화 라벨 추가" msgid "Add emoji reaction" msgstr "이모티콘 반응 추가" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "필터 추가" @@ -1338,7 +1298,7 @@ msgstr "이 피드를 내 피드에 추가하기" msgid "Add to lists" msgstr "리스트에 추가" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "저장된 게시물에 추가" @@ -1400,7 +1360,7 @@ msgstr "성인물" msgid "Adult content" msgstr "성인 콘텐츠" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "다이렉트 메시지 접근 허용" msgid "Already have a code?" msgstr "이미 코드가 있나요?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "이미 계정이 있나요?" @@ -1614,7 +1574,7 @@ msgstr "{0}(으)로 이메일을 보냈습니다. 이 이메일에는 아래에 msgid "An error has occurred" msgstr "오류 발생" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "오류 발생" @@ -1631,7 +1591,7 @@ msgstr "추천 계정을 가져오는 동안 오류가 발생했습니다." msgid "An error occurred while fetching the feed." msgstr "피드를 가져오는 동안 오류가 발생했습니다." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "스타터 팩을 만드는 동안 오류가 발생했습니다. 다시 시도하시겠습니까?" @@ -1640,11 +1600,11 @@ msgstr "스타터 팩을 만드는 동안 오류가 발생했습니다. 다시 msgid "An error occurred while hiding suggestion. {0}" msgstr "추천을 숨기는 동안 오류가 발생했습니다. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 나중에 다시 시도해 주세요." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 다시 시도해 주세요." @@ -1684,7 +1644,7 @@ msgstr "오류가 발생했습니다. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "연락처에서 Bluesky 앱으로 사용자 프로필 사진이 흘러들어 가는 모습을 묘사한 삽화" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "재게시, 좋아요, 댓글 아이콘과 함께 여러 Bluesky 게시물이 나열된 삽화" @@ -1705,17 +1665,15 @@ msgstr "초대 링크를 사용하면 사람들을 직접 추가하지 않고도 msgid "An issue not included in these options" msgstr "어떤 옵션에도 포함되지 않는 문제" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "그룹 대화 만드는 동안 문제가 발생했습니다. 다시 시도해 주세요." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "대화를 시작하는 동안 문제가 발생했습니다. 다시 시도해 주세요." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "대화를 여는 동안 문제가 발생했습니다" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "그룹 대화를 시작하는 동안 문제가 발생했습니다. 다시 시도해 주세요." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "모든 날짜" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "누구나" @@ -1802,7 +1760,7 @@ msgstr "나를 팔로우하는 모든 사용자" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "이 링크를 가진 사람은 더 이상 참여하거나 참여 요청을 할 수 없습니다. 새 링크는 언제든지 다시 만들 수 있습니다." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "앱 비밀번호 이름은 4자 이상이어야 합니다" msgid "App passwords" msgstr "앱 비밀번호" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "앱 비밀번호" @@ -1891,8 +1849,8 @@ msgstr "이 결정에 이의신청" msgid "Appeal this label" msgstr "이 라벨 이의신청" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "풀 리퀘스트 적용" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0}에 보관됨" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "보관된 게시물" @@ -1980,7 +1938,7 @@ msgstr "내 피드에서 이 피드를 삭제하시겠습니까?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "{0}에 대한 참여 요청을 취소하시겠습니까?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "이 게시물을 삭제하시겠습니까?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "오로라" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "자동화된 계정" @@ -2033,7 +1991,7 @@ msgstr "자동" msgid "Automation label" msgstr "자동화 라벨" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "자동화 라벨" @@ -2050,12 +2008,16 @@ msgstr "동영상 및 GIF 자동 재생" msgid "Available" msgstr "사용 가능" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "게시물을 작성하거나 답글을 달기 전에 먼저 이메일을 인증해야 합니다." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "스타터 팩을 만들기 전에 먼저 이메일을 인증해야 합니다." @@ -2135,10 +2097,10 @@ msgstr "{name} 님의 게시물에 대한 알림을 받으려면 먼저 이메 #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "아래 항목을 작성하여 연령 확인 절차를 시작하세요." msgid "Beta Feature" msgstr "베타 기능" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "베타 기능" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "베타 기능이 활성화됨" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "생년월일" msgid "Birthday" msgstr "생년월일" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "차단됨" msgid "Blocked accounts" msgstr "차단한 계정" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "차단한 계정" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "차단하더라도 이 라벨러가 내 계정에 라벨을 붙이는 것을 막지는 못합니다." @@ -2305,10 +2273,11 @@ msgstr "블룸스크롤링 북스카이" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky는 해당 날짜의 진위를 확인할 수 없습니다." @@ -2330,7 +2299,7 @@ msgstr "Bluesky는 호스팅 제공자를 선택할 수 있는 개방형 네트 msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky는 직접 제공자를 선택할 수 있는 개방형 네트워크입니다. 처음 사용하는 경우 기본으로 Bluesky Social을 선택하는 것이 좋습니다." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky는 친구와 함께하면 더 좋답니다!" @@ -2358,7 +2327,7 @@ msgstr "Bluesky Social 서비스 이용약관" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky는 연락처를 인코딩된 데이터로 저장합니다. 연락처를 제거하면 이 데이터는 즉시 삭제됩니다." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky가 네트워크에 있는 사용자 중에서 임의로 추천 계정 세트를 선택합니다." @@ -2425,24 +2394,25 @@ msgstr "탐색 페이지에서 더 많은 추천 찾아보기" msgid "Browse other feeds" msgstr "다른 피드 탐색하기" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "{displayName}에 관한 게시물 탐색하기" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "{displayName} 태그된 게시물 탐색하기" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "스타터 팩 {displayName} 탐색하기" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "주제 {0} 탐색하기" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "주제 {displayName} 탐색하기" @@ -2461,8 +2431,8 @@ msgstr "홈 타임라인으로 돌아가려면 버튼을 누르세요" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "{0}" @@ -2473,9 +2443,9 @@ msgstr "@{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "<0>{0}" @@ -2504,11 +2474,11 @@ msgstr "계정을 만들면 <0>서비스 이용약관 및 <1>개인정보 msgid "By creating an account you agree to the <0>Terms of Service." msgstr "계정을 만들면 <0>서비스 이용약관에 동의하는 것입니다." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "내가 만듦" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "카메라" @@ -2534,7 +2504,7 @@ msgstr "카메라 접근 권한이 필요합니다" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "카메라 접근 권한이 필요합니다" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "재활성화 취소 및 로그아웃" msgid "Cancel reply" msgstr "답장 취소하기" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "검색 취소" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "리스트를 만든 후에는 스타터 팩의 변경 사항이 리스트에 반영되지 않습니다. 리스트는 별도의 사본으로 저장됩니다." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "대화를 뮤트했습니다" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "대화를 찾을 수 없습니다." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "대화 옵션" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "대화 소유자는 그룹 대화에서 나갈 수 없습니다." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "대화 수신자가 발신자를 팔로우하지 않았습니다." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "대화 요청 수신함" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "대화 요청" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "대화 설정" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "대화를 언뮤트했습니다" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "대화" @@ -2837,7 +2808,7 @@ msgstr "도메인 인증 방법 선택" msgid "Choose Feeds" msgstr "피드 선택" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "임의로 선택하기" @@ -2854,7 +2825,7 @@ msgstr "사용자 선택" msgid "Choose post languages" msgstr "게시물 언어 선택" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "이 색상을 아바타로 선택" @@ -2879,7 +2850,7 @@ msgstr "나만의 타임라인을 선택하세요! 커뮤니티에서 만든 피 msgid "Choose your password" msgstr "비밀번호 입력" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "사용자 이름 선택" @@ -2966,7 +2937,7 @@ msgstr "이곳을 클릭하여 이 그룹 대화의 초대 링크 보기" msgid "Click to open tag menu for {0}" msgstr "클릭하여 {0}에 대한 태그 메뉴를 엽니다" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "클릭하여 메시지 다시 보내기" @@ -3003,7 +2974,7 @@ msgstr "클릭하여 메시지 다시 보내기" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "클릭하여 메시지 다시 보내기" msgid "Close" msgstr "닫기" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "열려 있는 대화 상자 닫기" @@ -3047,7 +3018,7 @@ msgstr "배너 닫기" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "이미지 뷰어 닫기" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "매뉴 닫기" @@ -3090,7 +3061,7 @@ msgstr "참여 요청 배너를 닫습니다" msgid "Close this dialog" msgstr "이 대화 상자 닫기" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "환영 대화 상자 닫기" @@ -3098,7 +3069,7 @@ msgstr "환영 대화 상자 닫기" msgid "Closes password update alert" msgstr "비밀번호 변경 알림을 닫습니다" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "게시물 작성기를 닫고 게시물 초안을 삭제합니다" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "색상" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "색상 모드" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "만화" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "커뮤니티 가이드라인" @@ -3141,7 +3112,7 @@ msgstr "커뮤니티 가이드라인" msgid "Complete onboarding and start using your account" msgstr "온보딩 완료 후 계정 사용 시작" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "챌린지 완료하기" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "새 게시물 작성하기" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "게시물을 최대 {0, plural, other {#자}}까지 작성할 수 있습니다" @@ -3160,11 +3131,11 @@ msgstr "게시물을 최대 {0, plural, other {#자}}까지 작성할 수 있습 msgid "Compose reply" msgstr "답글 작성하기" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIF 압축 중…" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "동영상 압축 중…" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "고객 지원팀에 문의하기" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "지원팀에 연락하기" @@ -3253,7 +3224,7 @@ msgstr "콘텐츠 및 미디어" msgid "Content and media" msgstr "콘텐츠 및 미디어" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "콘텐츠 및 미디어" @@ -3265,10 +3236,6 @@ msgstr "콘텐츠 차단됨" msgid "Content filters" msgstr "콘텐츠 필터" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "좋아할 만한 네트워크 전반의 콘텐츠를 모았습니다." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "콘텐츠 언어" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "자해를 조장하거나 묘사하는 콘텐츠" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "콘텐츠 경고" msgid "Content warnings" msgstr "콘텐츠 경고" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다." @@ -3302,7 +3269,7 @@ msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "스레드 더 보기…" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "그룹 이름으로 계속" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "대화를 찾을 수 없습니다." msgid "Copied build version to clipboard" msgstr "빌드 버전을 클립보드에 복사했습니다" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "링크를 클립보드에 복사했습니다" @@ -3376,7 +3343,7 @@ msgstr "링크를 클립보드에 복사했습니다" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "앱 비밀번호 복사" msgid "Copy at:// URI" msgstr "at:// URI 복사" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "작성자 DID 복사" @@ -3449,10 +3416,10 @@ msgstr "링크 복사" msgid "Copy link to list" msgstr "리스트 링크 복사" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "게시물 링크 복사" @@ -3470,8 +3437,8 @@ msgstr "스타터 팩 링크 복사" msgid "Copy message text" msgstr "메시지 텍스트 복사" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "게시물 at:// URI 복사" @@ -3490,7 +3457,7 @@ msgstr "TXT 레코드 값 복사" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "저작권 정책" @@ -3540,11 +3507,11 @@ msgstr "모든 사용자를 팔로우할 수 없습니다. {0}" msgid "Could not leave chat" msgstr "대화에서 나갈 수 없습니다" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "대화에서 나갈 수 없습니다." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "피드를 불러올 수 없습니다" @@ -3562,7 +3529,7 @@ msgstr "프로필을 불러올 수 없습니다" msgid "Could not mute chat" msgstr "대화를 뮤트할 수 없습니다" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "멤버를 내보낼 수 없습니다." @@ -3606,8 +3573,8 @@ msgstr "소 돼지" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "만들기" @@ -3624,26 +3591,26 @@ msgstr "스타터 팩에서 리스트 만들기" msgid "Create a QR code for a starter pack" msgstr "스타터 팩 QR 코드 만들기" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "스타터 팩 만들기" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "스타터 팩 만들기" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "나를 위한 스타터 팩 만들기" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "가입하기" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "계정 만들기" @@ -3666,15 +3633,15 @@ msgstr "계정 만들기" msgid "Create an account without using this starter pack" msgstr "이 스타터 팩을 사용하지 않고 계정 만들기" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "대신 아바타 만들기" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "다른 스타터 팩 만들기" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "그룹 대화 만들기" @@ -3743,7 +3710,7 @@ msgstr "문화" msgid "Current beta features" msgstr "현재 베타 기능" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "현재 대화" @@ -3770,8 +3737,8 @@ msgstr "위험 물질 또는 약물 남용" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "어두움" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "어두움" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "어두운 테마" @@ -3814,7 +3781,7 @@ msgstr "이 언어 제안 거절하기" msgid "Deepfake adult content" msgstr "딥페이크 성인 콘텐츠" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "기본" @@ -3894,7 +3861,7 @@ msgstr "내 계정 삭제" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "게시물 삭제" @@ -3988,7 +3955,7 @@ msgstr "대화 상자: 이 게시물과 상호작용할 수 있는 사용자 조 msgid "Dialog: Set search filters" msgstr "대화 상자: 검색 필터 설정" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "어둑함" @@ -4002,7 +3969,7 @@ msgstr "비활성화" msgid "Disable 2FA" msgstr "2단계 인증 비활성화" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "캡션 비활성화" @@ -4045,9 +4012,9 @@ msgstr "사용 안 함" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "삭제" msgid "Discard changes?" msgstr "변경 사항 삭제" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "임시 저장을 삭제하시겠습니까?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "게시물 삭제" @@ -4079,22 +4046,22 @@ msgstr "Germ DM 연결 해제" msgid "Discourage apps from showing my account to logged-out users" msgstr "앱이 로그아웃한 사용자에게 내 계정을 표시하지 않도록 설정하기" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "피드 둘러보기" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 #: src/view/com/posts/FollowingEndOfFeed.tsx:70 msgid "Discover new custom feeds" -msgstr "새로운 맞춤 피드 찾아보기" - -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "새 피드 발견하기" +msgstr "새로운 맞춤 피드 둘러보기" #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" -msgstr "새 피드 발견하기" +msgstr "새 피드 둘러보기" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "닫기" @@ -4103,19 +4070,19 @@ msgstr "닫기" msgid "Dismiss banner" msgstr "배너 닫기" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "오류 무시" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "시작하기 가이드 닫기" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "관심 주제 닫기" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "라이브 이벤트 배너 닫기" @@ -4142,7 +4109,7 @@ msgstr "더 큰 대체 텍스트 배지 표시" msgid "Display name" msgstr "표시 이름" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "어그로와 섬네일 낚시는 이제 그만. 당신에게 의미 있는 진짜 사람들과 대화를 찾으세요." @@ -4205,8 +4172,8 @@ msgstr "걱정 마세요! 모든 기존 메시지와 설정은 저장되며 성 #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "걱정 마세요! 모든 기존 메시지와 설정은 저장되며 성 msgid "Done" msgstr "완료" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "메시지를 두 번 탭하거나 길게 눌러서 반응을 추가합니다" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "두 번 탭하여 대화 상자를 닫습니다" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "두 번 탭하여 좋아요 표시합니다" @@ -4328,6 +4295,7 @@ msgstr "섭식 장애" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "이미지 편집하기" msgid "Edit interaction settings" msgstr "상호작용 설정 편집" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "관심 주제 편집" @@ -4397,7 +4365,7 @@ msgstr "라이브 상태 편집" msgid "Edit moderation list" msgstr "검토 리스트 편집" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "내 피드 편집" @@ -4406,6 +4374,11 @@ msgstr "내 피드 편집" msgid "Edit name" msgstr "이름 편집" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "{0} 님의 알림 편집" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "사용자 편집하기" @@ -4444,7 +4417,7 @@ msgstr "사용자 리스트 편집" msgid "Edit who can reply" msgstr "답글을 달 수 있는 사용자 편집" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "스타터 팩 편집" @@ -4500,8 +4473,8 @@ msgstr "임베드 HTML 코드" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "게시물 임베드" @@ -4509,7 +4482,7 @@ msgstr "게시물 임베드" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "웹사이트에 이 게시물을 임베드하세요. 다음 코드를 복사하여 웹사이트에 HTML 코드로 붙여넣기만 하면 됩니다." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "임베드 동영상 플레이어" @@ -4533,7 +4506,7 @@ msgstr "성인 콘텐츠 활성화" msgid "Enable beta features" msgstr "베타 기능 활성화" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "캡션 활성화" @@ -4550,12 +4523,13 @@ msgstr "외부 미디어 사용" msgid "Enable media players for" msgstr "미디어 플레이어를 사용할 외부 사이트" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "계정의 프로필을 방문하여 <0>종 모양 아이콘 <1/> 을 눌러 계정에 대한 알림을 사용 설정하세요." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "푸시 알림 사용" @@ -4581,7 +4555,7 @@ msgstr "Discover 피드에서 인기 동영상 사용" msgid "Enabled" msgstr "사용" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "피드 끝" @@ -4608,7 +4582,7 @@ msgstr "단어 또는 태그 입력" msgid "Enter code" msgstr "코드 입력" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "전체화면으로 보기" @@ -4650,11 +4624,11 @@ msgstr "사용자 이름 및 비밀번호 입력" msgid "Enters full screen" msgstr "전체화면으로 봅니다" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "엔터테인먼트" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "오류" @@ -4684,7 +4658,7 @@ msgstr "파일을 저장하는 동안 오류가 발생했습니다" msgid "Error receiving captcha response." msgstr "캡차 응답을 수신하는 동안 오류가 발생했습니다." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "오류: {error}" @@ -4696,8 +4670,8 @@ msgstr "누구나 답글을 달 수 있음" msgid "Everybody can reply to this post." msgstr "누구나 이 게시물에 답글을 달 수 있습니다." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "모두" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "모두" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "기타" @@ -4738,7 +4712,7 @@ msgstr "내가 팔로우하는 사용자 제외하기" msgid "Excludes users you follow" msgstr "내가 팔로우하는 사용자 제외" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "전체화면 나가기" @@ -4755,11 +4729,11 @@ msgstr "사용자 목록 펼치기" msgid "Expand or collapse the full post you are replying to" msgstr "답글을 달고 있는 전체 게시물을 펼치거나 접습니다" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "게시물 텍스트 확장" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "게시물 텍스트를 펼치거나 접습니다" @@ -4802,15 +4776,15 @@ msgstr "노골적이거나 불쾌감을 줄 수 있는 미디어." msgid "Explicit sexual images." msgstr "노골적인 성적 이미지." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "탐색" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "앱 둘러보기" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "외부 미디어 설정" @@ -4886,7 +4860,7 @@ msgstr "핸들을 변경하지 못했습니다. 다시 시도해 주세요." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "링크를 복사하지 못했습니다" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "그룹 대화에서 나가지 못했습니다" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "대화를 불러오지 못했습니다" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "피드를 불러오지 못했습니다" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "피드 환경설정을 불러오지 못했습니다" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "알림 설정을 불러오지 못했습니다." @@ -5012,14 +4987,14 @@ msgstr "환경설정을 불러오지 못했습니다." msgid "Failed to load profiles" msgstr "프로필을 불러오지 못했습니다" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "추천 피드를 불러오지 못했습니다" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "추천 팔로우를 불러오지 못했습니다" @@ -5027,12 +5002,12 @@ msgstr "추천 팔로우를 불러오지 못했습니다" msgid "Failed to lock group chat" msgstr "그룹 대화를 잠그지 못했습니다" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "모든 대화를 읽음으로 표시하지 못했습니다" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "요청을 취소하지 못했습니다. 다시 시도해 주세요." msgid "Failed to resolve location. Please try again." msgstr "위치를 확인하지 못했습니다. 다시 시도해 주세요." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "임시 저장하지 못했습니다" @@ -5191,7 +5166,7 @@ msgstr "가짜 계정 또는 봇" msgid "False information about elections" msgstr "선거에 대한 허위 정보" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "피드" @@ -5212,7 +5187,7 @@ msgstr "피드 작성자" msgid "Feed identifier" msgstr "피드 ID" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "피드 메뉴" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "피드 운영자에게 피드백을 전송했습니다" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "피드를 업데이트했습니다!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "좋아할 만한 피드를 모았습니다." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "업데이트 확인" @@ -5273,11 +5244,11 @@ msgstr "업데이트 확인" msgid "File saved successfully!" msgstr "파일을 성공적으로 저장했습니다!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "작성자 필터" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "작성자 필터 (현재: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "{0}로 이 검색 필터링하기" msgid "Filter who can opt to receive notifications for your activity" msgstr "내 활동 알림을 받을 수 있는 사용자 필터링" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "알림을 받을 대상 필터링" @@ -5352,8 +5323,8 @@ msgstr "팔로우할 계정 찾아보기" msgid "Find and invite friends" msgstr "친구를 찾고 초대하기" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "연락처 찾기" @@ -5387,7 +5358,7 @@ msgstr "친구들을 찾아보세요" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Bluesky에서 전화번호를 인증하고 연락처를 매칭하여 친구들을 찾아보세요. Bluesky는 사용자의 정보를 안전하게 보호하며, 이후 과정은 사용자가 직접 제어할 수 있습니다. <0>자세히 알아보기 (영어)" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "마음 맞는 사람 찾기" @@ -5429,7 +5400,7 @@ msgstr "검색 필드에 포커스" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "{0} 님을 팔로우" msgid "Follow {displayName}" msgstr "{displayName} 님을 팔로우" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} 님을 팔로우" @@ -5453,11 +5424,11 @@ msgstr "{handle} 님을 팔로우" msgid "Follow 10 accounts" msgstr "10개 계정 팔로우하기" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "시작하려면 10명을 팔로우하세요" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "7개 계정 팔로우하기" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "팔로워만 참여할 수 있음" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "내가 아는 @{0} 님의 팔로워" @@ -5544,7 +5515,7 @@ msgstr "내가 아는 팔로워" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "{0} 님을 팔로우했습니다" msgid "Following {displayName}" msgstr "{displayName} 님을 팔로우했습니다" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "{handle} 님을 팔로우 중" @@ -5578,21 +5549,21 @@ msgstr "{handle} 님을 팔로우 중" msgid "Following feed preferences" msgstr "팔로우 중 피드 설정" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "팔로우 중 피드 설정" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "나를 팔로우함" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "글꼴" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "글꼴 크기" @@ -5612,13 +5583,13 @@ msgstr "보안상의 이유로 내 이메일 주소 <0>{currentEmail}(으) msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "보안상의 이유로 이 비밀번호는 다시 볼 수 없습니다. 이 앱 비밀번호를 분실한 경우 새로 생성해야 합니다." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "최상의 경험을 위해 테마 글꼴을 사용하는 것을 추천합니다." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "추천" @@ -5628,7 +5599,7 @@ msgstr "추천" msgid "Forever" msgstr "무기한" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "잡음은 잊어라" @@ -5647,11 +5618,13 @@ msgstr "비밀번호를 잊었나요?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "그룹 대화를 나타내는 4개의 메시지 말풍선. 첫 번째 메시지: \"소식 들었어? Bluesky에 이제 그룹 대화 기능이 생겼대!\" 두 번째 메시지: \"세상에, 진짜?\" 세 번째 메시지: \"와, 대화방 하나에 50명까지 들어갈 수 있어!\" 네 번째 메시지: \"초대 링크도 보낼 수 있대!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "피드를 자유롭게" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "알림 대상" @@ -5674,7 +5647,7 @@ msgstr "<0/>에서" msgid "From these people" msgstr "다음 사용자가 작성" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "스타터 팩 만들기" @@ -5718,39 +5691,39 @@ msgstr "테스트 중인 실험적 기능을 먼저 사용해 보세요." msgid "Get help" msgstr "도움말" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "스타터 팩 가입, 인증 및 기타 활동에 대한 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "사람들이 나를 팔로우하면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "사람들이 내 게시물에 좋아요를 누르면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "다른 사용자가 내 재게시물에 좋아요를 누를 때 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "사람들이 나를 멘션하면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "사람들이 내 게시물을 인용하면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "사람들이 내 게시물에 답글을 달면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "사람들이 내 게시물을 재게시하면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "다른 사용자가 내 게시물을 재게시할 때 알림을 받습니다." @@ -5762,15 +5735,15 @@ msgstr "다른 사용자가 메시지 요청을 보낼 때 알림을 받습니 msgid "Get notifications when people send you messages." msgstr "다른 사용자가 메시지를 보낼 때 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "구독 중인 게시물에 활동이 있을 때 알림을 받습니다." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "새 게시물 알림 받기" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "내가 선택한 계정의 새 게시물과 답글에 대한 알림을 받습니다." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "{name} 님의 새 게시물 알림 받기" @@ -5799,11 +5772,11 @@ msgstr "시작하기" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF를 업로드했습니다" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "프로필에 얼굴 달기" @@ -5813,20 +5786,20 @@ msgstr "폭력 미화" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "라이브 예정 시간" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "{0} 님의 프로필로 이동" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "그룹 대화 이름이 변경되었습니다" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "그룹 대화 설정" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "그룹 대화는 최대 {0, plural, other {#명}}까지 참여할 수 있습니다." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "그룹 잠김" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "그룹 이름" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "그룹 이름이 너무 깁니다. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {최대 글자 수는 #자입니다.}}" @@ -6077,7 +6051,7 @@ msgstr "유해하거나 위험성이 큰 활동" msgid "Harming or endangering minors" msgstr "미성년자에게 유해 또는 위험에 빠뜨리는 행위" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "해시태그" @@ -6098,7 +6072,7 @@ msgstr "코드가 있나요? <0>이곳을 클릭하세요." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "위치 정보가 올바르지 않나요? <0>이곳을 탭하여 GPS로 위치를 업데이트하세요." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "문제가 있나요?" @@ -6114,7 +6088,7 @@ msgstr "Bluesky에서는 악용 방지를 위해 7일간 보관 후 삭제됩니 msgid "Help" msgstr "도움말" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "사진을 업로드하거나 아바타를 만들어 사람들이 내가 봇이 아니라는 사실을 알 수 있도록 하세요." @@ -6140,7 +6114,7 @@ msgstr "안녕하세요!" msgid "Hidden" msgstr "숨겨짐" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "검토 설정에 의해 숨겨졌습니다." @@ -6148,9 +6122,9 @@ msgstr "검토 설정에 의해 숨겨졌습니다." msgid "Hidden list" msgstr "숨겨진 리스트" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "숨겨진 리스트" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "숨기기" @@ -6198,7 +6172,7 @@ msgstr "모두에게서 답글 숨기기" msgid "Hide reply for me" msgstr "나에게서 답글 숨기기" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "이 카드 숨기기" @@ -6218,12 +6192,12 @@ msgstr "이 답글을 숨기시겠습니까?" msgid "Hide translation" msgstr "번역 숨기기" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "인기 주제 숨기기" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "인기 주제를 숨기시겠습니까?" @@ -6240,7 +6214,7 @@ msgstr "사용자 리스트 숨기기" msgid "Hide verification badges" msgstr "인증 배지 숨기기" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "콘텐츠를 숨깁니다" @@ -6293,8 +6267,8 @@ msgstr "검토 서비스를 불러올 수 없습니다." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "잠깐! 동영상에 대한 접근 권한이 점차적으로 제공되고 있지만 아직은 기다려야 합니다. 나중에 다시 확인해 주세요!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "호스팅 제공자: {0}" msgid "Hosting provider: Bluesky" msgstr "호스팅 제공자: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "인기" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "하는 방법:" @@ -6409,6 +6379,7 @@ msgstr "이메일 주소를 변경하면 이메일 2단계 인증이 비활성 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "비밀번호를 변경하려면 본인 계정 확인을 위해 인증 코드를 전송해야 합니다." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "내 계정의 활동에 대한 알림을 받을 수 있는 사용자를 제한하려면 <0>설정 → 개인정보 및 보안에서 변경할 수 있습니다." @@ -6548,7 +6519,7 @@ msgstr "인앱, 푸시, 모두" msgid "In-app, push, people you follow" msgstr "인앱, 푸시, 내가 팔로우하는 사용자" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "수신함이 비어 있습니다" @@ -6560,6 +6531,7 @@ msgstr "수신함 제로!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "아직은 나밖에 없습니다! 위에서 검색하여 스타터 팩에 더 많은 사용자를 추가해 보세요." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "작업 ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "대화에 참여하기" msgid "Journalism" msgstr "저널리즘" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "계속 작성하기" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS 웹사이트" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0}(이)가 라벨 지정함." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "작성자가 라벨 지정함." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "라벨" @@ -6852,7 +6824,7 @@ msgstr "라벨 추가됨" msgid "Labels applied to this post" msgstr "이 게시물에 적용된 라벨" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "라벨은 사용자 및 콘텐츠에 대한 주석입니다. 네트워크를 숨기고, 경고하고, 분류하는 데 사용할 수 있습니다." @@ -6864,7 +6836,7 @@ msgstr "내 계정의 라벨" msgid "Language" msgstr "언어" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "언어 설정" @@ -6874,7 +6846,7 @@ msgstr "언어 설정" msgid "Languages" msgstr "언어" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "큼" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "방금 시작함" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "최신" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "자세히 알아보기 (영어)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "자세히 알아보기" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "<0>고급 검색 사용 방법 (영어)에 대해 자세히 알아보세요." @@ -6937,8 +6909,8 @@ msgstr "연락처 가져오기에 대해 자세히 알아보기 (영어)" msgid "Learn more about self hosting your PDS." msgstr "PDS 셀프 호스팅에 대해 자세히 알아보세요." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "이 콘텐츠에 적용된 검토 설정에 대해 자세히 알아보세요" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "이 변경 사항에 대한 자세한 내용과 의견 제출 방법은 이 블로그 게시물에서 확인할 수 있습니다." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "이 경고에 대해 자세히 알아보기" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "<0>계정 설정에서 자세히 알아보세요." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "자세히 알아보기" @@ -6993,8 +6965,8 @@ msgstr "나가기" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Bluesky 떠나기" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "이 대화에서 나가면 영구적으로 잠기며 다시 참여할 수 없습니다." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "그룹 대화에서 나갔습니다" @@ -7042,7 +7014,7 @@ msgstr "그룹 대화에서 나갔습니다" msgid "left to go." msgstr "명 남았습니다." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "직접 선택하기" @@ -7057,7 +7029,7 @@ msgstr "출발!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "밝음" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "밝음" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "좋아요" @@ -7076,7 +7048,7 @@ msgstr "좋아요" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "좋아요 ({0, plural, other {#개}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10개 게시물에 좋아요 누르기" @@ -7085,7 +7057,7 @@ msgstr "10개 게시물에 좋아요 누르기" msgid "Like 10 posts to train the Discover feed" msgstr "10개 게시물에 좋아요를 눌러 Discover 피드를 훈련시키세요" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "이 피드에 좋아요 표시" @@ -7093,8 +7065,8 @@ msgstr "이 피드에 좋아요 표시" msgid "Like this labeler" msgstr "이 라벨러에 좋아요 표시" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "좋아요 표시한 사용자" @@ -7111,27 +7083,45 @@ msgstr "좋아요 표시한 사용자" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {#명}}의 사용자가 좋아요 표시함" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "{0} 님이 좋아요 표시함" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "{0} 님과 {1} 님이 좋아요 표시함" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {#명}}의 사용자가 좋아요 표시함" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "좋아요" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "내 재게시물의 좋아요" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "이 게시물을 좋아요 표시합니다" @@ -7144,7 +7134,7 @@ msgstr "일반" msgid "Link copied to clipboard" msgstr "링크를 클립보드에 복사했습니다" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "리스트" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "리스트를 언뮤트했습니다" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "라이브" msgid "Live event happening now: {0}" msgstr "라이브 이벤트 진행 중: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "라이브 이벤트를 숨겼습니다" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "라이브 이벤트를 숨김 해제했습니다" @@ -7279,12 +7269,12 @@ msgstr "라이브 기능은 베타 테스트 중입니다" msgid "Live link" msgstr "라이브 링크" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "더 불러오기" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "추천 피드 더 불러오기" @@ -7292,8 +7282,8 @@ msgstr "추천 피드 더 불러오기" msgid "Load new notifications" msgstr "새 알림 불러오기" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "이 그룹 대화 잠그기" msgid "Locked" msgstr "잠김" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "로그" @@ -7387,7 +7377,7 @@ msgstr "사랑 GIF" msgid "Make adjustments to email settings for your account" msgstr "계정의 이메일 설정 조정하기" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "나를 위해 만들기" @@ -7418,15 +7408,15 @@ msgstr "수동" msgid "Mark all as read" msgstr "모두 읽음으로 표시" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "모든 대화를 읽음으로 표시" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "읽음으로 표시" msgid "Marked all as read" msgstr "모두 읽음으로 표시했습니다" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "모든 대화를 읽음으로 표시했습니다" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "모든 요청을 읽음으로 표시했습니다" @@ -7456,8 +7446,12 @@ msgstr "모든 요청을 읽음으로 표시했습니다" msgid "Maybe later" msgstr "나중에 하기" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "나" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "미디어" @@ -7475,7 +7469,7 @@ msgstr "다른 기기에 저장된 미디어" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "일부 사용자에게 불쾌감을 주거나 부적절할 수 있는 미디어." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "멤버를 그룹 채팅에서 내보냈습니다" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "멘션한 사용자" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "멘션" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "메시지를 삭제했습니다" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "메시지를 보내지 못했습니다." @@ -7563,15 +7557,15 @@ msgstr "메시지가 너무 깁니다 ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH}) msgid "Message options" msgstr "메시지 옵션" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "메시지" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "나를 차단한 사람이 보낸 메시지는 숨겨집니다." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "차단한 사람이 보낸 메시지는 숨겨집니다." @@ -7592,7 +7586,7 @@ msgstr "오해 소지" msgid "Missing media" msgstr "미디어 찾을 수 없음" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "검토" @@ -7636,7 +7630,7 @@ msgstr "검토 리스트를 업데이트했습니다" msgid "Moderation lists" msgstr "검토 리스트" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "검토 리스트" @@ -7645,7 +7639,7 @@ msgstr "검토 리스트" msgid "moderation settings" msgstr "검토 설정" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "검토 상태" @@ -7786,7 +7780,7 @@ msgstr "뮤트됨" msgid "Muted accounts" msgstr "뮤트한 계정" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "뮤트한 계정" @@ -7867,7 +7861,6 @@ msgstr "저작권 위반, 법적 요청 또는 규제 준수 문제를 신고해 msgid "Nevermind, create a handle for me" msgstr "취소하고 내 핸들 만들기" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "신규" @@ -7893,11 +7886,11 @@ msgstr "{firstAuthorName} 님의 새 {postsCount, plural, other {게시물}}" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "새 대화" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "새로운 기능" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "새 팔로워" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "새 그룹 대화" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "새 그룹 대화" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "새 그룹 대화 멤버:" @@ -7966,13 +7959,13 @@ msgstr "새 리스트" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "새 메시지 요청" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "새 메시지" @@ -7982,12 +7975,12 @@ msgstr "새 메시지" msgid "New password" msgstr "새 비밀번호" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "새 게시물" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "새로운 순" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "뉴스" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "다음 이미지" msgid "Night" msgstr "밤" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "광고, 사생활 침해 트래킹, 참여 유도 함정이 없습니다. Bluesky는 내 시간과 관심을 소중히 생각합니다." @@ -8098,7 +8091,7 @@ msgstr "종료 시간 미정" msgid "No feeds found. Try searching for something else." msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "아직 팔로워가 없습니다" @@ -8118,7 +8111,7 @@ msgstr "이미지 없음" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "아직 좋아요 없음" @@ -8135,7 +8128,7 @@ msgstr "리스트가 없습니다" msgid "No longer following {0}" msgstr "{0} 님을 언팔로우했습니다" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "아직 미디어가 없습니다" @@ -8143,7 +8136,7 @@ msgstr "아직 미디어가 없습니다" msgid "No messages yet" msgstr "아직 메시지가 없습니다" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "더 이상 쓰레기 같은 정보만 보여주는 알고리즘에 끌려다니지 마세요. 나를 방해하는 피드가 아닌 나를 위한 피드를 찾아보세요." @@ -8184,12 +8177,12 @@ msgstr "아무도 메시지를 보낼 수 없습니다" msgid "No posts here" msgstr "게시물이 없습니다" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "아직 게시물이 없습니다" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "아직 인용 없음" @@ -8202,7 +8195,7 @@ msgstr "최근에 사용한 GIF가 없습니다. GIF를 선택하면 여기에 msgid "No replies" msgstr "답글 제외" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "아직 답글이 없습니다" @@ -8217,13 +8210,13 @@ msgstr "결과 없음" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "결과 없음" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "‘{0}’에 대한 결과가 없습니다." @@ -8236,23 +8229,23 @@ msgstr "결과를 찾을 수 없습니다" msgid "No results found for \"{query}\"" msgstr "‘{query}’에 대한 결과를 찾을 수 없습니다" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "고급 검색 필터가 적용된 상태에서 ‘<0>{query}’에 대한 검색 결과를 찾을 수 없습니다." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "‘<0>{query}’에 대한 결과를 찾을 수 없습니다." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "고급 검색 필터가 적용된 검색어에 대한 결과를 찾을 수 없습니다." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "결과가 없습니다." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "아직 스타터 팩이 없습니다" @@ -8265,7 +8258,7 @@ msgstr "사용하지 않음" msgid "No translation received from your device." msgstr "기기에서 번역된 내용이 없습니다." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "아직 동영상 게시물이 없습니다" @@ -8278,7 +8271,7 @@ msgstr "없음" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "아직 아무도 좋아요를 누르지 않았습니다. 첫 번째가 되어 보세요!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "아직 아무도 인용하지 않았습니다. 첫 번째가 되어 보세요!" @@ -8298,6 +8291,10 @@ msgstr "동의받지 않은 사적인 성적 이미지" msgid "Non-sexual Nudity" msgstr "선정적이지 않은 나체" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "없음" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "이 플랫폼에서는 사용할 수 없습니다" msgid "Not followed by anyone you’re following" msgstr "내가 팔로우하는 사용자가 팔로우하지 않음" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "찾을 수 없음" @@ -8333,7 +8330,7 @@ msgstr "공유 관련 참고 사항" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "참고: Bluesky는 개방형 공개 네트워크입니다. 이 설정은 Bluesky 앱과 웹사이트에서만 내 콘텐츠가 표시되는 것을 제한하며, 다른 앱에서는 이 설정을 준수하지 않을 수 있습니다. 다른 앱과 웹사이트에서는 로그아웃한 사용자에게 내 콘텐츠가 계속 표시될 수 있습니다." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "참고: 이 게시물은 로그인한 사용자만 볼 수 있습니다." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "아직 저장된 게시물이 없습니다" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "알림 설정" @@ -8353,11 +8350,12 @@ msgstr "알림 설정" msgid "Notification sounds" msgstr "알림음" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "이런!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "확인" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "확인" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "온보딩 재설정" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "선택한 수신자 중 한 명이 그룹 대화를 허용하지 않습니다." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "선택한 수신자 중 한 명이 당신을 차단했으므로 메시지를 보낼 수 없습니다." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "하나 이상의 GIF에 대체 텍스트가 누락되었습니다." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다." @@ -8454,11 +8454,11 @@ msgstr "선택한 파일 중 지원되지 않는 파일이 있습니다." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "선택한 파일 중 크기가 너무 큰 파일이 있습니다. 최대 크기는 {VIDEO_MAX_SIZE_MB} MB입니다." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "하나 이상의 게시물이 너무 길어서 임시 저장할 수 없습니다. 최대 글자 수는 {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {#자}}입니다." -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "하나 이상의 동영상에 대체 텍스트가 누락되었습니다." @@ -8471,7 +8471,7 @@ msgstr "{0}만 답글을 달 수 있습니다." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "선택한 {1}{2, plural, other {개}}의 이미지 중 {0}개만 추가되었습니다 (최대 {MAX_GALLERY_IMAGES}개)" @@ -8519,7 +8519,7 @@ msgstr "동영상이 포함된 게시물만" msgid "Only replies" msgstr "답글만" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT(.vtt) 파일만 지원됩니다" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "이런, 이 프로필은 존재하지 않습니다. 다른 프로필을 스캔해 보세요." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "이런!" @@ -8544,7 +8544,7 @@ msgstr "이런!" msgid "Open advanced search options" msgstr "고급 검색 옵션 열기" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "아바타 생성기 열기" @@ -8570,21 +8570,22 @@ msgstr "대화 옵션 열기" msgid "Open draft" msgstr "임시 저장 열기" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "서랍 메뉴 열기" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "이모티콘 선택기 열기" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "피드 정보 화면 열기" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "피드 옵션 메뉴 열기" @@ -8627,7 +8628,7 @@ msgstr "검토 디버그 페이지 열기" msgid "Open muted words and tags settings" msgstr "뮤트한 단어 및 태그 설정 열기" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "팩 열기" @@ -8699,7 +8700,7 @@ msgstr "디버그 항목에 대한 추가 세부 정보를 엽니다" msgid "Opens alt text dialog" msgstr "대체 텍스트 대화 상자를 엽니다" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "기기에서 카메라를 엽니다" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "새 Bluesky 계정을 만드는 화면을 엽니다" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "존재하는 Bluesky 계정에 로그인하는 화면을 엽니다" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "비밀번호를 변경했습니다!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "일시 정지" @@ -8925,12 +8926,12 @@ msgstr "일시 정지" msgid "Pause GIF" msgstr "GIF 일시 정지" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "동영상 일시 정지" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "사용자" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName} 님이 팔로우하는 사람은 참여 요청할 수 있음" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0} 님이 팔로우하는 사용자" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0} 님을 팔로우하는 사용자" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "내가 팔로우하는 사용자" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "내가 팔로우하는 사람은 참여 요청할 수 있음" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "내가 팔로우하는 사용자" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "성인용 사진." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "피드 고정" @@ -9034,7 +9035,7 @@ msgstr "피드 고정" msgid "Pin to home" msgstr "홈에 고정" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "홈에 고정" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "고정됨" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0}(을)를 홈에 고정했습니다" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "내 피드에 고정했습니다" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "재생" @@ -9076,8 +9077,8 @@ msgstr "{0} 재생" msgid "Play GIF" msgstr "GIF 재생" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "동영상 재생" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "아래에 메시지를 작성하세요:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "정치" @@ -9269,7 +9270,7 @@ msgstr "정치" msgid "Porn" msgstr "음란물" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "게시하기" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "게시물" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "사진 게시하기" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "동영상 게시하기" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "모두 게시하기" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "무시하고 게시" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "게시물 차단됨" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} 님의 게시물" @@ -9340,7 +9341,7 @@ msgstr "내가 숨긴 게시물" msgid "Post interaction settings" msgstr "게시물 상호작용 설정" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "게시물 상호작용 설정" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "게시물을 고정했습니다" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "게시물을 저장했습니다" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "게시물을 고정 해제했습니다" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "게시물" @@ -9398,6 +9396,10 @@ msgstr "게시물을 텍스트, 태그 또는 둘 다에 따라 뮤트할 수 msgid "Posts hidden" msgstr "게시물 숨겨짐" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "게시물, 답글" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "오해의 소지가 있는 링크" @@ -9449,20 +9451,21 @@ msgstr "개인정보" msgid "Privacy and security" msgstr "개인정보 및 보안" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "개인정보 및 보안" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "개인정보 및 보안 설정" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "개인정보 처리방침" msgid "Privacy violation of a minor" msgstr "미성년자 사생활 침해" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIF 처리 중…" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "동영상 처리 중…" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "일괄 뮤트하거나 차단할 수 있는 공개적이고 공유 가능한 사용자 목록입니다." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "게시물 등록하기" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "게시물 등록하기" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "답글 등록하기" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "답글 등록하기" @@ -9599,12 +9602,12 @@ msgstr "게시물 인용 비활성화됨" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "인용" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "이 게시물의 인용" @@ -9647,7 +9650,7 @@ msgstr "계정 재활성화" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "{0, plural, other {답글 #개}} 더 보기" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "고급 검색 필터 사용 방법에 대해 읽어보기 (영어)" @@ -9657,11 +9660,11 @@ msgstr "고급 검색 필터 사용 방법에 대해 읽어보기 (영어)" msgid "Read blog post" msgstr "블로그 게시물 읽기" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "접기" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "펼치기" @@ -9687,11 +9690,11 @@ msgstr "Bluesky 개인정보 처리방침 읽기" msgid "Read the Bluesky Terms of Service" msgstr "Bluesky 서비스 이용약관 읽기" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "진솔한 대화." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "진짜 사람들." @@ -9721,10 +9724,6 @@ msgstr "최근 검색" msgid "Recently used" msgstr "최근 사용됨" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "추천" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "다시 연결" @@ -9748,7 +9747,7 @@ msgstr "대화 요청 거절하기" msgid "Reject join request" msgstr "참여 요청 거절하기" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "대화 다시 불러오기" @@ -9766,7 +9765,7 @@ msgstr "대화 다시 불러오기" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "제거" @@ -9792,8 +9791,8 @@ msgstr "{displayName} 님을 내보내시겠습니까?" msgid "Remove {q}" msgstr "{q} 제거하기" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "계정 제거" @@ -9845,15 +9844,15 @@ msgstr "필터 제거하기" msgid "Remove from chat" msgstr "대화에서 내보내기" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "내 피드에서 제거" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "빠른 액세스에서 제거하시겠습니까?" @@ -9862,7 +9861,7 @@ msgstr "빠른 액세스에서 제거하시겠습니까?" msgid "Remove from saved feeds" msgstr "저장된 피드에서 제거" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "저장된 게시물에서 제거" @@ -9880,8 +9879,8 @@ msgstr "이미지 제거" msgid "Remove live status" msgstr "라이브 상태 제거" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "멤버 제거" @@ -9943,7 +9942,7 @@ msgstr "리스트에서 제거했습니다" msgid "Removed from saved feeds" msgstr "저장된 피드에서 제거했습니다" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "저장된 게시물에서 제거했습니다" @@ -9952,7 +9951,7 @@ msgstr "저장된 게시물에서 제거했습니다" msgid "Removed from starter pack" msgstr "스타터 팩에서 제거했습니다" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "나에게 보내는 답글" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "답장한 {senderName} 님의 메시지, 탭하여 스크롤하기" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "내가 참여하기 전에 보내진 답장한 메시지" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "답장한 메시지, 탭하여 스크롤하기" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "답글" @@ -10037,7 +10037,7 @@ msgstr "이 게시물에 대한 답글은 비활성화되어 있습니다." msgid "Reply" msgstr "답글 보내기" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "답글 보내기" @@ -10098,8 +10098,8 @@ msgstr "대화 신고" msgid "Report dialog" msgstr "신고 대화 상자" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "피드 신고" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "내가 재게시함" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "재게시" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "이 게시물의 재게시물" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "내 재게시물의 재게시" @@ -10253,7 +10253,7 @@ msgstr "요청했습니다" msgid "Requests" msgstr "요청" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "오류가 발생한 마지막 작업을 다시 시도합니다" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "홈 페이지로 돌아갑니다" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "이전 페이지로 돌아갑니다" @@ -10446,27 +10446,27 @@ msgstr "생년월일 저장" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "변경 사항 저장" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "변경 사항을 저장하시겠습니까?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "임시 저장" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "임시 저장하시겠습니까?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR 코드 저장" msgid "Save these options for next time" msgstr "다음에도 이 옵션 저장하기" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "내 피드에 저장" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "저장된 피드" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "저장된 게시물" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "내 피드에 저장했습니다" @@ -10520,8 +10520,8 @@ msgstr "내 피드에 저장했습니다" msgid "Say hello!" msgstr "인사해 보세요!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "먼저 인사를 건네보세요" @@ -10535,7 +10535,7 @@ msgstr "스캔" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "QR 코드 스캔" @@ -10543,15 +10543,15 @@ msgstr "QR 코드 스캔" msgid "Science" msgstr "과학" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "왼쪽으로 스크롤" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "오른쪽으로 스크롤" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "답장한 메시지로 스크롤하기" @@ -10564,8 +10564,8 @@ msgstr "맨 위로 스크롤" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "검색" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0} 님의 게시물 검색" @@ -10612,11 +10612,11 @@ msgstr "{q}에 대한 검색 결과" msgid "Search for feeds that you want to suggest to others." msgstr "다른 사람에게 추천할 피드를 검색하세요." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "더 많은 계정 검색하기" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "더 많은 피드 검색하기" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF 검색하기" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "현재 로그아웃 상태에서는 검색 기능을 사용할 수 없습니다" @@ -10709,6 +10709,7 @@ msgstr "Bluesky에 지원하기" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "더 보기" @@ -10716,8 +10717,12 @@ msgstr "더 보기" msgid "See more suggested profiles" msgstr "더 많은 추천 프로필 보기" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "인기 주제 더 보기" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "추천 계정 보기" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "탐색 슬라이더. 화살표 키를 사용하여 앞뒤로 탐색하고 스페이스 키를 사용하여 재생 또는 일시 정지합니다" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "‘{interestsDisplayName}’ 카테고리 선택" @@ -10748,7 +10753,7 @@ msgstr "{0} 선택" msgid "Select {langName}" msgstr "{langName} 선택" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "색상 선택" @@ -10764,11 +10769,11 @@ msgstr "계정 선택" msgid "Select an app language" msgstr "앱 언어를 선택하세요" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "아바타 선택" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "이모티콘 선택" @@ -10780,12 +10785,13 @@ msgstr "옵션 선택" msgid "Select app language" msgstr "앱 언어 선택" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "캡션 파일(.vtt) 선택" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "대화 ‘{name}’ 선택하기" @@ -10826,7 +10832,7 @@ msgstr "GIF 선택" msgid "Select GIF \"{0}\"" msgstr "GIF ‘{0}’ 선택" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "그룹 대화 멤버 선택" @@ -10864,7 +10870,7 @@ msgstr "주 언어 선택" msgid "Select telephone code" msgstr "국가 코드 선택" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} 이모티콘을 아바타로 선택하기" @@ -10945,7 +10951,8 @@ msgstr "메시지 보내기" msgid "Send post to {name}" msgstr "{name} 님에게 게시물 보내기" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "게시물을 다음으로 보내기" @@ -10963,12 +10970,12 @@ msgstr "휴대폰에서 메시지 전송하기" msgid "Send verification email" msgstr "인증 이메일 전송" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "다이렉트 메시지로 보내기" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "대화로 보내기" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "호스팅 제공자를 수동으로 설정" msgid "Sets email for password reset" msgstr "비밀번호 재설정을 위한 이메일을 설정합니다" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "설정" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "다른 사용자의 활동 알림 설정" @@ -11036,49 +11043,49 @@ msgstr "다른 사용자의 활동 알림 설정" msgid "Settings for allowing others to be notified of your posts" msgstr "다른 사용자에게 내 게시물 알림을 허용할지에 대한 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "좋아요 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "멘션 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "새 팔로워 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "기타 모든 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "내 재게시물의 좋아요 알림 설정" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "새 메시지 요청 알림 설정" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "새 메시지 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "내 재게시물의 재게시 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "인용 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "답글 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "재게시 알림 설정" @@ -11115,8 +11122,8 @@ msgstr "연령대 공유" msgid "Share anyway" msgstr "무시하고 공유" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "작성자 DID 공유" @@ -11127,7 +11134,7 @@ msgstr "작성자 DID 공유" msgid "Share feedback" msgstr "피드백 공유" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "링크 공유 대화 상자" msgid "Share my profile" msgstr "내 프로필 공유하기" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "게시물 at:// URI 공유" @@ -11169,12 +11176,12 @@ msgstr "프로필 공유" msgid "Share QR code" msgstr "QR 코드 공유" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "이 피드 공유하기" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "이 검색 공유하기" @@ -11186,8 +11193,8 @@ msgstr "이 스타터 팩 공유하기" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "이 스타터 팩을 공유하여 사람들이 Bluesky에서 커뮤니티에 참여할 수 있도록 도와주세요." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "연락처를 공유하고 친구들을 찾아보세요" msgid "Share your thoughts…" msgstr "의견을 공유해 주세요…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "공유 설정 테스터" @@ -11219,7 +11226,7 @@ msgstr "연령대를 공유하면 Apple 계정과 관련된 범위(예: 만 18 msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "연령대를 공유하면 Google 계정과 관련된 범위(예: 만 18세 이상)만 공개합니다. <0>정확한 나이와 생년월일은 절대 공유되지 않으며, 이 데이터는 이 기기를 벗어나지 않습니다. 따라서 이 기기에서만 접근할 수 있습니다. 또는 <1>신뢰할 수 있는 파트너인 KWS를 사용하여 인증을 완료하고 모든 플랫폼에서 접근을 활성화할 수 있습니다." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "표시" msgid "Show alt text" msgstr "대체 텍스트 표시" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "무시하고 표시" @@ -11274,8 +11281,8 @@ msgstr "무시하고 리스트 표시하기" msgid "Show lists of users to select from" msgstr "선택할 수 있는 사용자 리스트 표시" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "더 보기" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "경고 표시 및 피드에서 필터링" msgid "Show when you’re live" msgstr "내가 라이브 중일 때 표시하기" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "이 게시물이 언제 작성되었는지에 대한 정보를 표시합니다" @@ -11341,15 +11348,15 @@ msgstr "이 게시물이 언제 작성되었는지에 대한 정보를 표시합 msgid "Shows other accounts you can switch to" msgstr "전환할 수 있는 다른 계정을 표시합니다" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "콘텐츠를 표시합니다" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "콘텐츠를 표시합니다" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "로그아웃하시겠습니까?" msgid "Sign up" msgstr "가입하기" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "로그인 필요" @@ -11469,7 +11476,7 @@ msgstr "건너뛰기" msgid "Skip contact sharing and continue to the app" msgstr "연락처 공유를 건너뛰고 앱으로 바로 이동하기" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "빈 게시물을 제외하시겠습니까?" @@ -11487,7 +11494,7 @@ msgstr "다음 단계로 건너뛰기" msgid "slide" msgstr "슬라이드" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "작음" @@ -11499,7 +11506,7 @@ msgstr "알림을 끕니다" msgid "So many thoughts, you should post one" msgstr "생각이 너무 많다면 일단 하나만 게시해 보세요" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "내가 제어하는 소셜 미디어." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "누군가가 그룹에서 나갔습니다" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "누군가가 {0}(으)로 반응했습니다" @@ -11554,7 +11561,7 @@ msgstr "누군가가 {0}(으)로 반응했습니다" msgid "Someone reacted {0} to {target}" msgstr "누군가가 {target}에 {0}(으)로 반응했습니다" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "누군가가 보내는 답장" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "문제가 발생했습니다. 다시 시도해 주세요." #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "문제가 발생했습니다. 잠시 후 다시 시도해 주세요." msgid "Something went wrong. Please try again." msgstr "문제가 발생했습니다. 다시 시도해 주세요." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "문제가 발생했나요? 저희에게 알려주세요." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "스팸 또는 기타 기만, 사기 행위" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "스포츠" @@ -11668,7 +11675,7 @@ msgstr "대화를 시작하면 여기에 표시됩니다." msgid "Start a group chat" msgstr "그룹 대화 시작하기" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "새 대화 시작하기" @@ -11682,17 +11689,17 @@ msgstr "사용자 추가하기" msgid "Start adding people!" msgstr "사용자를 추가해 보세요!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "대화 시작" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "{displayName} 님과 대화 시작하기" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "스타터 팩" @@ -11715,12 +11722,16 @@ msgstr "내 스타터 팩" msgid "Starter pack is invalid" msgstr "스타터 팩이 유효하지 않음" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "스타터 팩" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "스타터 팩" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "스타터 팩을 사용하면 좋아하는 피드와 사용자를 친구들과 쉽게 공유할 수 있습니다." @@ -11728,7 +11739,7 @@ msgstr "스타터 팩을 사용하면 좋아하는 피드와 사용자를 친구 msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "스타터 팩을 사용하면 좋아하는 피드와 사용자를 친구들과 공유할 수 있습니다." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "스타터 팩을 사용하면 좋아하는 피드와 사용자를 친구들과 공유할 수 있습니다." @@ -11742,7 +11753,7 @@ msgstr "상태 페이지" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "{1}단계 중 {0}단계" @@ -11754,7 +11765,7 @@ msgstr "스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니 msgid "Stored as part of a secure code for matching with others" msgstr "다른 사용자와 번호를 대조하는 보안 코드의 일부로 저장됩니다" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "스토리북" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "{0}에서 {publicationTitle} 구독하기" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "이 라벨을 사용하려면 @{0}(을)를 구독하세요." @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "성공적으로 인증했습니다" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "추천" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "추천 계정" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "일몰" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "회원님의 국가에서는 아직 이 기능이 지원되지 않습니다! 나중에 다시 확인해 주세요." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "계정이 정지된 경우 그룹 대화에 참여할 수 없습니다." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "정지된 계정은 대화에 참여할 수 없습니다." @@ -11921,8 +11934,8 @@ msgstr "{0}(으)로 전환" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "시스템" @@ -11945,7 +11958,7 @@ msgstr "비공개로 대화하세요." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "내 지역에서 이용 가능한 콘텐츠와 기능을 더 정확하게 결정할 수 있도록 아래를 탭하여 Bluesky의 GPS 위치 접근을 허용해 주세요." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "탭하여 자세히 알아보기" @@ -11976,7 +11989,7 @@ msgstr "컨텍스트 메뉴를 닫습니다" msgid "Tap to copy this invite link" msgstr "탭하여 이 초대 링크를 복사합니다" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "탭하여 닫기" @@ -12003,7 +12016,7 @@ msgstr "탭하여 내 {0} 반응을 제거합니다" msgid "Tap to request access to join this group chat" msgstr "탭하여 이 그룹 대화의 참여 권한을 요청합니다" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "탭하여 다시 시도" @@ -12016,7 +12029,7 @@ msgstr "탭하여 {0} 반응을 표시합니다" msgid "Tap to show all reactions" msgstr "탭하여 모든 반응을 표시합니다" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "탭하여 반응을 봅니다" @@ -12032,7 +12045,7 @@ msgstr "작업 완료 - 팔로우 10번!" msgid "Task complete - 10 likes!" msgstr "작업 완료 - 좋아요 10번!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "무엇을 좋아하는지 알고리즘에게 알려주세요" @@ -12060,7 +12073,7 @@ msgstr "이용약관" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "스타터 팩을 찾을 수 없습니다." msgid "That username is already taken" msgstr "이 사용자 이름은 이미 사용 중입니다" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "이상입니다, 여러분!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "그게 다예요!" @@ -12216,7 +12229,7 @@ msgstr "서버에 문제가 있는 것 같습니다. 잠시 후 다시 시도해 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "이 스타터 팩은 유효하지 않습니다. 대신 이 스타터 팩을 삭제할 수 있습니다." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "컨텍스트 메뉴 제목" @@ -12238,7 +12251,7 @@ msgstr "입력한 인증 코드가 올바르지 않습니다. 올바른 인증 msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "인증 서비스 제공업체에서 회원님의 전화번호로 인증 코드를 보낼 수 없습니다. 전화번호를 확인한 후 다시 시도해 주세요." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "테마" @@ -12266,7 +12279,7 @@ msgstr "GIF를 불러오는 동안 문제가 발생했습니다. 인터넷 연 msgid "There was a problem with your internet connection, please try again" msgstr "인터넷 연결에 문제가 발생했습니다. 다시 시도해 주세요" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "인터넷 연결에 문제가 발생했습니다. 다시 시도해 주 msgid "There was an issue contacting the server" msgstr "서버에 연결하는 동안 문제가 발생했습니다" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "서버에 연결하는 동안 문제가 발생했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요." @@ -12283,8 +12296,8 @@ msgstr "서버에 연결하는 동안 문제가 발생했습니다. 인터넷 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "알림을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요." @@ -12309,7 +12322,7 @@ msgstr "내 서비스 정보를 가져오는 동안 문제가 발생했습니다 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "이 피드를 삭제하는 동안 문제가 발생했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "이 설정은 팔로우 중 피드에만 적용됩니다." msgid "These URLs" msgstr "다음 URL" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "내 소유가 아닌 대화" @@ -12392,7 +12405,7 @@ msgstr "내 소유가 아닌 대화" msgid "They won’t be able to rejoin unless you invite them again." msgstr "다시 초대하기 전까지 이 대화에 다시 참여할 수 없습니다." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "이 {screenDescription}에 다음 플래그가 지정되었습니다:" @@ -12408,7 +12421,7 @@ msgstr "이 계정은 소유자에 의해 자동화된 계정으로 표시되었 msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "이 계정은 한 번 이상 인증을 시도했지만 현재는 인증되지 않았습니다." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "이 계정의 프로필을 보려면 로그인해야 합니다." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "이 피드는 비어 있습니다. 더 많은 사용자를 팔로우하거나 언어 설정을 조정해 보세요." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "이 피드는 비어 있습니다." @@ -12554,7 +12567,7 @@ msgstr "이 그룹은 소유자에 대한 검토 조치로 인해 잠겨 있습 msgid "This handle is reserved. Please try a different one." msgstr "이 핸들은 예약되었습니다. 다른 핸들을 사용하세요." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "이 이미지는 사용할 수 없습니다. .jpg 또는 .png와 같은 다른 형식을 사용해 보세요." @@ -12596,7 +12609,7 @@ msgstr "이 라벨은 내가 적용했습니다." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "이 라벨은 사용자 계정 전체에 적용되었으며 모든 게시물에 표시됩니다." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "이 라벨러는 라벨을 등록하지 않았으며 활성화되어 있지 않을 수 있습니다." @@ -12621,13 +12634,13 @@ msgstr "이 리스트는 비어 있습니다." msgid "This message is hidden" msgstr "이 메시지는 숨겨져 있습니다" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "이 사용자가 나를 차단했기 때문에 이 메시지는 숨겨졌습니다." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "이 사용자를 차단했기 때문에 이 메시지는 숨겨졌습니다." @@ -12641,7 +12654,7 @@ msgstr "이 사용자는 나를 차단했습니다" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "이 게시물은 <0>{0}에 작성되었다고 주장하지만 Bluesky에서는 <1>{1}에 처음 확인되었습니다." @@ -12649,7 +12662,7 @@ msgstr "이 게시물은 <0>{0}에 작성되었다고 주장하지만 Bluesk msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "이 게시물에 알 수 없는 유형의 스레드게이트가 있습니다. 앱이 오래되었을 수 있습니다." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "이 게시물은 로그인한 사용자만 볼 수 있습니다." @@ -12661,7 +12674,7 @@ msgstr "작성자가 삭제한 게시물입니다" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "이 게시물을 피드와 스레드에서 숨깁니다. 이 작업은 되돌릴 수 없습니다." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "이 게시물의 작성자가 인용 게시물을 비활성화했습니다." @@ -12698,11 +12711,12 @@ msgstr "이 절차는 몇 분 정도 소요됩니다." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "이 사용자는 표시 이름이 없으므로 인증할 수 없습니다." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "이 사용자는 팔로워가 없습니다." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "이 사용자는 나를 차단했으므로 메시지를 보낼 수 없습니다." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "이 사용자는 나를 차단했습니다. 이 사용자의 콘텐츠를 볼 수 없습니다." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "이 사용자는 대화를 비활성화했으므로 메시지를 보낼 수 없습니다." @@ -12733,11 +12748,11 @@ msgstr "이 사용자는 내가 뮤트한 <0>{0} 리스트에 포함되어 msgid "This user is new here. Press for more info about when they joined." msgstr "이 사용자는 새로 가입했습니다. 언제 가입했는지 자세한 정보를 보려면 누르세요." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "이 사용자는 아무도 팔로우하지 않았습니다." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "이 동영상은 현재 기기에서 재생할 수 없습니다. 브라우저 또는 시스템에 필요한 비디오 코덱(H.264/AAC)이 설치되어 있지 않을 수 있습니다." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "이 작업은 Bluesky 계정 <0>{currentHandle} 및 관련된 모든 데이터를 영구적으로 삭제합니다. 이 계정으로 사용하는 다른 <1>AT 프로토콜 서비스에도 영향을 미칠 수 있다는 점에 유의해 주세요." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "빠른 액세스 목록에서 @{0}(을)를 제거합니다." @@ -12786,7 +12801,7 @@ msgstr "스레드 설정" msgid "Threaded" msgstr "스레드" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "스레드 설정" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "연락처가 너무 많습니다. 친구 찾기를 위해 가져올 수 있는 연락처 수를 초과했습니다" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "인기" @@ -12858,7 +12873,7 @@ msgstr "인기" msgid "Top replies first" msgstr "인기순" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "주제" @@ -12893,7 +12908,9 @@ msgstr "현재 사용하는 기기에서는 같은 언어로 번역할 수 없 msgid "Tree view" msgstr "트리 뷰" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "인기" @@ -12902,7 +12919,7 @@ msgstr "인기" msgid "Trending GIFs" msgstr "인기 GIF" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "인기 옵션" @@ -12918,11 +12935,11 @@ msgstr "분쟁 유발" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "신뢰는 관계, 커뮤니티, 공유된 맥락에서 비롯되므로 직접 인증을 발행할 수 있는 조직인 <0>신뢰할 수 있는 인증자 또한 지원합니다." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "다른 검색어를 사용하거나 일부 필터를 제거해 보세요." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "다른 검색어를 사용해 보세요." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "참여 요청을 가져올 수 없습니다." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "선택한 수신자를 찾을 수 없습니다." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "선택한 수신자를 찾을 수 없습니다." @@ -13024,12 +13043,12 @@ msgstr "사용할 수 없음" msgid "Unavailable feed information" msgstr "사용할 수 없는 피드 정보" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "계정을 차단 해제하시겠습니까?" msgid "Unblock list" msgstr "리스트 차단 해제" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "{0} 님을 언팔로우" msgid "Unfollow account" msgstr "계정 언팔로우" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "사용자를 언팔로우합니다" @@ -13132,7 +13151,7 @@ msgstr "라벨이 없는 성인 콘텐츠" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "라벨이 없거나, 학대적이거나 동의받지 않은 성인 콘텐츠" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "좋아요 취소" @@ -13192,7 +13211,7 @@ msgstr "이 그룹 대화 언뮤트하기" msgid "Unmute thread" msgstr "스레드 언뮤트" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "동영상 음소거 해제" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "고정 해제" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "피드 고정 해제" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "홈에서 고정 해제" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "검토 리스트 고정 해제" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0}(을)를 홈에서 고정 해제했습니다" @@ -13258,11 +13277,11 @@ msgstr "이 라벨러 구독 취소하기" msgid "Unsubscribed from list" msgstr "리스트를 구독 취소했습니다" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "지원되지 않는 클립보드 콘텐츠" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "지원되지 않는 동영상 유형: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "답글 표시 여부를 업데이트하지 못했습니다" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "대신 사진 업로드하기" @@ -13355,7 +13374,7 @@ msgstr "파일에서 업로드" msgid "Upload from Library" msgstr "보관함에서 업로드" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIF 업로드 중…" @@ -13369,7 +13388,7 @@ msgstr "이미지 업로드 중…" msgid "Uploading link thumbnail..." msgstr "링크 미리보기 업로드 중…" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "동영상 업로드 중…" @@ -13408,7 +13427,7 @@ msgstr "이 비밀번호와 핸들을 사용하여 다른 앱에 로그인하세 msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "KWS나 Bluesky에서 연락해야 할 경우를 대비하여, 계정 이메일 주소 또는 직접 관리하는 다른 실제 이메일 주소를 사용하세요." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "사용자" @@ -13510,7 +13529,7 @@ msgstr "인증하지 못했습니다. 다시 시도해 주세요." msgid "Verification settings" msgstr "인증 설정" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "인증 설정" @@ -13618,7 +13637,7 @@ msgstr "동영상" msgid "Video failed to process" msgstr "동영상을 처리하지 못했습니다" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "동영상 피드" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "{0} 님의 동영상: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "{0} 님의 동영상. 탭하여 재생 또는 일시정지합니다" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "비디오 게임" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "동영상 일시 정지됨" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "동영상 재생 중" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "동영상을 찾을 수 없습니다." @@ -13653,7 +13672,7 @@ msgstr "동영상을 찾을 수 없습니다." msgid "Video settings" msgstr "동영상 설정" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "동영상을 업로드했습니다" @@ -13662,17 +13681,17 @@ msgstr "동영상을 업로드했습니다" msgid "Video: {0}" msgstr "동영상: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "동영상" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "동영상 길이는 3분 미만이어야 합니다." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "보기" @@ -13691,9 +13710,9 @@ msgstr "{0} 님의 프로필 사진 보기" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0} 님의 프로필 보기" @@ -13724,13 +13743,13 @@ msgstr "자세한 정보를 위해 블로그 글 보기" msgid "View debug entry" msgstr "디버그 항목 보기" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "세부 정보 보기" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "전체 스레드 보기" @@ -13761,7 +13780,7 @@ msgstr "더 보기" msgid "View more trending videos" msgstr "인기 동영상 더 보기" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "게시물 보기" @@ -13798,11 +13817,11 @@ msgstr "이 그룹 대화의 초대 링크 보기" msgid "View the labeling service provided by @{0}" msgstr "{0} 님이 제공하는 라벨링 서비스 보기" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "이 사용자의 인증 보기" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "이 피드를 좋아하는 사용자 보기" @@ -13831,7 +13850,7 @@ msgstr "내 검토 리스트 보기" msgid "View your muted accounts" msgstr "내가 뮤트한 계정 보기" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "내 인증 보기" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "네트워크 문제가 발생했습니다. 다시 시도해 주세요" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "네트워크 문제가 발생했습니다. 다시 시도해 주세요" @@ -14043,7 +14062,7 @@ msgstr "네트워크 문제가 발생했습니다. 다시 시도해 주세요" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Bluesky에 인증을 쉽게 확인할 수 있는 체크 표시를 도입합니다." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "함께하게 되어 정말 기뻐요!" @@ -14064,13 +14083,15 @@ msgstr "죄송하지만 이 리스트를 불러올 수 없습니다. 이 문제 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "죄송하지만 현재 뮤트한 단어를 불러올 수 없습니다. 다시 시도해 주세요." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "죄송합니다. 검색을 완료할 수 없습니다." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "죄송하지만 검색을 완료할 수 없습니다. 몇 분 후에 다시 시도해 주세요." @@ -14078,7 +14099,7 @@ msgstr "죄송하지만 검색을 완료할 수 없습니다. 몇 분 후에 다 msgid "We're sorry, you cannot access this screen at this time." msgstr "죄송합니다. 현재 이 화면에 접근할 수 없습니다." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "요즘 어때?" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "무슨 일이 일어나고 있나요?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "누가 인증을 받을 수 있나요?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "이런!" @@ -14220,21 +14241,21 @@ msgstr "이 사용자를 차단하거나 대화를 종료하시겠습니까?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "임시 저장 목록으로 이동하기 전에 작성 중인 내용을 저장하시겠습니까?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "나중에 다시 작성할 수 있도록 임시 저장하시겠습니까?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "게시물 작성하기" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "게시물 작성" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "답글 작성하기" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "회원님이 접속하신 지역은 앱 접근 전 법적으로 연령 확인이 필요한 곳입니다." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0} 님을 차단했습니다" @@ -14342,7 +14363,7 @@ msgstr "더 이상 라이브 중이 아닙니다" msgid "You are not allowed to upload videos." msgstr "동영상을 업로드할 수 없습니다." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "아직 아무도 팔로우하지 않았습니다" @@ -14362,7 +14383,7 @@ msgstr "현재 인증된 상태입니다. 표시 이름을 변경하면 인증 msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "현재 인증된 상태입니다. 핸들을 변경하면 인증이 해제될 수 있습니다. <0>자세히 알아보기 (영어)" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "‘콘텐츠 및 미디어’ 설정에서 언제든지 관심 주제를 조정할 수 있습니다." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "이제 새 비밀번호로 로그인할 수 있습니다." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "게시물당 최대 {MAX_GALLERY_IMAGES, plural, other {#개}}의 이미지만 추가할 수 있습니다" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "최대 1000자까지만 임시 저장할 수 있습니다." @@ -14439,9 +14460,9 @@ msgstr "대화 기록은 읽을 수 있지만 새 메시지는 보낼 수 없습 msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "총 {MAX_GALLERY_IMAGES, plural, other {#개}}까지 선택할 수 있습니다." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "나중에 설정에서 변경할 수 있습니다." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "이모티콘 반응은 최대 {EMOJI_REACTION_LIMIT, plural, other {#개}}까지만 추가할 수 있습니다" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "아직 그룹 대화를 만들 수 없습니다." @@ -14555,7 +14577,7 @@ msgstr "이메일 주소를 성공적으로 인증했습니다. 이 대화 상 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "일시적으로 동영상 업로드 한도에 도달했습니다. 나중에 다시 시도해 주세요." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "이 초안에 저장되지 않은 변경 사항이 있습니다. 저장하시겠습니까?" @@ -14563,7 +14585,7 @@ msgstr "이 초안에 저장되지 않은 변경 사항이 있습니다. 저장 msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "변경 사항이 저장되지 않았습니다. 임시 저장 목록으로 이동하기 전에 저장하시겠습니까?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "아직 스타터 팩을 만들지 않았습니다." @@ -14614,7 +14636,7 @@ msgstr "프로필은 최대 {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK msgid "You may only add up to 3 feeds" msgstr "피드는 최대 3개까지 추가할 수 있습니다" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "멤버를 내보내려면 대화 소유자여야 합니다." @@ -14622,7 +14644,7 @@ msgstr "멤버를 내보내려면 대화 소유자여야 합니다." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Bluesky를 이용하려면 만 13세 이상이어야 합니다. 자세한 내용은 <0>서비스 이용약관을 참조하세요." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "스타터 팩을 만들려면 다른 사용자를 최소 7명 이상 팔로우해야 합니다." @@ -14639,7 +14661,7 @@ msgstr "미디어 라이브러리에 대한 접근 권한을 허용해야 합니 msgid "You need to verify your email address before you can enable email 2FA." msgstr "이메일 2단계 인증을 사용하려면 이메일 주소를 인증해야 합니다." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "내가 소유한 대화" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "앱을 다시 시작해야 할 수 있습니다." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "내가 {0}(으)로 반응함" @@ -14667,15 +14689,15 @@ msgstr "내가 {target}에 {0}(으)로 반응했습니다" msgid "You recently changed your birthdate" msgstr "최근 생년월일을 변경했습니다" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "내가 보내는 답장" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "내가 {originalName} 님에게 보내는 답장" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "내가 나에게 보내는 답장" @@ -14715,11 +14737,11 @@ msgstr "초대받지 않으면 다시 참여할 수 없습니다." msgid "You: {message}" msgstr "나: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "계정 생성을 완료하면 추천 사용자 및 피드를 팔로우하게 됩니다." -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "계정 생성을 완료하면 추천 사용자를 팔로우하게 됩니다." @@ -14791,7 +14813,7 @@ msgstr "활성 콘텐츠의 끝에 도달했습니다." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "피드 끝에 도달했습니다! 팔로우할 계정을 더 찾아보세요." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "임시 저장 수가 최대치에 도달했습니다" @@ -14799,7 +14821,7 @@ msgstr "임시 저장 수가 최대치에 도달했습니다" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "허용된 최대 요청 수에 도달했습니다. 나중에 다시 시도해 주세요." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "필터의 최대 수인 {MAX_FILTERS, plural, other {#개}}에 도달했습니다. 새 필터를 만드는 대신 기존 필터에 값을 추가하세요." @@ -14815,11 +14837,11 @@ msgstr "동영상 업로드 일일 한도에 도달했습니다 (용량이 너 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "동영상 업로드 일일 한도에 도달했습니다 (동영상 수가 너무 많음)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "시청할 동영상이 부족합니다. 잠시 쉬는 건 어떠신가요?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "내 계정" @@ -14835,11 +14857,11 @@ msgstr "계정이 일시 정지되었습니다" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "내 계정은 아직 동영상을 업로드할 수 없습니다. 나중에 다시 시도해 주세요." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "계정이 너무 새롭습니다" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "새 그룹 대화를 만들려면 계정 생성 후 최소 7일이 지나야 합니다." @@ -14930,8 +14952,8 @@ msgstr "이메일 주소에서 호스팅 제공자를 감지할 수 없어 기 msgid "Your hosting provider is detected automatically from the username you enter." msgstr "입력한 핸들에서 호스팅 제공자가 자동으로 감지됩니다." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "관심 주제를 업데이트했습니다!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "관심 주제는 내가 좋아하는 것을 찾도록 도와줍니다!" @@ -14967,11 +14989,11 @@ msgstr "비밀번호를 성공적으로 변경했습니다! 앞으로 Bluesky에 msgid "Your password must be at least 8 characters long." msgstr "비밀번호는 8자 이상이어야 합니다." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "게시물을 보냈습니다" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "게시물을 보냈습니다" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "선호하는 언어" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "내 프로필 사진" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "여러 사용자들의 프로필 사진이 동심원 형태로 내 프로필 사진을 둘러싸고 있는 모습" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "답글을 보냈습니다" @@ -15005,7 +15027,7 @@ msgstr "신고를 <0>{0}에게 전송합니다." msgid "Your selected interests help us serve you content you care about." msgstr "선택한 관심 주제는 사용자가 관심 있는 콘텐츠를 제공하는 데 도움을 줍니다." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "스레드에 내용이 없는 게시물이 포함되어 있어 해당 게시물은 제외됩니다. 나머지 게시물은 스레드 형식으로 게시됩니다." diff --git a/src/locale/locales/kw/messages.po b/src/locale/locales/kw/messages.po new file mode 100644 index 0000000000..2956bc63b6 --- /dev/null +++ b/src/locale/locales/kw/messages.po @@ -0,0 +1,15041 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: kw_GB\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2026-07-24 15:42\n" +"Last-Translator: \n" +"Language-Team: Cornish\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1 : 2);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: kw\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. +#: src/components/InterestTabs.tsx:333 +msgid "\"{interestsDisplayName}\" category (active)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:902 +msgid "(blocked message hidden)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/getMessageInfo.ts:123 +#: src/components/dms/replyPreview.ts:85 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:105 +msgid "(contains embedded content)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:916 +msgid "(deleted message)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:68 +msgid "(disabled chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:77 +msgid "(invalid chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:910 +msgid "(message sent before you joined)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:74 +msgid "(no email)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:107 +msgid "(no text)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:99 +msgid "(quoted post)" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/LabelsOnMe.tsx:57 +msgid "{0, plural, one {# account label} other {# account labels}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#. placeholder {0}: profile.followersCount ?? 0 +#: src/screens/Profile/ProfileFollowers.tsx:33 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount ?? 0 +#: src/screens/Profile/ProfileFollows.tsx:33 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#. placeholder {0}: item.count +#: src/components/contacts/screens/ViewMatches.tsx:268 +msgid "{0, plural, one {# friend found!} other {# friends found!}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:157 +msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:164 +msgid "{0, plural, one {# label applied} other {# labels applied}}" +msgstr "" + +#. placeholder {0}: likeCount ?? 0 +#: src/screens/Post/PostLikedBy.tsx:34 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#. placeholder {0}: convo.details.memberCount +#: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 +msgid "{0, plural, one {# member} other {# members}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:224 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#. placeholder {0}: reactions.length +#. placeholder {1}: groupedReactions.map(g => g.value).join(' ') +#: src/components/dms/MessageItem.tsx:371 +msgid "{0, plural, one {# person} other {# people}} reacted – {1}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostQuotes.tsx:34 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostRepostedBy.tsx:34 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#. placeholder {0}: numUnreadMessages.numUnread ?? 0 +#. placeholder {0}: numUnreadNotifications ?? 0 +#: src/view/shell/bottom-bar/BottomBar.tsx:251 +#: src/view/shell/bottom-bar/BottomBar.tsx:283 +#: src/view/shell/Drawer.tsx:557 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes. +#. placeholder {0}: view.readingTime +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:251 +msgid "{0, plural, one {#m} other {#m}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#. placeholder {0}: draft.meta.replyCount +#: src/view/com/composer/drafts/DraftItem.tsx:143 +msgid "{0, plural, one {1 more post} other {# more posts}}" +msgstr "" + +#. placeholder {0}: profile.followersCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#. placeholder {0}: profile.postsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#. placeholder {0}: starterPack.joinedAllTimeCount || 0 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +msgid "{0, plural, other {# people have}} joined Bluesky via this starter pack!" +msgstr "" + +#. placeholder {0}: starterPack.list.listItemCount - 4 +#: src/components/dialogs/StarterPackDialog.tsx:362 +msgid "{0, plural, other {+# more}}" +msgstr "" + +#. placeholder {0}: aaRegionConfig.minAccessAge +#: src/screens/Signup/StepInfo/index.tsx:314 +msgid "{0, plural, other {You must be # years of age or older to create an account in your region.}}" +msgstr "" + +#. placeholder {0}: i18n.date(d, {timeStyle: ts}) +#. placeholder {1}: i18n.date(d, {dateStyle: 'medium'}) +#: src/lib/strings/time.ts:15 +msgctxt "date and time formatted like this: [time] · [date]" +msgid "{0} · {1}" +msgstr "" + +#. placeholder {0}: desc.name +#: src/components/moderation/ContentHider.tsx:98 +msgid "{0} (Account)" +msgstr "" + +#. Pattern: {wordValue} in tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:495 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:484 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 +msgid "{0} added to chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +msgid "{0} and {1} added to chat" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:724 +msgid "{0} is blocking you" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle) +#: src/features/liveNow/components/LiveStatusDialog.tsx:84 +msgid "{0} is live" +msgstr "" + +#. placeholder {0}: createFullHandle(draftValue, state.userDomain) +#: src/screens/Signup/StepHandle/index.tsx:211 +msgid "{0} is not available" +msgstr "" + +#. placeholder {0}: codeToLanguageName( expectedSourceLanguage, langPrefs.appLanguage, ) +#: src/lib/translation/index.tsx:314 +msgid "{0} is not supported by your device." +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:83 +msgid "{0} joined" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:84 +msgid "{0} joined the group" +msgstr "" + +#. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK) +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "{0} joined this week" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:96 +msgid "{0} left" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:97 +msgid "{0} left the group" +msgstr "" + +#. placeholder {0}: formatTime(currentTime) +#. placeholder {1}: formatTime(duration) +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#. placeholder {0}: state.name?.length +#: src/screens/StarterPack/Wizard/StepDetails.tsx:56 +msgid "{0} out of 50" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(memberSender) +#. placeholder {1}: reaction.value +#: src/components/dms/MessageItem.tsx:366 +msgid "{0} reacted {1}" +msgstr "" + +#. Accessibility hint for the bottom bar chat icon when the number of unread messages exceeds the cap, with the + symbol already included – for example, 99+ unread items +#. placeholder {0}: numUnreadMessages.numUnread +#: src/view/shell/bottom-bar/BottomBar.tsx:246 +msgid "{0} unread items" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:57 +msgid "{0} was added" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:58 +msgid "{0} was added to the group" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:70 +msgid "{0} was removed" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:71 +msgid "{0} was removed from the group" +msgstr "" + +#. List formatting: {0}, {1}, {2} +#. placeholder {0}: link(lang) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:113 +msgid "{0}, " +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 +msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {2}: feed.likeCount || 0 +#: src/view/com/feeds/FeedSourceCard.tsx:189 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#: src/view/com/feeds/FeedSourceCard.tsx:192 +msgid "{0}, a list by {1}" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 +msgid "{0}'s avatar" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/screens/Messages/JoinRequest.tsx:139 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {0}: preview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: joinLinkPreview.memberLimit +#. placeholder {2}: preview.memberLimit +#: src/components/dms/ChatInvite/Card.tsx:62 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. Badge showing the current image position out of the total number of images in a gallery. +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:532 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" + +#. Displayed when the number of requests exceeds the cap – for example, 99+ requests +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:55 +msgid "{0}+" +msgstr "" + +#. Displayed when the number of requests exceeds the cap +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:30 +msgid "{0}+ requests" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:38 +msgid "{count, plural, one {# chat update} other {# chat updates}}" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#: src/screens/Messages/components/InboxRequests.tsx:34 +msgid "{count, plural, one {# request} other {# requests}}" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:484 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:427 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + +#: src/components/dms/DateDivider.tsx:60 +msgid "{date} at {time}" +msgstr "" + +#: src/lib/generate-starterpack.ts:104 +#: src/screens/StarterPack/Wizard/index.tsx:189 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:219 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:225 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:170 +msgid "{filterCount, plural, one {+# filter} other {+# filters}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:361 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:395 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:304 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:500 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:473 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:328 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:524 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:419 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:448 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:373 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:350 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:407 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:316 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:512 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:485 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:340 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:431 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:460 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:354 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:388 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:297 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:493 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:466 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:321 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:517 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:412 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:441 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:359 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:349 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:393 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:302 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:498 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:471 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:326 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:522 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:417 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:446 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:1158 +msgid "{handle} can’t be added" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:459 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:1119 +msgid "{handle} can’t be messaged" +msgstr "" + +#: src/features/liveNow/utils.ts:40 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/features/liveNow/utils.ts:44 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/RequestStatus.tsx:69 +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:219 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:102 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:138 +msgid "{MAX_ALT_TEXT, plural, other {Alt text must be less than # characters.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:380 +msgid "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:329 +msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 +msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" +msgstr "" + +#. The number of group chat members out of the total number of permitted users. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" +msgstr "" + +#: src/features/liveNow/utils.ts:35 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:65 +msgid "{name} reacted {0} to {target}" +msgstr "" + +#. When the last message in a group chat came from someone other than you. +#: src/components/dms/getMessageInfo.ts:89 +msgid "{name}: {message}" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:76 +msgid "{name}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "{name}'s starter pack" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:457 +msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:115 +msgid "{profileName} joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:112 +msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 +msgid "{rank}." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 +msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:811 +msgid "{replierDisplayName} replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:810 +msgid "{replierDisplayName} replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:808 +msgid "{replierDisplayName} replied to you" +msgstr "" + +#. The number of requests to join a group chat. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 +msgid "{requestCount, plural, one {# request} other {# requests}}" +msgstr "" + +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 +msgid "{requestCount}+ requests" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:62 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:71 +msgid "{userName}'s verifications" +msgstr "" + +#. Number of images beyond the first 3 +#. placeholder {0}: labels.length +#. placeholder {0}: totalNumber - 3 +#: src/components/moderation/PostAlerts.tsx:163 +#: src/view/com/composer/ComposerReplyTo.tsx:278 +msgid "+{0}" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:258 +msgid "+{computedTotal}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:569 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[2]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) +#. placeholder {1}: profile?.followersCount || 0 +#: src/view/shell/Drawer.tsx:155 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) +#. placeholder {1}: profile?.followsCount || 0 +#: src/view/shell/Drawer.tsx:166 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.quoteCount) +#. placeholder {1}: post.quoteCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 +msgid "<0>{0} {1, plural, one {quote} other {quotes}}" +msgstr "" + +#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.repostCount) +#. placeholder {1}: post.repostCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 +msgid "<0>{0} {1, plural, one {repost} other {reposts}}" +msgstr "" + +#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.bookmarkCount) +#. placeholder {1}: post.bookmarkCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 +msgid "<0>{0} {1, plural, one {save} other {saves}}" +msgstr "" + +#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(likeCount) +#: src/screens/PostThread/components/LikesStat.tsx:44 +msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[1]) +#: src/screens/StarterPack/Wizard/index.tsx:503 +#: src/screens/StarterPack/Wizard/index.tsx:557 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:550 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/WhoCanReply.tsx:353 +msgid "<0>{0} members" +msgstr "" + +#. Text identifying the person who added you to a group chat +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 +msgid "<0>{displayName}<1/><2> added you" +msgstr "" + +#: src/screens/Hashtag.tsx:230 +#: src/screens/Search/SearchResults.tsx:412 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:250 +msgid "<0>Tap here to update your location with GPS." +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#: src/screens/StarterPack/Wizard/index.tsx:494 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/lib/strings/handles.ts:38 +#: src/screens/Profile/Header/Handle.tsx:58 +msgid "⚠Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:202 +#: src/components/dialogs/MutedWords.tsx:551 +#: src/components/dialogs/MutedWords.tsx:554 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:436 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:241 +#: src/components/dialogs/MutedWords.tsx:565 +#: src/components/dialogs/MutedWords.tsx:568 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:226 +#: src/components/dialogs/MutedWords.tsx:558 +#: src/components/dialogs/MutedWords.tsx:561 +msgid "7 days" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 +msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/components/dms/getReactionInfo.ts:53 +msgid "a message" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:102 +msgid "A network error occurred. Please check your internet connection" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:99 +#: src/components/contacts/screens/VerifyNumber.tsx:155 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 +msgid "A network error occurred. Please check your internet connection." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:143 +msgid "A new code has been sent" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "A new form of verification" +msgstr "" + +#: src/components/dms/MessageItem.tsx:821 +msgid "A reply to a message sent before you joined" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 +msgid "A screenshot of a post from @esb.lol, showing the user is currently livestreaming content on Twitch. The post reads: \"Hello! I'm live on Twitch, and I'm testing Bluesky's latest feature too!\"" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:121 +msgid "A screenshot of a post with a new button next to the share button that allows you to save the post to your bookmarks. The post is from @jcsalterego.bsky.social and reads \"inventing a saturday that immediately follows monday\"." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:114 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:98 +msgid "A screenshot of the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now!!!\"." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:483 +#: src/screens/Settings/AboutSettings.tsx:85 +#: src/screens/Settings/Settings.tsx:264 +#: src/screens/Settings/Settings.tsx:267 +msgid "About" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:100 +msgid "Abusive or discriminatory behavior" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:287 +msgid "Accept" +msgstr "" + +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 +msgid "Accept chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 +msgid "Accept Request" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:460 +msgid "Accept this language suggestion" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:119 +msgid "Access requested! The group owner will review your request." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:45 +#: src/screens/Settings/Settings.tsx:234 +#: src/screens/Settings/Settings.tsx:237 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:390 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/screens/Settings/AccountSettings.tsx:54 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: src/view/com/profile/ProfileMenu.tsx:182 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:198 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/lib/strings/errors.ts:33 +msgid "Account has been suspended" +msgstr "" + +#: src/lib/strings/errors.ts:36 +msgid "Account is deactivated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 +#: src/view/com/profile/ProfileMenu.tsx:152 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:123 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:646 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:681 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:87 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:169 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:213 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:139 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:100 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:214 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:337 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:388 +#: src/components/dms/AddMembersFlow.tsx:410 +msgid "Add" +msgstr "" + +#. placeholder {0}: 8 - items.length +#: src/screens/StarterPack/Wizard/index.tsx:605 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:63 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:103 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +msgid "Add a content warning" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:114 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:64 +#: src/screens/ProfileList/AboutSection.tsx:82 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/screens/Deactivated.tsx:184 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/GifAltText.tsx:217 +#: src/view/com/composer/photos/Gallery.tsx:201 +#: src/view/com/composer/photos/Gallery.tsx:236 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:115 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:584 +#: src/screens/Settings/Settings.tsx:587 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1607 +msgid "Add another post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2273 +msgid "Add another post to thread" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 +msgid "Add another search filter" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:170 +msgid "Add automation label to account" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:31 +msgid "Add emoji reaction" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 +msgid "Add filter" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:492 +msgid "Add group chat members" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:223 +msgid "Add image" +msgstr "" + +#. Accessibility label for button in composer to add images, a video, or a GIF to a post +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Add media to post" +msgstr "" + +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:72 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:106 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:125 +msgid "Add members" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 +msgid "Add more details (optional)" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:218 +#: src/screens/Settings/LanguageSettings.tsx:223 +msgid "Add more languages…" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:330 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:120 +msgid "Add muted words and tags" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/ProfileList/AboutSection.tsx:72 +#: src/screens/ProfileList/AboutSection.tsx:90 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:81 +msgid "Add people to list" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:56 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:100 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:538 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:40 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:419 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:350 +#: src/view/com/profile/ProfileMenu.tsx:353 +msgid "Add to lists" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:121 +msgid "Add to saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:184 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/com/profile/ProfileMenu.tsx:344 +msgid "Add to starter packs" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:178 +msgid "Add user to list" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:297 +msgid "Add your birthdate" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) +#: src/screens/Messages/ConversationSettings/Member.tsx:109 +msgid "Added by {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:114 +msgid "Added by invite link" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:125 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:221 +msgid "Added to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:274 +msgid "Added to starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:225 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:230 +msgid "Adding members to list..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:116 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:546 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Admin" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:155 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:66 +msgid "Adult content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:129 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:149 +#: src/view/com/composer/labels/LabelsBtn.tsx:123 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:412 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:134 +#: src/view/com/composer/labels/LabelsBtn.tsx:192 +msgid "Adult Content labels" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76 +msgid "Adult sexual abuse content" +msgstr "" + +#: src/screens/Moderation/index.tsx:457 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:72 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:82 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:185 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:449 +msgid "Age assurance only takes a few minutes." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 +msgid "alice@example.com" +msgstr "" + +#. the default tab in the interests tab bar +#: src/components/dms/ReactionsDialog.tsx:292 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 +#: src/view/screens/Notifications.tsx:86 +msgid "All" +msgstr "" + +#. Tab label showing the total count of reactions on a chat message. +#. placeholder {0}: tab.count +#: src/components/dms/ReactionsDialog.tsx:389 +msgid "All {0}" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:400 +msgid "All accounts have been followed!" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:144 +msgid "All friends followed!" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:255 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 +msgid "All languages" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:189 +msgid "All languages will be shown in your feeds." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:245 +msgid "All of these words" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "All posts" +msgstr "" + +#: src/view/screens/Feeds.tsx:700 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451 +msgid "Allow anyone to reply" +msgstr "" + +#: src/screens/Messages/Settings.tsx:156 +#: src/screens/Messages/Settings.tsx:171 +msgid "Allow direct messages from" +msgstr "" + +#: src/screens/Messages/Settings.tsx:202 +#: src/screens/Messages/Settings.tsx:224 +msgid "Allow group chat invites from" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:128 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:134 +msgid "Allow location access" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:53 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504 +msgid "Allow people you follow to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518 +msgid "Allow people you mention to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:636 +msgid "Allow quote posts" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:598 +msgid "Allow users in {0} to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490 +msgid "Allow your followers to reply" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:201 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:237 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:243 +msgid "Already have a code?" +msgstr "" + +#: src/components/WelcomeModal.tsx:189 +msgid "Already have an account?" +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Login/ChooseAccountForm.tsx:44 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:76 +#: src/components/images/AutoSizedImage.tsx:205 +#: src/components/images/Gallery/index.tsx:596 +#: src/components/images/ImageLayoutGridItem.tsx:135 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:211 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:55 +#: src/view/com/composer/GifAltText.tsx:160 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128 +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:59 +#: src/view/com/composer/videos/SubtitleDialog.tsx:110 +#: src/view/com/composer/videos/SubtitleDialog.tsx:114 +msgid "Alt text" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:83 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:105 +#: src/view/com/composer/photos/Gallery.tsx:130 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#. placeholder {0}: i18n.number(MAX_ALT_TEXT) +#: src/view/com/composer/GifAltText.tsx:185 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:149 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#. placeholder {0}: currentAccount?.email || '(no email)' +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:94 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#. Accessibility label for the dialog shown when the GIF picker hits an unexpected runtime error and falls back to its error boundary. +#: src/components/dialogs/LanguageSelectDialog.tsx:344 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:15 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:433 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:223 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:69 +msgid "An error occurred while fetching suggested accounts." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:183 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/ViewMatches.tsx:243 +msgid "An error occurred while hiding suggestion. {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:581 +msgid "An error occurred while loading your lists :/" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:104 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:54 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:82 +#: src/screens/StarterPack/StarterPackScreen.tsx:359 +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:485 +msgid "An error occurred while uploading the video. {message}" +msgstr "" + +#: src/view/com/composer/state/video.ts:477 +msgid "An error occurred while uploading the video. Please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/PhoneInput.tsx:120 +#: src/components/contacts/screens/VerifyNumber.tsx:131 +#: src/components/contacts/screens/VerifyNumber.tsx:184 +msgid "An error occurred. {0}" +msgstr "" + +#: src/components/contacts/components/HeroImage.tsx:28 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:79 +msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 +msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:111 +msgid "An illustration of the Bluesky app with a paper airplane flying out of it, representing inviting friends" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:86 +#: src/components/verification/VerifierDialog.tsx:88 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:198 +msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 +msgid "An issue occurred starting the chat, please try again." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:52 +#: src/components/ProfileCard.tsx:510 +#: src/components/ProfileCard.tsx:532 +#: src/view/com/notifications/NotificationFeedItem.tsx:798 +#: src/view/com/notifications/NotificationFeedItem.tsx:820 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +#: src/lib/moderation/useModerationCauseDescription.ts:145 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:374 +msgid "and" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:88 +msgid "Animal sexual abuse" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:130 +msgid "Animal welfare" +msgstr "" + +#: src/lib/interests.ts:52 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:85 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:39 +msgid "Announcing verification on Bluesky" +msgstr "" + +#. Placeholder text for a date picker +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 +msgid "Any date" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 +msgid "Anyone" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135 +msgid "Anyone can interact" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:356 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +msgid "Anyone can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +msgid "Anyone can request to join" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:112 +#: src/screens/Settings/ActivityPrivacySettings.tsx:117 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:478 +msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." +msgstr "" + +#: src/Navigation.tsx:491 +#: src/screens/Settings/AppIconSettings/index.tsx:65 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:107 +#: src/screens/Settings/LanguageSettings.tsx:123 +msgid "App language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:358 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:169 +#: src/components/moderation/LabelsOnMeDialog.tsx:172 +#: src/components/moderation/ModerationDetailsDialog.tsx:223 +msgid "Appeal" +msgstr "" + +#. placeholder {0}: strings.name +#: src/components/moderation/AppealForm.tsx:93 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:159 +msgid "Appeal label" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 +msgid "Appeal livestream suspension" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:83 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 +#: src/screens/Messages/components/ChatDisabled.tsx:125 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:114 +#: src/screens/Takendown.tsx:140 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:117 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:76 +#: src/screens/Messages/components/ChatDisabled.tsx:79 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:135 +msgid "Appeal this decision" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:219 +msgid "Appeal this label" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 +#: src/screens/Settings/Settings.tsx:226 +#: src/screens/Settings/Settings.tsx:229 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:52 +#: src/screens/Home/NoFeedsPinned.tsx:94 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:515 +#: src/screens/Settings/Settings.tsx:517 +msgid "Apply Pull Request" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt, 'medium') +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:327 +msgid "Are you really, really sure?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#. placeholder {1}: link(languages[1]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 +msgid "Are you searching for posts in {0} or {1}?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 +msgid "Are you searching for posts in {0}?" +msgstr "" + +#. List formatting: {0}, {1}, or {2} +#. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) +#. placeholder {1}: link(last) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 +msgid "Are you searching for posts in {0}or {1}?" +msgstr "" + +#. placeholder {0}: appPassword.name +#: src/screens/Settings/AppPasswords.tsx:210 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:684 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:99 +#: src/screens/Profile/Header/EditProfileDialog.tsx:77 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:128 +#: src/screens/Messages/ConversationSettings/prompts.tsx:152 +msgid "Are you sure you want to leave {groupName}?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:57 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:56 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants." +msgstr "" + +#: src/components/FeedCard.tsx:374 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:116 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:452 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:349 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/lib/interests.ts:53 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:167 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:209 +msgid "At least 8 characters" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:338 +msgid "AT Protocol FAQ" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#: src/components/BotAccountAlert.tsx:32 +#: src/components/BotBadge.tsx:65 +msgid "Automated account" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:165 +#: src/screens/Login/components/HostingProviderDialog.tsx:167 +msgid "Automatic" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:155 +#: src/screens/Settings/AccountSettings.tsx:158 +msgid "Automation label" +msgstr "" + +#: src/Navigation.tsx:422 +#: src/screens/Settings/AutomationLabelSettings.tsx:103 +msgid "Automation Label" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:118 +#: src/screens/Settings/ContentAndMediaSettings.tsx:124 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:69 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:88 +msgid "Available" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:359 +#: src/components/dms/AddMembersFlow.tsx:527 +#: src/components/dms/AddMembersFlow.tsx:533 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 +#: src/components/moderation/AppealForm.tsx:145 +#: src/components/moderation/AppealForm.tsx:146 +#: src/screens/Login/ChooseAccountForm.tsx:96 +#: src/screens/Login/ChooseAccountForm.tsx:100 +#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:124 +#: src/screens/Login/LoginForm.tsx:511 +#: src/screens/Login/LoginForm.tsx:516 +#: src/screens/Login/SetNewPasswordForm.tsx:157 +#: src/screens/Login/SetNewPasswordForm.tsx:163 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:276 +#: src/screens/Messages/components/InviteLinkDialog.tsx:304 +#: src/screens/Messages/Inbox.tsx:233 +#: src/screens/Profile/Header/Shell.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:273 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:282 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:315 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:87 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:93 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:232 +msgid "Back to Chats" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:216 +msgid "Banned activities or security violations" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:227 +msgid "Banned user returning" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:184 +msgid "Based on your device's location, we think you're in <0>{geolocationString}." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236 +msgid "Based on your device's location, we think you're in <0>{region}." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:194 +msgid "Based on your network, we think you're in <0>{geolocationString}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 +msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/view/screens/Lists.tsx:35 +#: src/view/screens/ModerationModlists.tsx:35 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:72 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:260 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:56 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:155 +#: src/components/dms/MessageProfileButton.tsx:60 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:319 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:313 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 +msgid "Beta Feature" +msgstr "" + +#: src/Navigation.tsx:414 +#: src/screens/Settings/BetaFeaturesSettings.tsx:108 +#: src/screens/Settings/Settings.tsx:248 +#: src/screens/Settings/Settings.tsx:251 +msgid "Beta features" +msgstr "" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:144 +msgctxt "web" +msgid "Beta features may be unstable. Some changes may require reloading the app." +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:149 +msgctxt "native" +msgid "Beta features may be unstable. Some changes may require restarting the app." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:163 +msgid "Birthdate" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:145 +msgid "Birthday" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +msgid "Block" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 +msgid "Block {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/screens/Messages/components/RequestButtons.tsx:154 +#: src/screens/Messages/components/RequestButtons.tsx:156 +#: src/view/com/profile/ProfileMenu.tsx:464 +#: src/view/com/profile/ProfileMenu.tsx:471 +msgid "Block account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:148 +msgid "Block account?" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:91 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:94 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:148 +msgid "Block and delete" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:167 +msgctxt "button" +msgid "Block and leave" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:119 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 +msgid "Block or report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:114 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:221 +#: src/components/dms/AfterReportConversationDialog.tsx:224 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 +msgid "Block user" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:185 +msgid "Block user and/or delete this conversation" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:212 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:329 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:194 +#: src/view/screens/ModerationBlockedAccounts.tsx:95 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:163 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:181 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:204 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:116 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:157 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:176 +msgid "Blog" +msgstr "" + +#. Advanced search: Examples of hashtags +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:17 +msgid "bloomscrolling booksky" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:144 +#: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classic™" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:235 +msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:214 +#: src/screens/Login/components/HostingProviderDialog.tsx:236 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:162 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:115 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:43 +msgid "Bluesky is more fun with friends" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 +msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:315 +msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "" + +#: src/screens/Takendown.tsx:213 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:570 +msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:100 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:97 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:100 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:54 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/lib/interests.ts:54 +msgid "Books" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 +msgid "Breaking site rules" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:167 +#: src/view/com/feeds/ProfileFeedgens.tsx:168 +msgid "Browse custom feeds" +msgstr "" + +#: src/components/FeedInterstitials.tsx:535 +msgid "Browse more accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:665 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:646 +#: src/components/FeedInterstitials.tsx:649 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:674 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:104 +#: src/screens/Home/NoFeedsPinned.tsx:110 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:58 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:66 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:75 +msgid "Browse starter pack {displayName}" +msgstr "" + +#. placeholder {0}: trend.displayName +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:112 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:171 +msgid "Business" +msgstr "" + +#: src/screens/Bookmarks.tsx:295 +msgid "Button to go back to the home timeline" +msgstr "" + +#. The owner (creator) of a group chat. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile( joinLinkPreview.owner, moderationOpts, ).ui('displayName'), ) +#. placeholder {0}: sanitizeHandle(handle, '@') +#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@') +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:177 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 +msgid "By {0}" +msgstr "" + +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') +#: src/components/intents/GroupChatJoinDialog.tsx:379 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 +msgid "By <0>{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:84 +msgid "By <0>{ownerDisplayName}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:297 +msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:76 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:43 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:63 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:111 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 +msgid "Camera" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 +#: src/components/contacts/screens/GetContacts.tsx:292 +#: src/components/contacts/screens/GetContacts.tsx:297 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128 +#: src/components/dialogs/InAppBrowserConsent.tsx:99 +#: src/components/dialogs/InAppBrowserConsent.tsx:105 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:291 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:299 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 +#: src/components/Menu/index.tsx:373 +#: src/components/moderation/BlockDialog.tsx:204 +#: src/components/PostControls/RepostButton.tsx:210 +#: src/components/Prompt.tsx:152 +#: src/components/Prompt.tsx:154 +#: src/components/SendErrorReportDialog.tsx:98 +#: src/components/SendErrorReportDialog.tsx:102 +#: src/features/liveNow/components/GoLiveDialog.tsx:254 +#: src/features/liveNow/components/GoLiveDialog.tsx:260 +#: src/lib/media/picker.tsx:38 +#: src/screens/Deactivated.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:108 +#: src/screens/Messages/ConversationSettings/prompts.tsx:132 +#: src/screens/Messages/ConversationSettings/prompts.tsx:156 +#: src/screens/Messages/ConversationSettings/prompts.tsx:180 +#: src/screens/Profile/Header/EditProfileDialog.tsx:215 +#: src/screens/Profile/Header/EditProfileDialog.tsx:223 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:202 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:209 +#: src/screens/Settings/AppIconSettings/index.tsx:42 +#: src/screens/Settings/AppIconSettings/index.tsx:228 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:143 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:152 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:80 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:87 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:248 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:254 +#: src/screens/Settings/Settings.tsx:309 +#: src/screens/Takendown.tsx:102 +#: src/screens/Takendown.tsx:105 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:44 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:53 +#: src/view/shell/desktop/LeftNav.tsx:228 +msgid "Cancel" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:205 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:144 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Messages/components/MessageInputReply.tsx:83 +msgid "Cancel reply" +msgstr "" + +#: src/screens/Search/Shell.tsx:592 +msgid "Cancel search" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 +msgid "Cancels signing in so you can check your username" +msgstr "" + +#: src/components/PostControls/index.tsx:108 +#: src/components/PostControls/index.tsx:138 +#: src/components/PostControls/index.tsx:166 +#: src/state/shell/composer/index.tsx:105 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:156 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:57 +msgid "Captions & alt text" +msgstr "" + +#: src/components/images/Gallery/index.tsx:273 +msgid "carousel" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Cashtag {tag}" +msgstr "" + +#. Advanced search: Example of an “all of these words” search. Paired with “cows pigs”. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 +msgid "cats dogs" +msgstr "" + +#: src/components/Post/Translated/index.tsx:439 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:37 +msgid "Change app icon" +msgstr "" + +#. placeholder {0}: icon.name +#. placeholder {0}: next.name +#: src/screens/Settings/AppIconSettings/index.tsx:36 +#: src/screens/Settings/AppIconSettings/index.tsx:224 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:41 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:96 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:100 +msgid "Change Handle" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:644 +msgid "Change hosting provider" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:445 +msgid "Change moderation service" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:262 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:268 +msgid "Change password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:165 +msgid "Change password dialog" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:312 +msgid "Change report category" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:390 +msgid "Change report reason" +msgstr "" + +#: src/components/Post/Translated/index.tsx:424 +msgid "Change the source language" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:58 +msgid "Change your password" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:219 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:50 +#: src/components/forms/HostingProvider.tsx:70 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:179 +msgid "Changes saved" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:164 +msgid "Changes to the starter pack will not be reflected in the list after creation. The list will be an independent copy." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/Navigation.tsx:509 +#: src/view/shell/bottom-bar/BottomBar.tsx:242 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:108 +msgid "Chat ended" +msgstr "" + +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:269 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:104 +msgid "Chat locked" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:146 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:137 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:206 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 +msgid "Chat not found." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 +msgid "Chat options" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:290 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:529 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:62 +#: src/screens/Messages/Inbox.tsx:97 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 +#: src/screens/Messages/Settings.tsx:48 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:147 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:115 +msgid "Chat title changed" +msgstr "" + +#. placeholder {0}: data.newName +#: src/components/dms/getSystemMessageInfo.ts:114 +msgid "Chat title changed to {0}" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:106 +msgid "Chat unlocked" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:208 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 +msgid "Chats" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:233 +msgid "Check <0>{currentEmail} for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:182 +msgid "Check back later!" +msgstr "" + +#: src/screens/SignupQueued.tsx:79 +#: src/screens/SignupQueued.tsx:83 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:463 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:161 +msgid "Child safety" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:165 +msgid "Child Sexual Abuse Material (CSAM)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:401 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:205 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 +msgid "Choose for me" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:199 +msgid "Choose languages" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Choose People" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:75 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:136 +msgid "Choose post languages" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +msgid "Choose who can join this group chat and how." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:57 +msgid "Choose who to invite" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:134 +#: src/screens/Login/components/HostingProviderDialog.tsx:155 +msgid "Choose your hosting provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:726 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:271 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:201 +msgid "Choose your username" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.native.tsx:73 +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.tsx:110 +#: src/screens/Search/components/AdvancedSearchDialog/ClearableInput.tsx:59 +msgid "Clear" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:70 +msgid "Clear date" +msgstr "" + +#. Accessibility label for the X button inside the search input that clears the typed query and returns to the trending feed. +#: src/features/gifPicker/components/GifPickerHeader.tsx:67 +msgid "Clear GIF search" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +#: src/screens/Settings/AboutSettings.tsx:138 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:87 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:88 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:35 +msgid "click here" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +msgid "Click here to add people to this group chat" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +msgid "Click here to create or manage an invite link for this group chat" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:327 +msgid "Click here to delete your account" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:318 +msgid "Click here to log out" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:263 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:272 +msgid "Click here to resend the email" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:119 +#: src/ageAssurance/components/NoAccessScreen.tsx:294 +msgid "Click here to update your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 +msgid "Click here to update your email" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +msgid "Click here to view the invite link for this group chat" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:56 +msgid "Click to open tag menu for {0}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:643 +msgid "Click to retry failed message" +msgstr "" + +#. Visible label of the button that dismisses the GIF picker error dialog. +#: src/ageAssurance/components/RedirectOverlay.tsx:265 +#: src/ageAssurance/components/RedirectOverlay.tsx:271 +#: src/ageAssurance/components/RedirectOverlay.tsx:321 +#: src/ageAssurance/components/RedirectOverlay.tsx:327 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:174 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:180 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 +#: src/components/AltBadgeWithDialog.tsx:88 +#: src/components/dialogs/LanguageSelectDialog.tsx:359 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:147 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200 +#: src/components/dialogs/SearchablePeopleList.tsx:340 +#: src/components/dialogs/StarterPackDialog.tsx:187 +#: src/components/dms/AddMembersFlow.tsx:384 +#: src/components/dms/AfterReportConversationDialog.tsx:91 +#: src/components/dms/AfterReportConversationDialog.tsx:96 +#: src/components/dms/AfterReportConversationDialog.tsx:247 +#: src/components/dms/AfterReportConversationDialog.tsx:252 +#: src/components/dms/AfterReportDialog.tsx:94 +#: src/components/dms/AfterReportDialog.tsx:99 +#: src/components/dms/AfterReportDialog.tsx:212 +#: src/components/dms/AfterReportDialog.tsx:217 +#: src/components/dms/EmojiPopup.android.tsx:59 +#: src/components/dms/InitiateChatFlow.tsx:670 +#: src/components/intents/GroupChatJoinDialog.tsx:246 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +#: src/components/NewskieDialog.tsx:169 +#: src/components/NewskieDialog.tsx:175 +#: src/components/ProgressGuide/FollowDialog.tsx:462 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128 +#: src/components/verification/VerificationsDialog.tsx:146 +#: src/components/verification/VerifierDialog.tsx:147 +#: src/components/WhoCanReply.tsx:236 +#: src/components/WhoCanReply.tsx:243 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45 +#: src/features/liveNow/components/EditLiveDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:524 +#: src/screens/Messages/components/InviteLinkDialog.tsx:529 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:288 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:293 +#: src/view/com/feeds/MissingFeed.tsx:211 +#: src/view/com/feeds/MissingFeed.tsx:218 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:30 +msgid "Close alert" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + +#. Accessibility label for the button that dismisses the GIF picker error dialog. +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:223 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:229 +#: src/components/dialogs/LanguageSelectDialog.tsx:221 +#: src/components/dialogs/LanguageSelectDialog.tsx:322 +#: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:102 +#: src/components/moderation/BlockDialog.tsx:201 +#: src/components/verification/VerificationsDialog.tsx:138 +#: src/components/verification/VerifierDialog.tsx:140 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:127 +msgid "Close drawer menu" +msgstr "" + +#: src/components/Lightbox/chrome/Header.tsx:47 +msgid "Close image" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:73 +#: src/components/Lightbox/Lightbox.web.tsx:334 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 +msgid "Close menu" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:239 +#: src/components/intents/GroupChatJoinDialog.tsx:240 +#: src/components/intents/GroupChatJoinDialog.tsx:276 +#: src/components/intents/GroupChatJoinDialog.tsx:277 +#: src/components/Menu/index.tsx:367 +msgid "Close this dialog" +msgstr "" + +#: src/components/WelcomeModal.tsx:214 +msgid "Close welcome modal" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1829 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:611 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:949 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:68 +msgid "Color" +msgstr "" + +#: src/components/dialogs/Embed.tsx:150 +#: src/screens/Settings/AppearanceSettings.tsx:79 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:147 +msgid "Color theme" +msgstr "" + +#: src/lib/interests.ts:55 +msgid "Comedy" +msgstr "" + +#: src/lib/interests.ts:56 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 +#: src/Navigation.tsx:348 +#: src/view/screens/CommunityGuidelines.tsx:28 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:329 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:203 +msgid "Complete the challenge" +msgstr "" + +#: src/lib/hotkeys/index.tsx:66 +#: src/view/com/feeds/ComposerPrompt.tsx:147 +#: src/view/shell/desktop/LeftNav.tsx:587 +msgid "Compose new post" +msgstr "" + +#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 +#: src/view/com/composer/Composer.tsx:1705 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:63 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2677 +msgid "Compressing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2679 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:254 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:211 +#: src/components/Prompt.tsx:214 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:186 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:189 +msgid "Confirm" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 +#: src/screens/Login/LoginForm.tsx:442 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:187 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:191 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:244 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:145 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:151 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:132 +msgid "Connecting to service..." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:542 +msgid "Connecting to service…" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:138 +#: src/screens/Login/LoginForm.tsx:548 +msgid "Connecting…" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Connection issue" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:404 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:128 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:31 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:109 +msgid "Contact our support team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 +msgid "Contact support" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 +#: src/screens/Settings/FindContactsSettings.tsx:164 +msgid "Contact sync is not available on this device, as the app is unable to access your contacts." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:526 +msgid "Contacts imported" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:499 +msgid "Contacts removed" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:53 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:206 +#: src/screens/Settings/Settings.tsx:209 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:362 +msgid "Content filters" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:177 +msgid "Content languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:83 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:192 +msgid "Content promoting or depicting self-harm" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/components/moderation/ScreenHider.tsx:98 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:46 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:61 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:93 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 +#: src/screens/Onboarding/StepInterests/index.tsx:93 +#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 +msgid "Continue" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:134 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 +msgid "Continue signing in" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:64 +msgid "Continue thread..." +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:598 +msgid "Continue to group name" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:90 +#: src/screens/Onboarding/StepProfile/index.tsx:298 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:63 +msgid "Conversation" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:321 +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:172 +#: src/components/dms/AfterReportConversationDialog.tsx:179 +msgctxt "toast" +msgid "Conversation left" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:169 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/screens/Search/Shell.tsx:512 +msgid "Copied link to clipboard" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:97 +#: src/components/PostControls/DiscoverDebug.tsx:36 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 +#: src/lib/sharing.ts:24 +#: src/lib/sharing.ts:42 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:197 +#: src/screens/Messages/components/CopyTextButton.tsx:71 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:145 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:256 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:266 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:501 +#: src/view/com/profile/ProfileMenu.tsx:504 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:186 +#: src/components/dialogs/Embed.tsx:202 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:504 +#: src/view/com/profile/ProfileMenu.tsx:510 +#: src/view/com/profile/ProfileMenu.tsx:513 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:436 +msgid "Copy host" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copy invite link" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:91 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:644 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:122 +msgid "Copy Link" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:164 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:290 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:637 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:198 +#: src/components/dms/MessageContextMenu.tsx:202 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:184 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:457 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 +#: src/Navigation.tsx:353 +#: src/view/screens/CopyrightPolicy.tsx:25 +msgid "Copyright Policy" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:80 +msgid "Could not capture QR code" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:134 +msgid "Could not connect to feed service" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:121 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:75 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 +msgid "Could not fetch post" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:183 +msgid "Could not find profile" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 +msgid "Could not follow all matches - please check your network connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 +msgid "Could not follow all matches. {0}" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:158 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 +msgid "Could not leave chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:282 +msgid "Could not leave chat." +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:72 +msgid "Could not load feed" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:27 +#: src/screens/ProfileList/index.tsx:80 +#: src/screens/ProfileList/index.tsx:102 +msgid "Could not load list" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 +msgid "Could not mute chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:308 +msgid "Could not remove member." +msgstr "" + +#. placeholder {0}: cleanError(error) +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:61 +msgid "Could not share – please try again" +msgstr "" + +#: src/state/queries/notifications/settings.ts:124 +msgid "Could not update notification settings" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/GetContacts.tsx:171 +msgid "Could not upload contacts. {0}" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:165 +msgid "Could not upload contacts. You need to re-verify your phone number to proceed" +msgstr "" + +#. Title of the error screen shown when the GIF provider request fails. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:51 +msgid "Couldn’t load GIFs" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:80 +msgid "Country code" +msgstr "" + +#. Advanced search: Example of a “none of these words” search. Paired with “cats dogs”. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 +msgid "cows pigs" +msgstr "" + +#. Text on button to create a new starter pack +#. Text on button to create a new starter pack +#: src/components/dialogs/StarterPackDialog.tsx:113 +#: src/components/dialogs/StarterPackDialog.tsx:210 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +msgid "Create" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:166 +#: src/view/com/lists/ProfileLists.tsx:167 +msgid "Create a list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:620 +msgid "Create a list from this starter pack" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 +msgid "Create a starter pack" +msgstr "" + +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 +msgid "Create a Starter Pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +msgid "Create a starter pack for me" +msgstr "" + +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 +#: src/screens/Messages/JoinRequest.tsx:310 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 +#: src/view/shell/bottom-bar/BottomBar.tsx:351 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/NavSignupCard.tsx:48 +#: src/view/shell/NavSignupCard.tsx:53 +msgid "Create account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:87 +#: src/components/dialogs/Signin.tsx:89 +#: src/screens/Hashtag.tsx:236 +#: src/screens/Search/SearchResults.tsx:418 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:314 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 +msgid "Create another" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:606 +msgid "Create group chat" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:180 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:188 +msgid "Create list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:626 +msgid "Create list from members" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:148 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:152 +msgid "Create list from starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:367 +msgid "Create moderation list" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:304 +#: src/view/com/auth/SplashScreen.tsx:89 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Create new account" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:554 +msgid "Create or modify an invite link for this group chat" +msgstr "" + +#. Accessibility label for button to create a moderation report for the selected option +#. placeholder {0}: option.title +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 +msgid "Create report for {0}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:108 +#: src/components/dialogs/StarterPackDialog.tsx:205 +msgid "Create starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:366 +msgid "Create user list" +msgstr "" + +#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', }) +#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', }) +#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', }) +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:509 +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:131 +msgid "Creator has been blocked" +msgstr "" + +#: src/lib/interests.ts:57 +msgid "Culture" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:188 +msgid "Current beta features" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:375 +msgid "Current chat" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:152 +#: src/components/dialogs/ServerInput.tsx:154 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:140 +msgid "Customization options" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:60 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:200 +msgid "Dangerous challenges or activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:204 +msgid "Dangerous substances or drug abuse" +msgstr "" + +#: src/components/dialogs/Embed.tsx:164 +#: src/components/dialogs/Embed.tsx:166 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:299 +msgid "Date of birth" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Day" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:177 +#: src/screens/Settings/AccountSettings.tsx:182 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:472 +msgid "Debug Moderation" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:469 +msgid "Decline this language suggestion" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84 +msgid "Deepfake adult content" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:73 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:184 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275 +#: src/screens/Settings/AppPasswords.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:715 +#: src/screens/StarterPack/StarterPackScreen.tsx:794 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:187 +#: src/screens/Settings/AccountSettings.tsx:192 +msgid "Delete account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:183 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:230 +msgid "Delete account “{currentHandle}”" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:208 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:479 +msgid "Delete chat declaration record" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:567 +msgid "Delete contacts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:151 +#: src/components/dms/AfterReportDialog.tsx:195 +#: src/components/dms/AfterReportDialog.tsx:198 +#: src/screens/Messages/components/RequestButtons.tsx:147 +#: src/screens/Messages/components/RequestButtons.tsx:149 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:212 +msgid "Delete for me" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:202 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:182 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:209 +msgid "Delete message for me" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:309 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1717 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:609 +#: src/screens/StarterPack/StarterPackScreen.tsx:785 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:681 +msgid "Delete starter pack?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:270 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:205 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 +msgid "Deleted Account" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:286 +msgid "Deleted by Plivo after verification" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:43 +#: src/view/com/feeds/MissingFeed.tsx:76 +#: src/view/com/feeds/MissingFeed.tsx:128 +#: src/view/com/feeds/MissingFeed.tsx:136 +msgid "Deleted list" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:453 +#: src/components/SendErrorReportDialog.tsx:78 +#: src/screens/Profile/Header/EditProfileDialog.tsx:360 +#: src/screens/Profile/Header/EditProfileDialog.tsx:367 +msgid "Description" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:82 +msgid "Description (1000 characters max)" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:156 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:124 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:158 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:152 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:291 +#: src/screens/Settings/Settings.tsx:294 +msgid "Developer options" +msgstr "" + +#: src/lib/translation/index.tsx:303 +msgid "Device failed to translate :(" +msgstr "" + +#: src/components/WhoCanReply.tsx:222 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 +msgid "Dialog: Set search filters" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:108 +msgid "Dim" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 +msgid "Disable" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 +msgid "Disable 2FA" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 +msgid "Disable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:90 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:90 +#: src/screens/Settings/AccessibilitySettings.tsx:95 +msgid "Disable haptic feedback" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +msgid "Disable link" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:628 +msgid "Disable quote posts of this post" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465 +msgid "Disable replies entirely" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 +msgid "Disable this invite link?" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:35 +#: src/lib/moderation/useLabelBehaviorDescription.ts:45 +#: src/lib/moderation/useLabelBehaviorDescription.ts:71 +#: src/screens/Moderation/index.tsx:402 +msgid "Disabled" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 +#: src/screens/Profile/Header/EditProfileDialog.tsx:79 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 +#: src/view/com/composer/drafts/DraftItem.tsx:242 +#: src/view/com/composer/drafts/DraftsButton.tsx:131 +msgid "Discard" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:98 +#: src/screens/Profile/Header/EditProfileDialog.tsx:76 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1495 +#: src/view/com/composer/drafts/DraftItem.tsx:239 +#: src/view/com/composer/drafts/DraftsButton.tsx:98 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 +msgid "Discard post?" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 +msgid "Disconnect Germ DM" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:88 +#: src/screens/Settings/components/PwiOptOut.tsx:92 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:64 +#: src/view/com/posts/FollowingEmptyState.tsx:69 +#: src/view/com/posts/FollowingEndOfFeed.tsx:65 +#: src/view/com/posts/FollowingEndOfFeed.tsx:70 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:723 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:398 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 +msgid "Dismiss" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:78 +msgid "Dismiss banner" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2598 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:80 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 +msgid "Dismiss interests" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 +msgid "Dismiss live event banner" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:90 +msgid "Dismiss this section" +msgstr "" + +#: src/components/FeedInterstitials.tsx:349 +msgid "Dismiss this suggestion" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:70 +#: src/screens/Settings/AccessibilitySettings.tsx:75 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:310 +#: src/screens/Profile/Header/EditProfileDialog.tsx:316 +msgid "Display name" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 +msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:405 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:407 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:525 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:269 +msgid "Don’t see a code? <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:26 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:73 +#: src/components/contacts/components/InviteInfo.tsx:79 +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:412 +#: src/components/dialogs/BirthDateSettings.tsx:193 +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200 +#: src/components/dialogs/LanguageSelectDialog.tsx:327 +#: src/components/dialogs/NotificationSettingsDialog.tsx:106 +#: src/components/dialogs/ServerInput.tsx:237 +#: src/components/dialogs/ServerInput.tsx:239 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 +#: src/components/forms/DateField/index.tsx:128 +#: src/components/forms/DateField/index.tsx:145 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:147 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:153 +#: src/lib/media/picker.tsx:37 +#: src/screens/Login/components/HostingProviderDialog.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:255 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 +#: src/view/com/composer/labels/LabelsBtn.tsx:219 +#: src/view/com/composer/labels/LabelsBtn.tsx:226 +#: src/view/com/composer/videos/SubtitleDialog.tsx:192 +#: src/view/com/composer/videos/SubtitleDialog.tsx:203 +msgid "Done" +msgstr "" + +#: src/components/dms/MessageItem.tsx:541 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:399 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1178 +msgid "Double tap to like" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:149 +msgid "Download chat data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:154 +msgctxt "button" +msgid "Download chat data" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 +msgid "Download image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +msgid "Doxxing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120 +#: src/view/com/composer/drafts/DraftsButton.tsx:70 +#: src/view/com/composer/drafts/DraftsButton.tsx:79 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:119 +msgid "Drafts" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:369 +msgid "Drop to add images" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:20 +msgid "Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:162 +msgid "Duration:" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Dusk" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:237 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:317 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:388 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:370 +msgid "e.g. Great Posters" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:371 +msgid "e.g. Spammers" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:374 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:375 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:196 +msgid "Eating disorders" +msgstr "" + +#: src/screens/Messages/components/EditTextButton.tsx:52 +#: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/Wizard/index.tsx:331 +#: src/screens/StarterPack/Wizard/index.tsx:336 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:215 +#: src/view/com/lists/ListMembers.tsx:220 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:116 +msgid "Edit Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:43 +#: src/screens/Messages/ConversationSettings/prompts.tsx:49 +msgid "Edit group name" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:86 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:90 +#: src/view/com/composer/photos/Gallery.tsx:218 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 +msgid "Edit interests" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 +msgid "Edit link settings" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:191 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:194 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:364 +#: src/view/com/profile/ProfileMenu.tsx:384 +msgid "Edit live status" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:364 +msgid "Edit moderation list" +msgstr "" + +#: src/Navigation.tsx:363 +#: src/view/screens/Feeds.tsx:511 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:544 +msgid "Edit name" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:116 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:266 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:265 +#: src/screens/Profile/Header/EditProfileDialog.tsx:271 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:330 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:332 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:596 +msgid "Edit starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:493 +#: src/screens/Messages/ConversationSettings/index.tsx:543 +msgid "Edit this group chat’s name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:363 +msgid "Edit user list" +msgstr "" + +#: src/components/WhoCanReply.tsx:116 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:565 +msgid "Edit your starter pack" +msgstr "" + +#: src/lib/interests.ts:59 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:145 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:65 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:90 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:99 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 +msgid "Email sent!" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:260 +msgid "Email sent! <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:183 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:74 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:178 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:105 +#: src/components/dialogs/Embed.tsx:109 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:96 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:389 +msgid "Enable adult content" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:117 +#: src/screens/Settings/BetaFeaturesSettings.tsx:124 +msgid "Enable beta features" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 +msgid "Enable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:80 +#: src/components/dialogs/EmbedConsent.tsx:86 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:53 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +#: src/view/screens/Storybook/Admonitions.tsx:76 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 +msgid "Enable push notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:629 +msgid "Enable quote posts of this post" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:90 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:134 +#: src/screens/Settings/ContentAndMediaSettings.tsx:148 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:155 +#: src/screens/Settings/ContentAndMediaSettings.tsx:169 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Moderation/index.tsx:400 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:135 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:182 +msgid "Ensure you have selected a language for each caption file." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:231 +msgid "Enter 6-digit code that was sent to your phone number" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:136 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:136 +#: src/components/dialogs/MutedWords.tsx:137 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:64 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 +msgid "Enter fullscreen" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:226 +msgid "Enter the 6-digit code sent to {prettyNumber}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:382 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:109 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:164 +msgid "Enter your birthdate" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:96 +#: src/screens/Signup/StepInfo/index.tsx:243 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:389 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:291 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2697 +#: src/view/com/util/error/ErrorScreen.tsx:40 +msgid "Error" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:95 +msgid "Error getting the latest data." +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:201 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +#: src/screens/Settings/components/ExportCarDialog.tsx:80 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:127 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:206 +msgid "Error: {error}" +msgstr "" + +#: src/components/WhoCanReply.tsx:85 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:279 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:93 +msgctxt "allow group chat invites from" +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:78 +msgctxt "allow messages from" +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 +msgid "Everything else" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 +msgid "Everything look right?" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:46 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:57 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 +msgid "Exclude" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:320 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:605 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 +msgid "Exit fullscreen" +msgstr "" + +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:612 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:103 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:31 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1054 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:490 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:127 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:520 +msgid "Expired" +msgstr "" + +#. placeholder {0}: formatDistance(expiryDate, new Date(), { addSuffix: true, }) +#: src/components/dialogs/MutedWords.tsx:589 +msgid "Expires {0}" +msgstr "" + +#. placeholder {0}: timeDiff(Date.now(), label.exp) +#. placeholder {0}: timeDiff(Date.now(), modcause.label.exp) +#: src/components/moderation/LabelsOnMeDialog.tsx:218 +#: src/components/moderation/ModerationDetailsDialog.tsx:294 +msgid "Expires in {0}" +msgstr "" + +#. placeholder {0}: displayDuration(i18n, minutesUntilExpiry) +#. placeholder {1}: i18n.date(expiryDateTime, { hour: 'numeric', minute: '2-digit', hour12: true, }) +#: src/features/liveNow/components/EditLiveDialog.tsx:125 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 +msgid "Explore" +msgstr "" + +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 +msgid "Explore the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:329 +#: src/screens/Messages/Settings.tsx:338 +#: src/screens/Settings/components/ExportCarDialog.tsx:130 +msgid "Export my chat data" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:168 +#: src/screens/Settings/AccountSettings.tsx:172 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:97 +msgid "Export my profile data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:86 +#: src/screens/Settings/ContentAndMediaSettings.tsx:89 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:44 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "" + +#: src/Navigation.tsx:382 +#: src/screens/Settings/ExternalMediaPreferences.tsx:35 +msgid "External Media Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:146 +msgid "Extremist content" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:244 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:92 +#: src/components/dms/MessageContextMenu.tsx:140 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 +msgid "Failed to add members" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:239 +msgid "Failed to add to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:280 +msgid "Failed to add to starter pack" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:605 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 +#: src/screens/Search/Shell.tsx:513 +msgid "Failed to copy link" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:38 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 +msgid "Failed to create invite link" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:250 +#: src/screens/StarterPack/Wizard/index.tsx:260 +msgid "Failed to create starter pack" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:112 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:754 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +msgid "Failed to disable invite link" +msgstr "" + +#. placeholder {0}: error?.message +#: src/screens/Profile/components/GermButton.tsx:196 +msgid "Failed to disconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:381 +msgid "Failed to edit group chat name" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 +msgid "Failed to edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 +msgid "Failed to enable invite link" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:143 +msgid "Failed to follow all suggested accounts, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:148 +msgid "Failed to follow all your friends, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:236 +msgid "Failed to hide suggestion, please check your internet connection" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Failed to join the group chat. Please try again." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:582 +msgid "Failed to launch SMS app" +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:41 +#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/screens/Messages/ConversationSettings/index.tsx:408 +msgctxt "toast" +msgid "Failed to leave group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:420 +#: src/screens/Messages/Inbox.tsx:202 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 +msgid "Failed to load feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:85 +#: src/screens/Messages/Settings.tsx:369 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:22 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:66 +msgid "Failed to load preference." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:292 +msgid "Failed to load profiles" +msgstr "" + +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:386 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:433 +msgid "Failed to lock group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:636 +#: src/view/shell/bottom-bar/BottomBar.tsx:447 +msgid "Failed to mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:645 +#: src/screens/Messages/Inbox.tsx:304 +#: src/view/shell/bottom-bar/BottomBar.tsx:456 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:397 +msgid "Failed to mute group chat" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#. placeholder {0}: e?.message +#: src/screens/Profile/components/GermButton.tsx:164 +msgid "Failed to reconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to reject join request" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:509 +msgid "Failed to remove data due to a network error, please check your internet connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:515 +msgid "Failed to remove data. {0}" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:77 +#: src/components/dms/MessageContextMenu.tsx:125 +#: src/components/dms/ReactionsDialog.tsx:179 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:258 +msgid "Failed to remove from list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:293 +msgid "Failed to remove from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 +msgid "Failed to remove group chat member" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:193 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 +msgid "Failed to resolve location. Please try again." +msgstr "" + +#: src/view/com/composer/Composer.tsx:731 +msgid "Failed to save draft" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:319 +msgid "Failed to save image" +msgstr "" + +#. placeholder {0}: String(e) +#: src/lib/media/save-image.ios.ts:27 +#: src/lib/media/save-image.ts:31 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:109 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:147 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:52 +msgid "Failed to send report" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:77 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 +#: src/screens/Messages/components/ChatDisabled.tsx:119 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:442 +msgid "Failed to unlock group chat" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 +msgid "Failed to unpin list" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:316 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:110 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:73 +#: src/lib/media/video/upload.web.ts:73 +#: src/lib/media/video/upload.web.ts:77 +#: src/lib/media/video/upload.web.ts:87 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:169 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:372 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +msgid "Fake account or bot" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +msgid "False information about elections" +msgstr "" + +#: src/Navigation.tsx:293 +msgid "Feed" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/components/FeedCard.tsx:170 +#: src/state/queries/feed.ts:127 +#: src/view/com/feeds/FeedSourceCard.tsx:151 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:153 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:190 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:74 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:109 +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/Drawer.tsx:427 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 +msgctxt "toast" +msgid "Feedback sent to feed operator" +msgstr "" + +#: src/Navigation.tsx:545 +#: src/screens/SavedFeeds.tsx:112 +#: src/screens/SavedFeeds.tsx:303 +#: src/screens/Search/SearchResults.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:196 +#: src/view/screens/Feeds.tsx:504 +#: src/view/screens/Profile.tsx:241 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 +msgid "Feeds" +msgstr "" + +#: src/screens/SavedFeeds.tsx:227 +#: src/screens/SavedFeeds.tsx:398 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide for more information." +msgstr "" + +#: src/components/FeedCard.tsx:313 +#: src/screens/SavedFeeds.tsx:92 +#: src/screens/SavedFeeds.tsx:271 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +#: src/screens/Settings/components/ExportCarDialog.tsx:76 +msgid "File saved successfully!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 +msgid "Filter by author" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 +msgid "Filter by author (currently: {currentLabel})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 +msgid "Filter by media" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 +msgid "Filter by media (currently: {currentLabel})" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:69 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 +msgid "Filter search by language" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#. placeholder {0}: lang.name +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 +msgid "Filter this search by {0}" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:106 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:78 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 +msgctxt "search" +msgid "Filters" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:335 +msgid "Finalizing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 +msgid "Finally!" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 +msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." +msgstr "" + +#: src/lib/interests.ts:60 +msgid "Finance" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:67 +#: src/view/com/posts/CustomFeedEmptyState.tsx:72 +#: src/view/com/posts/FollowingEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:49 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 +#: src/screens/Settings/Settings.tsx:217 +#: src/screens/Settings/Settings.tsx:220 +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 +msgid "Find Contacts" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:273 +#: src/components/contacts/screens/GetContacts.tsx:287 +msgid "Find my friends" +msgstr "" + +#. Starter packs suggested to the user for them to follow +#: src/components/ProgressGuide/FollowDialog.tsx:72 +#: src/components/ProgressGuide/FollowDialog.tsx:80 +#: src/components/ProgressGuide/FollowDialog.tsx:448 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:43 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + +#: src/screens/Search/Shell.tsx:765 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 +msgid "Find your friends" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 +#: src/screens/Settings/FindContactsSettings.tsx:133 +msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 +msgid "Find your people" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:281 +msgid "Finding friends..." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Finish" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/components/contacts/components/OTPInput.tsx:55 +msgid "Focus code input" +msgstr "" + +#: src/lib/hotkeys/index.tsx:73 +msgid "Focus the search field" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:548 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 +#: src/screens/VideoFeed/index.tsx:937 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397 +msgid "Follow {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:167 +msgid "Follow {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:916 +msgid "Follow {handle}" +msgstr "" + +#: src/state/shell/progress-guide.tsx:232 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:73 +msgid "Follow 10 people to get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:114 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:331 +msgid "Follow account" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:276 +#: src/components/contacts/screens/ViewMatches.tsx:291 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:294 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:162 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:169 +#: src/screens/Settings/FindContactsSettings.tsx:465 +#: src/screens/Settings/FindContactsSettings.tsx:475 +#: src/screens/StarterPack/StarterPackScreen.tsx:452 +#: src/screens/StarterPack/StarterPackScreen.tsx:460 +msgid "Follow all" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:291 +msgid "Follow all accounts" +msgstr "" + +#. User is not following this account, click to follow back +#: src/components/ProfileCard.tsx:544 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow back" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132 +msgid "Followed all accounts!" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:418 +msgid "Followed all matches" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#: src/components/KnownFollowers.tsx:233 +msgid "Followed by <0>{0}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: serverCount - 1 +#: src/components/KnownFollowers.tsx:219 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#: src/components/KnownFollowers.tsx:206 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#. placeholder {2}: serverCount - 2 +#: src/components/KnownFollowers.tsx:189 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:355 +msgid "Followers can join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:247 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:98 +#: src/screens/Profile/KnownFollowers.tsx:115 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:539 +#: src/components/ProfileHoverCard/index.web.tsx:494 +#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 +#: src/screens/VideoFeed/index.tsx:935 +#: src/view/com/notifications/NotificationFeedItem.tsx:842 +#: src/view/com/notifications/NotificationFeedItem.tsx:859 +msgid "Following" +msgstr "" + +#: src/screens/SavedFeeds.tsx:618 +#: src/view/screens/Feeds.tsx:596 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:500 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:791 +msgid "Following {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:66 +msgid "Following {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:915 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:78 +#: src/screens/Settings/ContentAndMediaSettings.tsx:81 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:369 +#: src/screens/Settings/FollowingFeedPreferences.tsx:57 +msgid "Following Feed Preferences" +msgstr "" + +#: src/components/Pills.tsx:213 +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:126 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:146 +msgid "Font size" +msgstr "" + +#: src/lib/interests.ts:61 +msgid "Food" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:106 +msgid "For organizational accounts, use the birthdate of the person who is responsible for the account." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:186 +msgid "For security reasons, we’ll need to send a confirmation code to your email address <0>{currentEmail}." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:208 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:128 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:131 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:187 +#: src/components/dialogs/MutedWords.tsx:572 +#: src/components/dialogs/MutedWords.tsx:575 +msgid "Forever" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 +msgid "Forget the noise" +msgstr "" + +#: src/screens/Login/index.tsx:176 +#: src/screens/Login/index.tsx:192 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:421 +#: src/screens/Login/LoginForm.tsx:428 +msgid "Forgot password?" +msgstr "" + +#. This is alt text for a marketing image which transcribes English text that appears in the image +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:153 +msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 +msgid "Free your feed" +msgstr "" + +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:123 +msgid "From {sanitizedAuthor}" +msgstr "" + +#: src/screens/Hashtag.tsx:124 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:48 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 +msgid "From these people" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +msgid "Generate a starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:277 +#: src/screens/Messages/components/InviteLinkDialog.tsx:305 +msgid "Generate invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 +msgid "Generate new invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 +msgid "Generate new link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:86 +#: src/screens/Profile/components/GermButton.tsx:225 +msgid "Germ DM" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:183 +msgid "Germ DM disconnected" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 +msgid "Germ DM Link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:160 +msgid "Germ DM reconnected" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:132 +msgid "Get early access to experimental features we’re testing." +msgstr "" + +#: src/view/shell/Drawer.tsx:431 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:389 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:316 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:366 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:340 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:348 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:332 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:357 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:375 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:33 +msgid "Get notifications when people send you message requests." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:23 +msgid "Get notifications when people send you messages." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:89 +#: src/components/activity-notifications/SubscribeProfileButton.tsx:90 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:233 +msgid "Get notified of this account’s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:84 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:219 +#: src/screens/Messages/components/InviteLinkDialog.tsx:226 +msgid "Get started" +msgstr "" + +#: src/components/MediaPreview.tsx:182 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:93 +msgid "GIF" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2702 +msgid "GIF uploaded" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:256 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:142 +msgid "Glorification of violence" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:127 +#: src/components/dialogs/LinkWarning.tsx:133 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 +#: src/screens/Login/components/AuthLayout/Header/index.tsx:74 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 +#: src/screens/ProfileList/components/ErrorScreen.tsx:35 +#: src/screens/ProfileList/components/ErrorScreen.tsx:41 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 +#: src/view/com/auth/LoggedOut.tsx:127 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:72 +#: src/screens/List/ListHiddenScreen.tsx:228 +#: src/screens/Profile/ErrorState.tsx:63 +#: src/screens/Profile/ErrorState.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:807 +msgid "Go Back" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:97 +#: src/screens/Onboarding/Layout.tsx:198 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "" + +#: src/screens/Bookmarks.tsx:296 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/view/com/profile/ProfileMenu.tsx:386 +msgid "Go live" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:106 +#: src/features/liveNow/components/GoLiveDialog.tsx:111 +#: src/features/liveNow/components/GoLiveDialog.tsx:239 +#: src/features/liveNow/components/GoLiveDialog.tsx:248 +msgid "Go Live" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:382 +msgid "Go live (disabled)" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:181 +msgid "Go live for" +msgstr "" + +#. placeholder {0}: name.displayName +#: src/screens/PostThread/components/LikesStat.tsx:146 +msgid "Go to {0}'s profile" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:256 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:93 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:73 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:82 +#: src/screens/Moderation/index.tsx:237 +msgid "Go to account settings" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Messages/components/ChatListItem.tsx:155 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:39 +msgid "Go to feed" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:168 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:194 +#: src/view/shell/desktop/LeftNav.tsx:336 +#: src/view/shell/desktop/LeftNav.tsx:342 +msgid "Go to profile" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:211 +msgid "Go to the group chat named \"{chatName}\"" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:258 +msgid "Go to user's profile" +msgstr "" + +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 +msgid "Go to user’s profile" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 +msgid "Going live is currently disabled for your account" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:121 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:126 +#: src/screens/Profile/components/GermButton.tsx:253 +#: src/screens/Profile/components/GermButton.tsx:258 +msgid "Got it" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:197 +#: src/view/com/composer/labels/LabelsBtn.tsx:200 +msgid "Graphic Media" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:138 +msgid "Graphic violent content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:169 +msgid "Grooming or predatory behavior" +msgstr "" + +#: src/components/dms/ChatInvite/Card.tsx:51 +#: src/components/intents/GroupChatJoinDialog.tsx:333 +#: src/screens/Messages/JoinRequest.tsx:125 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 +msgid "Group chat invite link dialog" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgctxt "toast" +msgid "Group chat locked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:389 +msgctxt "toast" +msgid "Group chat muted" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:376 +msgctxt "toast" +msgid "Group chat name updated" +msgstr "" + +#: src/Navigation.tsx:514 +#: src/screens/Messages/ConversationSettings/index.tsx:113 +msgid "Group chat settings" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:427 +msgctxt "toast" +msgid "Group chat unlocked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:392 +msgctxt "toast" +msgid "Group chat unmuted" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" + +#: src/screens/Messages/Settings.tsx:212 +msgid "Group chats are only available to users 18 and over." +msgstr "" + +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:205 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 +msgid "Group is locked" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 +#: src/screens/Messages/ConversationSettings/prompts.tsx:50 +msgid "Group name" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:730 +#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 +msgid "Hacking or system attacks" +msgstr "" + +#: src/state/shell/progress-guide.tsx:221 +#: src/state/shell/progress-guide.tsx:231 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:133 +#: src/screens/Settings/AccountSettings.tsx:138 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:609 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:197 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:613 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/components/FeedCard.tsx:156 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 +msgid "Happening now" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to happy/joyful GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:65 +msgid "Happy GIFs" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:86 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +msgid "Harassment or hate" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:189 +msgid "Harmful or high-risk activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:162 +msgid "Harming or endangering minors" +msgstr "" + +#: src/Navigation.tsx:498 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111 +msgid "Hate speech" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:323 +msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." +msgstr "" + +#: src/screens/Signup/index.tsx:246 +msgid "Having trouble?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:290 +msgid "Held by Bluesky for 7 days to prevent abuse, then deleted" +msgstr "" + +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:260 +#: src/view/shell/desktop/RightNav.tsx:130 +#: src/view/shell/desktop/RightNav.tsx:133 +#: src/view/shell/Drawer.tsx:440 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:259 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:74 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:120 +msgid "Hey there 👋" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:171 +msgid "Hey there!" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:276 +msgid "Hi there!" +msgstr "" + +#: src/components/VideoPostCard.tsx:178 +#: src/components/VideoPostCard.tsx:462 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:714 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:133 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:140 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 +#: src/lib/moderation/useLabelBehaviorDescription.ts:18 +#: src/lib/moderation/useLabelBehaviorDescription.ts:23 +#: src/lib/moderation/useLabelBehaviorDescription.ts:28 +#: src/lib/moderation/useLabelBehaviorDescription.ts:33 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:956 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:124 +msgid "Hide customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Hide group chat updates" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:533 +msgid "Hide lists" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Hide password" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 +msgid "Hide this reply?" +msgstr "" + +#: src/components/Post/Translated/index.tsx:216 +#: src/components/Post/Translated/index.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 +msgid "Hide translation" +msgstr "" + +#: src/components/interstitials/Trending.tsx:125 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:137 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:947 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:88 +#: src/screens/Moderation/VerificationSettings.tsx:97 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:168 +#: src/components/moderation/PostHider.tsx:94 +msgid "Hides the content" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:76 +msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:122 +msgid "Hmm, it seems we weren't able to compute your level of access. Please try again." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:141 +msgid "Hmm, it seems your device was unable to share age information with us." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:125 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:113 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:119 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:116 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:110 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:61 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:32 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:447 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 +#: src/view/shell/bottom-bar/BottomBar.tsx:196 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:430 +msgid "Host:" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:138 +#: src/screens/Login/components/HostingProviderDialog.tsx:159 +#: src/screens/Login/ForgotPasswordForm.tsx:80 +#: src/screens/Login/LoginForm.tsx:659 +msgid "Hosting provider" +msgstr "" + +#. placeholder {0}: toNiceHostingUrl(state.pdsUrl) +#: src/screens/Login/LoginForm.tsx:655 +msgid "Hosting provider: {0}" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:657 +msgid "Hosting provider: Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:54 +msgid "How it works:" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:63 +#: src/components/dialogs/InAppBrowserConsent.tsx:67 +msgid "How should we open this link?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:279 +msgid "How we use your number:" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:150 +msgid "Human trafficking" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:267 +msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out." +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:134 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:137 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:292 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:298 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:55 +msgid "I understand" +msgstr "" + +#. placeholder {0}: currentAccount.handle +#: src/components/contacts/screens/ViewMatches.tsx:578 +msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:246 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:235 +msgid "If none are selected, all languages will be shown in your feeds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:103 +msgid "If you are 18 years of age or older and want to try again, click the button below and use a different verification method if one is available in your region. If you have questions or concerns, <0>our support team can help." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:340 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:116 +msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:272 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:274 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:60 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 +#: src/view/screens/Storybook/Admonitions.tsx:90 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:210 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/images/ImageLayoutGridItem.tsx:91 +msgid "Image" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:457 +msgid "Image {0}" +msgstr "" + +#. placeholder {0}: index + 1 +#. placeholder {1}: imgs.length +#: src/components/Lightbox/Lightbox.web.tsx:261 +msgid "Image {0} of {1}" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:442 +msgid "Image {0} of {imageCount}" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:74 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#. placeholder {0}: i18n.number( Math.abs(sizeDiffBytes / 1024 / 1024), { notation: 'compact', style: 'unit', unit: 'megabyte', }, ) +#: src/screens/Settings/AboutSettings.tsx:60 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#. placeholder {0}: images.length +#: src/components/images/Gallery/index.tsx:274 +msgid "Image gallery, {0} images" +msgstr "" + +#. Image has been moderated and user has the option of showing it temporarily +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 +msgid "Image is hidden due to your moderation settings." +msgstr "" + +#. Image has been moderated and is not visible to the user +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 +msgid "Image is unavailable." +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:72 +#: src/components/Lightbox/Lightbox.web.tsx:265 +#: src/components/Lightbox/Lightbox.web.tsx:273 +msgid "Image options" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/lib/media/save-image.ios.ts:25 +#: src/lib/media/save-image.ts:29 +msgid "Image saved" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:82 +msgid "Image viewer" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:51 +msgid "Impersonation" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 +msgid "Import contacts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 +msgid "Import Contacts" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:33 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 +msgid "Import contacts to find your friends" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) +#: src/screens/Settings/FindContactsSettings.tsx:535 +msgid "Imported on {0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:279 +msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:30 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:21 +msgid "In-app, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:25 +msgid "In-app, people you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:29 +msgid "In-app, push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:20 +msgid "In-app, push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:24 +msgid "In-app, push, people you follow" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:437 +msgid "Inbox empty" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:219 +msgid "Inbox zero!" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Include" +msgstr "" + +#. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 +msgid "Include or exclude matching posts (currently: {0})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +msgid "Include posts and/or replies (currently: {currentLabel})" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 +msgid "Include posts made since this date" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 +msgid "Include posts made until this date" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 +msgid "Include these results" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:165 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:124 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:148 +msgid "Input new password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:456 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:269 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:33 +msgid "Introducing activity notifications" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:49 +msgid "Introducing drafts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:56 +msgid "Introducing finding friends via contacts" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 +msgid "Introducing saved posts AKA bookmarks" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:71 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:157 +msgid "Invalid group chat code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:615 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 +msgctxt "toast" +msgid "Invalid interaction settings." +msgstr "" + +#: src/components/contacts/phone-number.ts:33 +#: src/components/contacts/screens/PhoneInput.tsx:142 +msgid "Invalid phone number" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:100 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:200 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:86 +msgid "Invalid Verification Code" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:587 +msgid "Invite" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:567 +msgid "Invite {name} to join Bluesky" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:193 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:347 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:42 +#: src/components/contacts/components/InviteInfo.tsx:44 +msgid "Invite Friends" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:301 +msgid "Invite friends <0/>" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:193 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +#: src/screens/Messages/components/InviteLinkDialog.tsx:335 +#: src/screens/Messages/components/InviteLinkDialog.tsx:514 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 +#: src/screens/Messages/ConversationSettings/index.tsx:557 +msgid "Invite link" +msgstr "" + +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:214 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:127 +msgid "Invite link copied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:120 +msgid "Invite link created" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:138 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +msgid "Invite link disabled" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:126 +msgid "Invite link edited" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:132 +msgid "Invite link enabled" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:83 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:37 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Invited" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invites, but personal" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:47 +msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:373 +msgid "It's correct" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:483 +msgid "It's just <0>{0} right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:478 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#. placeholder {0}: videoState.jobId +#: src/view/com/composer/Composer.tsx:2617 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:181 +msgid "Jobs" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +msgid "Join" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:488 +msgid "Join Bluesky" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:72 +#: src/components/intents/GroupChatJoinDialog.tsx:464 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:189 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:72 +#: src/view/shell/NavSignupCard.tsx:41 +msgid "Join the conversation" +msgstr "" + +#: src/lib/interests.ts:63 +msgid "Journalism" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 +#: src/view/com/composer/drafts/DraftsButton.tsx:135 +msgid "Keep editing" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:230 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 +msgid "KWS website" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName(desc.source!) +#: src/components/moderation/ContentHider.tsx:245 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:243 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:70 +#: src/view/screens/Profile.tsx:234 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:68 +msgid "Labels added" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "Labels applied to this post" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:195 +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:76 +msgid "Labels on your account" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 +msgid "Language" +msgstr "" + +#: src/Navigation.tsx:220 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +#: src/screens/Settings/Settings.tsx:240 +#: src/screens/Settings/Settings.tsx:243 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:158 +msgid "Larger" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:443 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:179 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:441 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:177 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:97 +#: src/screens/Search/SearchResults.tsx:95 +#: src/screens/Topic.tsx:64 +msgid "Latest" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:168 +#: src/components/verification/VerifierDialog.tsx:136 +#: src/screens/Moderation/VerificationSettings.tsx:50 +#: src/screens/Profile/Header/EditProfileDialog.tsx:346 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:215 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:279 +msgctxt "english-only-resource" +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:143 +msgid "Learn More" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:273 +msgctxt "english-only-resource" +msgid "Learn more about <0>how to use advanced search." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:169 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:33 +msgid "Learn more about how inviting friends works" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:303 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 +#: src/screens/Settings/FindContactsSettings.tsx:140 +msgctxt "english-only-resource" +msgid "Learn more about importing contacts" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:220 +#: src/screens/Login/components/HostingProviderDialog.tsx:241 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:150 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:90 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:116 +#: src/components/moderation/ScreenHider.tsx:132 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:153 +#: src/components/verification/VerifierDialog.tsx:122 +msgctxt "english-only-resource" +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:212 +msgid "Learn more about your Germ DM link" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:222 +#: src/components/moderation/ContentHider.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:243 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:591 +msgid "Leave" +msgstr "" + +#. Leave a conversation (reject a chat invitation) +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 +msgctxt "Button" +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:109 +#: src/components/dms/MessagesListBlockedFooter.tsx:116 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 +#: src/screens/Messages/components/ChatEnded.tsx:66 +#: src/screens/Messages/components/ChatLocked.tsx:112 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:229 +#: src/components/dms/AfterReportConversationDialog.tsx:233 +#: src/components/dms/ConvoMenu.tsx:236 +#: src/components/dms/ConvoMenu.tsx:240 +#: src/components/dms/ConvoMenu.tsx:308 +#: src/components/dms/ConvoMenu.tsx:312 +#: src/components/dms/LeaveConvoPrompt.tsx:53 +msgid "Leave conversation" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:130 +#: src/screens/Messages/ConversationSettings/prompts.tsx:154 +msgid "Leave group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:590 +msgid "Leave this group chat" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:83 +#: src/components/dialogs/LinkWarning.tsx:91 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:153 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:274 +msgid "Left group chat." +msgstr "" + +#: src/screens/SignupQueued.tsx:158 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:177 +#: src/screens/Login/index.tsx:193 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:337 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:159 +#: src/components/dialogs/Embed.tsx:161 +#: src/screens/Settings/AppearanceSettings.tsx:87 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:284 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:108 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:217 +#: src/state/shell/progress-guide.tsx:222 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:149 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:31 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:22 +#: src/view/screens/ProfileFeedLikedBy.tsx:22 +msgid "Liked By" +msgstr "" + +#. placeholder {0}: count || 0 +#. placeholder {0}: feed.likeCount || 0 +#: src/components/FeedCard.tsx:249 +#: src/view/com/feeds/FeedSourceCard.tsx:173 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:158 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:200 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 +msgid "Likes of your reposts" +msgstr "" + +#: src/screens/PostThread/components/LikesStat.tsx:39 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:49 +#: src/screens/PostThread/components/HeaderDropdown.tsx:54 +msgid "Linear" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:300 +msgid "Link copied to clipboard" +msgstr "" + +#: src/Navigation.tsx:253 +msgid "List" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:397 +msgid "List avatar" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:48 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#: src/components/ListCard.tsx:153 +#: src/view/com/feeds/FeedSourceCard.tsx:153 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:145 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:143 +msgid "List by you" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:127 +msgid "List created, but failed to add some members" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:155 +msgid "List creator" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:446 +msgid "List description" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:466 +msgid "List description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:133 +msgid "List has been hidden" +msgstr "" + +#: src/screens/ProfileList/index.tsx:175 +msgid "List Hidden" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:438 +msgid "List must have a name." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:33 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:410 +msgid "List name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:430 +msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:115 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:130 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:101 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:116 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:174 +#: src/view/screens/Lists.tsx:60 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 +msgid "Lists" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Lists allow you to see content from your favorite people." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:38 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/features/liveNow/components/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#. placeholder {0}: feed.title +#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:54 +msgid "Live event happening now: {0}" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 +msgid "Live event hidden" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 +msgid "Live event unhidden" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 +msgid "Live feature is in beta" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:142 +#: src/features/liveNow/components/EditLiveDialog.tsx:146 +#: src/features/liveNow/components/GoLiveDialog.tsx:137 +#: src/features/liveNow/components/GoLiveDialog.tsx:141 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:87 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:271 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 +#: src/screens/ProfileList/FeedSection.tsx:113 +#: src/view/com/feeds/FeedPage.tsx:168 +msgid "Load new posts" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:254 +msgctxt "placeholder" +msgid "Loading chat…" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 +msgid "Loading lists..." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:279 +msgid "Loading post interaction settings..." +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +msgid "Loading..." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Lock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:107 +msgid "Lock group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:105 +msgid "Lock group chat?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:569 +msgid "Lock this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Locked" +msgstr "" + +#: src/Navigation.tsx:328 +msgid "Log" +msgstr "" + +#: src/components/AccountList.tsx:189 +msgid "Logged out" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:142 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:139 +#: src/view/shell/Drawer.tsx:768 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:55 +msgid "Long press to open tag menu for {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:114 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:44 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:84 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:36 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection. +#: src/features/gifPicker/components/GifCategoryPills.tsx:55 +msgid "Love GIFs" +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:39 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:101 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:65 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:339 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:111 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:173 +#: src/screens/Login/components/HostingProviderDialog.tsx:174 +msgid "Manual" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:312 +#: src/screens/Messages/Inbox.tsx:318 +msgid "Mark all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 +#: src/view/shell/bottom-bar/BottomBar.tsx:465 +#: src/view/shell/bottom-bar/BottomBar.tsx:469 +msgid "Mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 +#: src/view/shell/bottom-bar/BottomBar.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:477 +msgid "Mark all requests as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:299 +msgid "Marked all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:633 +#: src/view/shell/bottom-bar/BottomBar.tsx:444 +msgid "Marked all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:642 +#: src/view/shell/bottom-bar/BottomBar.tsx:453 +msgid "Marked all requests as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +msgid "Maybe later" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 +#: src/view/screens/Profile.tsx:238 +msgid "Media" +msgstr "" + +#. Example: "Media stored on John's iPhone" +#. placeholder {0}: draft.draft.deviceName +#: src/view/com/composer/drafts/DraftItem.tsx:119 +msgid "Media stored on {0}" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:117 +msgid "Media stored on another device" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:206 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:300 +msgid "Member removed from group chat." +msgstr "" + +#. The heading above the list of chat members. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +msgid "Members" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:106 +msgid "Members can still read chat history but can’t send new messages." +msgstr "" + +#: src/components/WhoCanReply.tsx:320 +msgid "mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:179 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 +#: src/view/screens/Notifications.tsx:99 +msgid "Mentions" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 +msgid "Mentions of these people" +msgstr "" + +#: src/components/Menu/index.tsx:119 +msgid "Menu" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 +msgctxt "action" +msgid "Message" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:255 +msgctxt "description" +msgid "Message" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/components/dms/MessageProfileButton.tsx:99 +msgid "Message {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +msgid "Message {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:322 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:111 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageItem.tsx:637 +msgid "Message failed to send." +msgstr "" + +#. placeholder {0}: sender?.handle ?? 'unknown' +#. placeholder {1}: message.text +#: src/components/dms/MessageContextMenu.tsx:166 +msgid "Message from @{0}: {1}" +msgstr "" + +#. placeholder {0}: rawError.message +#: src/view/com/posts/PostFeedErrorMessage.tsx:209 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:251 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:116 +msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:165 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:779 +msgid "Messages" +msgstr "" + +#: src/components/dms/MessageItem.tsx:736 +msgid "Messages from this person are hidden while they are blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:731 +msgid "Messages from this person are hidden while you are blocking them." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:177 +msgid "Minor harassment or bullying" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 +msgid "Misleading" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:131 +msgid "Missing media" +msgstr "" + +#: src/Navigation.tsx:179 +#: src/screens/Moderation/index.tsx:100 +msgid "Moderation" +msgstr "" + +#: src/screens/Settings/Settings.tsx:190 +#: src/screens/Settings/Settings.tsx:193 +msgid "Moderation and content filters" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:175 +msgid "Moderation details" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:311 +#: src/components/ListCard.tsx:152 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:309 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +msgid "Moderation list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:256 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:242 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:299 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:184 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:257 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:313 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:253 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:48 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:106 +#: src/view/shell/desktop/Feeds.tsx:153 +msgid "More feeds" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:125 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:128 +msgid "More languages..." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 +#: src/view/com/composer/drafts/DraftItem.tsx:190 +#: src/view/com/profile/ProfileMenu.tsx:251 +#: src/view/com/profile/ProfileMenu.tsx:258 +msgid "More options" +msgstr "" + +#: src/screens/SavedFeeds.tsx:488 +msgid "Move feed down" +msgstr "" + +#: src/screens/SavedFeeds.tsx:478 +msgid "Move feed up" +msgstr "" + +#: src/lib/interests.ts:64 +msgid "Movies" +msgstr "" + +#: src/lib/interests.ts:65 +msgid "Music" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Mute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:184 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97 +msgctxt "video" +msgid "Mute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:154 +#: src/components/RichTextTag.tsx:170 +msgid "Mute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 +#: src/view/com/profile/ProfileMenu.tsx:443 +#: src/view/com/profile/ProfileMenu.tsx:450 +msgid "Mute account" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:83 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:86 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:262 +msgid "Mute in:" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:109 +msgid "Mute list" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:104 +msgid "Mute these accounts?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:534 +msgid "Mute this group chat" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:194 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:233 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:218 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:267 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:283 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:179 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 +msgid "Mute words & tags" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Muted" +msgstr "" + +#: src/screens/Moderation/index.tsx:314 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:189 +#: src/view/screens/ModerationMutedAccounts.tsx:107 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:193 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:284 +msgid "Muted words & tags" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:106 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:54 +#: src/components/dialogs/BirthDateSettings.tsx:58 +msgid "My birthdate" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:77 +msgid "My favorite feeds and people - join me!" +msgstr "" + +#: src/view/screens/Feeds.tsx:697 +msgid "My Feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "My starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:416 +msgid "Name" +msgstr "" + +#: src/lib/interests.ts:66 +msgid "Nature" +msgstr "" + +#. placeholder {0}: record.name +#. placeholder {0}: view.record.name +#: src/components/StarterPack/StarterPackCard.tsx:134 +#: src/components/StarterPack/StarterPackCard.tsx:169 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:135 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:144 +#: src/screens/Login/ForgotPasswordForm.tsx:169 +#: src/screens/Login/LoginForm.tsx:555 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:92 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:342 +#: src/components/moderation/ReportDialog/index.tsx:358 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:585 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:398 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:71 +#: src/view/screens/ModerationModlists.tsx:72 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 +msgctxt "nux-description" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:569 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:552 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 +#: src/screens/Messages/ChatList.tsx:232 +#: src/screens/Messages/ChatList.tsx:455 +#: src/screens/Messages/ChatList.tsx:456 +#: src/screens/Messages/ChatList.tsx:580 +msgid "New chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +msgid "New chat with {0}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +msgid "New chat with {0} and {1}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73 +msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:75 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:74 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:85 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:65 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:129 +msgid "New Feature" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:193 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 +msgid "New followers" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 +msgid "New group chat" +msgstr "" + +#. Button used to create a new group chat. +#. Button used to create a new group chat. +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:332 +msgid "New group chat with:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:228 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:236 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:387 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:64 +#: src/view/screens/ModerationModlists.tsx:64 +msgid "New list" +msgstr "" + +#: src/screens/Messages/Settings.tsx:289 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:281 +msgid "New message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:268 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 +#: src/screens/Settings/NotificationSettings/index.tsx:264 +msgid "New messages" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:130 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:204 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:208 +msgid "New password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:218 +#: src/screens/ProfileList/index.tsx:237 +#: src/screens/ProfileList/index.tsx:280 +#: src/view/screens/Feeds.tsx:545 +#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Profile.tsx:607 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:179 +#: src/view/shell/desktop/LeftNav.tsx:598 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:558 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:543 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:202 +msgid "New starter pack" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:569 +msgid "New to Bluesky? <0>Sign up" +msgstr "" + +#: src/components/NewskieDialog.tsx:122 +msgid "New user info dialog" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:95 +#: src/screens/PostThread/components/HeaderDropdown.tsx:100 +#: src/screens/Settings/ThreadPreferences.tsx:73 +#: src/screens/Settings/ThreadPreferences.tsx:76 +msgid "Newest replies first" +msgstr "" + +#: src/lib/interests.ts:67 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 +msgid "News" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:410 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:599 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/ForgotPasswordForm.tsx:150 +#: src/screens/Login/SetNewPasswordForm.tsx:171 +#: src/screens/Login/SetNewPasswordForm.tsx:177 +#: src/screens/Onboarding/StepFinished/index.tsx:330 +#: src/screens/Onboarding/StepFinished/index.tsx:339 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:198 +#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:384 +#: src/screens/StarterPack/Wizard/index.tsx:391 +msgid "Next" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:218 +msgid "Next image" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:33 +msgid "Night" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 +msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:177 +msgid "No beta features at the moment." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:681 +msgid "No contacts found" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:659 +msgid "No contacts with the name “{query}” found" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:161 +msgid "No custom feeds yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:410 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:412 +msgid "No DNS Panel" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:143 +msgid "No drafts yet" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:134 +msgid "No expiry set" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:122 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:216 +msgid "No followers yet" +msgstr "" + +#. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the user’s search query. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25 +msgid "No GIFs found for \"{query}\"." +msgstr "" + +#. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue). +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36 +msgid "No GIFs to show right now. Try again in a moment." +msgstr "" + +#: src/features/liveNow/components/LinkPreview.tsx:64 +msgid "No image" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +#: src/view/screens/Profile.tsx:539 +msgid "No likes yet" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:160 +msgid "No lists" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:523 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/notifications/NotificationFeedItem.tsx:813 +msgid "No longer following {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:485 +msgid "No media yet" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:310 +msgid "No messages yet" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 +msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:563 +msgid "No name" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:125 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:104 +msgctxt "allow group chat invites from" +msgid "No one" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +msgctxt "allow messages from" +msgid "No one" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:130 +#: src/screens/Settings/ActivityPrivacySettings.tsx:135 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgctxt "enable for" +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "No one can send messages" +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:43 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 +msgid "No posts yet" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:114 +msgid "No quotes yet" +msgstr "" + +#. Empty-state message shown in the GIF picker’s Recents tab before the user has selected any GIFs. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:31 +msgid "No recent GIFs yet. Pick one to see it here." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "No replies" +msgstr "" + +#: src/view/screens/Profile.tsx:470 +msgid "No replies yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:192 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:250 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:469 +#: src/components/ProgressGuide/FollowDialog.tsx:221 +msgid "No results" +msgstr "" + +#. placeholder {0}: interestsDisplayNames[selectedInterest] +#: src/screens/Search/Explore.tsx:817 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:466 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:233 +msgid "No results found for “<0>{query}” with advanced search filters applied." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:245 +msgid "No results found for “<0>{query}”." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:239 +msgid "No results found for your query with advanced search filters applied." +msgstr "" + +#: src/screens/Search/Explore.tsx:821 +msgid "No results." +msgstr "" + +#: src/view/screens/Profile.tsx:571 +msgid "No Starter Packs yet" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +#: src/components/dialogs/EmbedConsent.tsx:107 +msgid "No thanks" +msgstr "" + +#: src/lib/translation/index.tsx:308 +msgid "No translation received from your device." +msgstr "" + +#: src/view/screens/Profile.tsx:512 +msgid "No video posts yet" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:471 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:116 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:107 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:80 +msgid "Non-consensual intimate imagery" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 +msgid "None of these words" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:62 +#: src/screens/Settings/FindContactsSettings.tsx:106 +msgid "Not available on this platform." +msgstr "" + +#: src/components/KnownFollowers.tsx:254 +msgid "Not followed by anyone you’re following" +msgstr "" + +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 +msgid "Not Found" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131 +msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:546 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:292 +msgid "Nothing saved yet" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:72 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 +#: src/view/screens/Notifications.tsx:134 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:305 +#: src/screens/Messages/Settings.tsx:318 +msgid "Notification sounds" +msgstr "" + +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 +#: src/screens/Messages/Settings.tsx:255 +#: src/screens/Notifications/ActivityList.tsx:31 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 +#: src/screens/Settings/Settings.tsx:198 +#: src/screens/Settings/Settings.tsx:201 +#: src/view/screens/Notifications.tsx:128 +#: src/view/shell/bottom-bar/BottomBar.tsx:279 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 +msgid "Notifications" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 +msgid "Nudity" +msgstr "" + +#: src/components/contacts/phone-number.ts:43 +msgid "Number should be a mobile number" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:14 +#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:34 +msgid "Off" +msgstr "" + +#. Title of the error screen shown when the GIF picker crashes unexpectedly. +#: src/components/dialogs/LanguageSelectDialog.tsx:347 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:22 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#. Confirm button text. +#: src/components/contacts/screens/GetContacts.tsx:317 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:46 +#: src/screens/Settings/AppIconSettings/index.tsx:232 +msgid "OK" +msgstr "" + +#: src/components/BotAccountAlert.tsx:52 +#: src/components/BotAccountAlert.tsx:57 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 +#: src/screens/Login/PasswordUpdatedForm.tsx:35 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:85 +#: src/screens/PostThread/components/HeaderDropdown.tsx:90 +#: src/screens/Settings/ThreadPreferences.tsx:65 +#: src/screens/Settings/ThreadPreferences.tsx:68 +msgid "Oldest replies first" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:162 +msgid "On" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:86 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:405 +msgid "Onboarding reset" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:939 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:936 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "One or more of your selected files are not supported." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:446 +msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." +msgstr "" + +#: src/view/com/composer/Composer.tsx:742 +msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" +msgstr "" + +#: src/view/com/composer/Composer.tsx:946 +msgid "One or more videos is missing alt text." +msgstr "" + +#. placeholder {0}: settings.map((rule, i) => ( )) +#: src/components/WhoCanReply.tsx:283 +msgid "Only {0} can reply." +msgstr "" + +#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept +#. placeholder {0}: result.accepted.length +#. placeholder {1}: next.length +#. placeholder {2}: next.length +#: src/view/com/composer/Composer.tsx:235 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can reject join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:155 +msgid "Only followers can join this group chat." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:121 +#: src/screens/Settings/ActivityPrivacySettings.tsx:126 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:34 +msgid "Only image files are supported" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:218 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:306 +msgid "Only people the chat owner follows can join" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 +msgid "Only posts with media" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 +msgid "Only posts with videos" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 +msgid "Only replies" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:99 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +msgid "Oops, this profile doesn't exist. Try scanning another one." +msgstr "" + +#: src/components/Lists.tsx:184 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:108 +#: src/view/screens/Profile.tsx:133 +msgid "Oops!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 +msgid "Open advanced search options" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:308 +msgid "Open avatar creator" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:201 +msgid "Open camera" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 +msgid "Open chat member options for {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:490 +#: src/screens/Messages/components/ChatListItem.tsx:494 +msgid "Open conversation options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:69 +msgid "Open draft" +msgstr "" + +#: src/components/Layout/Header/index.tsx:168 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:213 +#: src/view/com/composer/Composer.tsx:2250 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:28 +msgid "Open full emoji list" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:75 +msgid "Open Germ DM" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:446 +msgid "Open group chat" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 +msgid "Open group chat settings" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:147 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:40 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:470 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:280 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:128 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:67 +msgid "Open post options menu" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 +msgid "Open profile" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "" + +#: src/components/BotAccountAlert.tsx:62 +#: src/components/BotAccountAlert.tsx:71 +msgid "Open settings" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:98 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:463 +#: src/screens/Settings/Settings.tsx:477 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:456 +msgid "Open system log" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Open this group chat" +msgstr "" + +#. placeholder {0}: feedInfo.displayName +#: src/view/shell/desktop/Feeds.tsx:185 +msgid "Opens {0} feed" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:645 +msgid "Opens a dialog to change the hosting provider you sign in to" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 +msgid "Opens a dialog to choose who can interact with this post" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:40 +msgid "Opens a list of color themes for the QR card" +msgstr "" + +#: src/screens/Log.tsx:74 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:45 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:134 +msgid "Opens change handle dialog" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:64 +msgid "Opens composer" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:202 +msgid "Opens device camera" +msgstr "" + +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:517 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:305 +#: src/view/com/auth/SplashScreen.tsx:91 +#: src/view/com/auth/SplashScreen.web.tsx:112 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:291 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/components/images/Gallery/index.tsx:458 +msgid "Opens full image" +msgstr "" + +#: src/screens/Settings/Settings.tsx:257 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:224 +msgid "Opens image picker" +msgstr "" + +#. placeholder {0}: link?.href ?? '' +#: src/components/dialogs/LinkWarning.tsx:113 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:603 +msgid "Opens live status dialog" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:200 +msgid "Opens post language settings" +msgstr "" + +#: src/components/dms/SystemMessageItem.tsx:61 +msgid "Opens profile" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "" + +#. Accessibility hint announced after the GIF picker button label, describing what activating it will do. +#: src/view/com/composer/photos/SelectGifBtn.tsx:45 +msgid "Opens the GIF picker dialog" +msgstr "" + +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:148 +msgid "Opens the post composer" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:70 +msgid "Opens this draft in the composer" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:621 +msgid "Opens this profile" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:308 +msgid "Options:" +msgstr "" + +#: src/screens/Deactivated.tsx:192 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:179 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:55 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:51 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:53 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:57 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242 +#: src/view/com/composer/labels/LabelsBtn.tsx:181 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:93 +msgid "Other account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:181 +msgid "Other child safety issue" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:208 +msgid "Other dangerous content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:119 +msgid "Other harassing or hateful content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +msgid "Other misleading content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:231 +msgid "Other network rule-breaking" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:92 +msgid "Other sexual violence content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:154 +msgid "Other violent content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:51 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:86 +#: src/components/dms/AfterReportConversationDialog.tsx:213 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:54 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:384 +msgid "Owner" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" + +#: src/components/Lists.tsx:204 +#: src/components/Lists.tsx:219 +#: src/view/screens/NotFound.tsx:34 +#: src/view/screens/NotFound.tsx:41 +msgid "Page not found" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:85 +msgid "Party GIFs" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:365 +#: src/screens/Login/LoginForm.tsx:372 +#: src/screens/Settings/AccountSettings.tsx:124 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:284 +#: src/screens/Signup/StepInfo/index.tsx:258 +msgid "Password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:70 +msgid "Password changed" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:125 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:206 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:22 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Pause GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 +msgid "Pause video" +msgstr "" + +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Search/SearchResults.tsx:107 +#: src/screens/StarterPack/StarterPackScreen.tsx:195 +msgid "People" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 +msgid "People {ownerName} follows can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 +msgid "People {ownerName} follows can request to join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:240 +msgid "People followed by @{0}" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:233 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:97 +msgctxt "allow group chat invites from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:82 +msgctxt "allow messages from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 +msgid "People I follow can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 +msgid "People I follow can request to join" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 +msgid "People you follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:524 +msgid "People you mention" +msgstr "" + +#: src/lib/media/save-image.ts:59 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Person toggle" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:60 +msgid "Personalize the message" +msgstr "" + +#: src/lib/interests.ts:68 +msgid "Pets" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:192 +#: src/components/contacts/screens/PhoneInput.tsx:204 +msgid "Phone number" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:304 +msgid "Phone number verified" +msgstr "" + +#: src/lib/interests.ts:69 +msgid "Photography" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:39 +msgid "Pick a color theme" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:165 +msgid "Pictures meant for adults." +msgstr "" + +#: src/components/FeedCard.tsx:364 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 +#: src/screens/SavedFeeds.tsx:559 +msgid "Pin feed" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:116 +msgid "Pinned" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/screens/SavedFeeds.tsx:146 +#: src/screens/SavedFeeds.tsx:337 +msgid "Pinned Feeds" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:77 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 +msgid "Play" +msgstr "" + +#. placeholder {0}: link.title +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Play GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:33 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:109 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:111 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:294 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/StepInfo/index.tsx:149 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:309 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/view/com/composer/state/video.ts:471 +msgid "Please confirm your email address to upload videos." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:102 +#: src/screens/Signup/StepInfo/index.tsx:139 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:56 +msgid "Please enter a password." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:120 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:134 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:89 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:145 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:66 +msgid "Please enter the code you received and the new password you would like to use." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/StepInfo/index.tsx:122 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:115 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:196 +msgid "Please enter your password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:190 +msgid "Please enter your username" +msgstr "" + +#. placeholder {0}: labeler ? sanitizeHandle(labeler.creator.handle, '@') : label.src +#: src/components/moderation/AppealForm.tsx:120 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:124 +msgid "Please explain why you think your Go Live access was incorrectly disabled." +msgstr "" + +#: src/components/FocusScope/index.tsx:91 +#: src/components/FocusScope/index.tsx:115 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:102 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:304 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:32 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:29 +msgid "Please select a reason for this report" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:54 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:107 +msgid "Please use the native app to import your contacts." +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:63 +msgid "Please use the native app to sync your contacts." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:29 +msgid "Please write your message below:" +msgstr "" + +#: src/lib/interests.ts:70 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +msgid "Porn" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1895 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/screens/PostThread/index.tsx:560 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 +msgid "Post a photo" +msgstr "" + +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 +msgid "Post a video" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1893 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1554 +msgid "Post anyway" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:189 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:116 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109 +#: src/screens/VideoFeed/index.tsx:551 +msgid "Post has been deleted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:127 +#: src/lib/moderation/useModerationCauseDescription.ts:107 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:130 +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:685 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:200 +#: src/screens/ModerationInteractionSettings/index.tsx:35 +msgid "Post Interaction Settings" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "" + +#. Accessibility label for button that opens dialog to choose post language settings +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:195 +msgid "Post language selection" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 +msgid "Post link" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:33 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 +#: src/screens/StarterPack/StarterPackScreen.tsx:197 +#: src/view/screens/Profile.tsx:236 +msgid "Posts" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +msgid "Posts and replies" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:123 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:76 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:89 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:82 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:292 +msgid "Preferred language" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:56 +#: src/components/Lists.tsx:104 +#: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:355 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:125 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 +msgid "Preview" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:197 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:141 +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Primary language" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:118 +#: src/view/shell/desktop/RightNav.tsx:119 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 +#: src/screens/Settings/ActivityPrivacySettings.tsx:41 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 +#: src/view/screens/Storybook/Admonitions.tsx:94 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 +#: src/Navigation.tsx:338 +#: src/screens/Settings/AboutSettings.tsx:102 +#: src/screens/Settings/AboutSettings.tsx:105 +#: src/view/screens/PrivacyPolicy.tsx:25 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 +msgid "Privacy Policy" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:173 +msgid "Privacy violation of a minor" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2691 +msgid "Processing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2693 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:62 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:956 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:322 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:164 +msgid "Profile banner placeholder" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 +#: src/lib/strings/errors.ts:39 +msgid "Profile not found" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:186 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:223 +msgid "Promoting or selling prohibited items or services" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:161 +msgid "Psst! You can edit who can interact with this post." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1879 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1874 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:1863 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1868 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:31 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:22 +msgid "Push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:26 +msgid "Push, people you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:143 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:121 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:101 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:176 +#: src/components/PostControls/RepostButton.tsx:199 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +#: src/view/com/composer/drafts/DraftItem.tsx:137 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:175 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:186 +#: src/screens/Post/PostQuotes.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:618 +msgid "Rate limit exceeded – you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:109 +msgid "Rate limit exceeded. Please try again later." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 +msgid "Re-attach quote" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 +msgid "Re-enable invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 +msgid "Re-enable link" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:80 +msgid "React with {emoji}" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:70 +#: src/components/dms/ReactionsDialog.tsx:98 +msgid "Reactions" +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "Reactivate your account" +msgstr "" + +#. placeholder {0}: item.moreReplies +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:93 +msgid "Read {0, plural, one {# more reply} other {# more replies}}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:276 +msgctxt "english-only-resource" +msgid "Read about how to use advanced search filters" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:72 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:113 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:174 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:53 +#: src/screens/Signup/StepInfo/Policies.tsx:79 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:46 +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/components/WelcomeModal.tsx:146 +msgid "Real conversations." +msgstr "" + +#: src/components/WelcomeModal.tsx:144 +msgid "Real people." +msgstr "" + +#: src/screens/Takendown.tsx:158 +#: src/screens/Takendown.tsx:166 +msgid "Reason for appeal" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +msgid "Receive push notifications" +msgstr "" + +#. Accessibility label for the icon-only pill that shows previously selected GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:35 +msgid "Recent GIFs" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:52 +msgid "Recent searches" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:249 +msgid "Recently used" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:136 +msgid "Reject" +msgstr "" + +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:424 +#: src/screens/Messages/Inbox.tsx:206 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:193 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:457 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:386 +#: src/components/FeedCard.tsx:376 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:106 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:113 +#: src/screens/Bookmarks.tsx:258 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:178 +#: src/screens/Moderation/index.tsx:477 +#: src/screens/Settings/Settings.tsx:683 +#: src/view/com/posts/PostFeedErrorMessage.tsx:221 +msgid "Remove" +msgstr "" + +#: src/components/dms/ChatProfileTabs.tsx:153 +msgid "Remove {displayName} from group chat" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:62 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 +msgid "Remove {displayName} from this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:176 +msgid "Remove {displayName}?" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:182 +msgid "Remove {q}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 +msgid "Remove account" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 +msgid "Remove all contacts" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 +msgid "Remove Banner" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:286 +msgid "Remove caption file" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:234 +#: src/screens/Messages/components/MessageInputEmbed.tsx:289 +#: src/screens/Messages/components/MessageInputEmbed.tsx:344 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:121 +#: src/view/com/posts/FeedShutdownMsg.tsx:125 +#: src/view/com/posts/PostFeedErrorMessage.tsx:177 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:218 +msgid "Remove feed?" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 +msgid "Remove filter" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 +msgid "Remove from chat" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 +#: src/screens/SavedFeeds.tsx:549 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:677 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:174 +#: src/screens/List/ListHiddenScreen.tsx:178 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:120 +#: src/screens/Bookmarks.tsx:252 +msgid "Remove from saved posts" +msgstr "" + +#: src/components/FeedCard.tsx:373 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:227 +msgid "Remove image" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:221 +#: src/features/liveNow/components/EditLiveDialog.tsx:228 +msgid "Remove live status" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 +msgid "Remove member" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:613 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:243 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:153 +#: src/components/PostControls/RepostButton.tsx:163 +msgid "Remove repost" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:500 +#: src/screens/Settings/FindContactsSettings.tsx:349 +msgid "Remove suggestion" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:219 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:473 +msgid "Remove unavailable moderation services" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:48 +#: src/components/verification/VerificationsDialog.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:416 +#: src/view/com/profile/ProfileMenu.tsx:419 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:240 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:238 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:136 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:246 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:98 +msgid "Removed from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:88 +#: src/screens/Bookmarks.tsx:211 +msgid "Removed from saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:287 +msgid "Removed from starter pack" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 +#: src/view/com/posts/FeedShutdownMsg.tsx:45 +msgid "Removed from your feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:187 +msgid "Removed unavailable services" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:541 +msgid "Renew" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:547 +msgid "Renew duration" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:531 +msgid "Renew mute word" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:134 +#: src/view/com/posts/FeedShutdownMsg.tsx:138 +msgid "Replace with Discover" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:39 +msgctxt "description" +msgid "Replied to <0><1/>" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:28 +msgctxt "description" +msgid "Replied to a blocked post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:30 +msgctxt "description" +msgid "Replied to a post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:36 +msgctxt "description" +msgid "Replied to you" +msgstr "" + +#: src/components/dms/MessageItem.tsx:926 +msgid "Replied-to message from {senderName}, tap to scroll to it" +msgstr "" + +#: src/components/dms/MessageItem.tsx:924 +msgid "Replied-to message was sent before you joined" +msgstr "" + +#: src/components/dms/MessageItem.tsx:927 +msgid "Replied-to message, tap to scroll to it" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 +#: src/lib/hooks/useNotificationHandler.ts:172 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:87 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:281 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:182 +#: src/components/dms/MessageContextMenu.tsx:185 +msgid "Reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1891 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#. placeholder {0}: post.replyCount || 0 +#: src/components/PostControls/index.tsx:240 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:136 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:135 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:71 +msgid "Reply sorting" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:220 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:583 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:483 +#: src/view/com/profile/ProfileMenu.tsx:486 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:295 +#: src/components/dms/ConvoMenu.tsx:299 +#: src/screens/Messages/components/RequestButtons.tsx:161 +#: src/screens/Messages/components/RequestButtons.tsx:164 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 +msgid "Report feed" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:210 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:213 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:217 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 +msgid "Report post" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:47 +msgid "Report sent" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:83 +#: src/components/dms/AfterReportConversationDialog.tsx:210 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 +msgid "Report submitted" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:51 +#: src/components/moderation/ReportDialog/copy.ts:65 +msgid "Report this conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +msgid "Report this feed" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:582 +msgid "Report this group chat" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +msgid "Report this list" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 +msgid "Report this livestream" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:57 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:43 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:154 +#: src/components/PostControls/RepostButton.tsx:165 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:78 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:146 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:577 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:31 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:97 +msgid "Reposted by {reposter}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:95 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:165 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:207 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 +msgid "Reposts of your reposts" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:463 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:226 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:232 +msgid "Request code" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request rejected." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:295 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + +#. Incoming message requests +#: src/screens/Messages/components/InboxRequests.tsx:25 +msgid "Requests" +msgstr "" + +#: src/Navigation.tsx:519 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:59 +#: src/screens/Settings/AccessibilitySettings.tsx:64 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:207 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:310 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:115 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:117 +msgid "Rescind request" +msgstr "" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 +msgid "Resend" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:365 +#: src/components/contacts/screens/VerifyNumber.tsx:382 +msgid "Resend code" +msgstr "" + +#. placeholder {0}: String( clamp(Math.round(timeUntilCanResend / 1000), 0, 30), ).padStart(2, '0') +#: src/components/contacts/screens/VerifyNumber.tsx:372 +msgid "Resend code in <0>00:{0}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:174 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:177 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:124 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:117 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:499 +#: src/screens/Settings/Settings.tsx:501 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "Reset code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:484 +#: src/screens/Settings/Settings.tsx:486 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:77 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:422 +msgid "Reset your password by sending a code to your email" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 +msgid "Resync contacts" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:532 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:56 +#: src/view/com/util/error/ErrorScreen.tsx:93 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:28 +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 +#: src/components/contacts/screens/VerifyNumber.tsx:350 +#: src/components/contacts/screens/VerifyNumber.tsx:355 +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:115 +#: src/components/moderation/ReportDialog/index.tsx:297 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 +#: src/screens/Login/LoginForm.tsx:531 +#: src/screens/Login/LoginForm.tsx:537 +#: src/screens/Messages/ChatList.tsx:429 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/JoinRequests.tsx:361 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:95 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/PostThread/components/ThreadError.tsx:87 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:91 +#: src/view/screens/Storybook/Admonitions.tsx:64 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:294 +#: src/view/screens/Storybook/Admonitions.tsx:61 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:68 +#: src/screens/List/ListHiddenScreen.tsx:223 +#: src/screens/StarterPack/StarterPackScreen.tsx:801 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to home page" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:36 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:577 +#: src/screens/VideoFeed/index.tsx:1240 +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:316 +msgid "Returns to the previous step" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Reveal password" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:75 +msgid "Sad GIFs" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:309 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 +#: src/components/StarterPack/QrCodeDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:197 +#: src/features/liveNow/components/EditLiveDialog.tsx:204 +#: src/screens/Messages/ConversationSettings/prompts.tsx:82 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Profile/Header/EditProfileDialog.tsx:247 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:315 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:269 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/GifAltText.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:63 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:76 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:173 +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:193 +msgid "Save birthdate" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:198 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:207 +#: src/screens/SavedFeeds.tsx:120 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:311 +#: src/screens/SavedFeeds.tsx:315 +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save changes" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1507 +#: src/view/com/composer/drafts/DraftsButton.tsx:93 +msgid "Save changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save draft" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1509 +#: src/view/com/composer/drafts/DraftsButton.tsx:95 +msgid "Save draft?" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/MediaPreview.tsx:231 +#: src/components/Post/Embed/ImageContextMenu.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:144 +#: src/components/StarterPack/ShareDialog.tsx:150 +msgid "Save image" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:255 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:202 +msgid "Save QR code" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:655 +msgid "Save these options for next time" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 +msgid "Save to my feeds" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 +msgctxt "link to bookmarks screen" +msgid "Saved" +msgstr "" + +#: src/screens/SavedFeeds.tsx:198 +#: src/screens/SavedFeeds.tsx:375 +msgid "Saved Feeds" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:579 +#: src/screens/Bookmarks.tsx:59 +msgid "Saved Posts" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/screens/ProfileList/components/Header.tsx:88 +msgid "Saved to your feeds" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +#: src/view/com/notifications/NotificationFeedItem.tsx:895 +#: src/view/com/notifications/NotificationFeedItem.tsx:920 +msgid "Say hello!" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 +msgid "Say hi to someone" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:43 +msgid "Scam" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:318 +msgid "Scan QR code" +msgstr "" + +#: src/lib/interests.ts:71 +msgid "Science" +msgstr "" + +#: src/components/InterestTabs.tsx:258 +msgid "Scroll left" +msgstr "" + +#: src/components/InterestTabs.tsx:292 +msgid "Scroll right" +msgstr "" + +#: src/components/dms/MessageItem.tsx:820 +msgid "Scroll to the message this is replying to" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:132 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:667 +#: src/components/forms/SearchInput.tsx:51 +#: src/components/forms/SearchInput.tsx:53 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 +#: src/screens/Search/Shell.tsx:753 +#: src/view/shell/bottom-bar/BottomBar.tsx:216 +msgid "Search" +msgstr "" + +#. placeholder {0}: profile.handle +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:259 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:708 +msgid "Search by name or interest" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:356 +msgid "Search contacts" +msgstr "" + +#: src/view/screens/Feeds.tsx:437 +msgid "Search feeds" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected. +#: src/components/ProgressGuide/FollowDialog.tsx:505 +msgid "Search for \"{interestsDisplayName}\"" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected. +#: src/components/ProgressGuide/FollowDialog.tsx:500 +msgid "Search for \"{interestsDisplayName}\" (active)" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:49 +msgid "Search for “{searchText}”" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:136 +msgid "Search for {q}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:452 +msgid "Search for more feeds" +msgstr "" + +#: src/components/dms/components/UserSearchInput.tsx:43 +msgid "Search for people" +msgstr "" + +#. Accessibility label for the GIF search input inside the GIF picker dialog. +#: src/features/gifPicker/components/GifPickerHeader.tsx:40 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Hashtag.tsx:228 +#: src/screens/Search/SearchResults.tsx:410 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#. Placeholder text inside the GIF search input. KLIPY is the third-party GIF provider; keep the brand name as-is. +#: src/features/gifPicker/components/GifPickerHeader.tsx:45 +msgid "Search KLIPY" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:232 +#: src/components/dialogs/LanguageSelectDialog.tsx:233 +msgid "Search languages" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:301 +#: src/view/com/profile/ProfileMenu.tsx:304 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:687 +#: src/components/dms/components/UserSearchInput.tsx:63 +#: src/components/ProgressGuide/FollowDialog.tsx:727 +msgid "Search profiles" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 +msgid "Search query" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:688 +#: src/components/dms/components/UserSearchInput.tsx:64 +#: src/components/ProgressGuide/FollowDialog.tsx:728 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 +msgid "Security step required" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:114 +msgid "See {0} posts" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:131 +msgid "See {0} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:122 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:142 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:179 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:491 +#: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:472 +msgid "See more suggested profiles" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 +msgid "See suggested accounts" +msgstr "" + +#: src/screens/SavedFeeds.tsx:232 +#: src/screens/SavedFeeds.tsx:403 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:196 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. +#: src/components/InterestTabs.tsx:340 +msgid "Select \"{interestsDisplayName}\" category" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#. Accessibility label for a username suggestion in the account creation flow +#. placeholder {0}: item.handle +#. placeholder {0}: suggestion.handle +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:40 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:72 +msgid "Select {0}" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:110 +msgid "Select {langName}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:380 +msgid "Select a reason" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:79 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:63 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:199 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:118 +msgid "Select app language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +msgid "Select caption file (.vtt)" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 +msgid "Select chat \"{name}\"" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:195 +#: src/screens/Settings/LanguageSettings.tsx:233 +msgid "Select content languages" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:186 +msgid "Select duration" +msgstr "" + +#. placeholder {0}: labels[filter.field].title +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 +msgid "Select filter type (currently: {0})" +msgstr "" + +#: src/screens/Login/index.tsx:166 +msgid "Select from an existing account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:553 +msgid "Select from your lists" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:555 +msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}" +msgstr "" + +#. Accessibility label for the button in the post composer that opens the GIF picker dialog. +#: src/view/com/composer/photos/SelectGifBtn.tsx:38 +msgid "Select GIF" +msgstr "" + +#. Accessibility label for an individual GIF tile in the picker grid. The placeholder is the GIF’s title from the provider. +#. placeholder {0}: gif.title +#: src/features/gifPicker/components/GifPickerItem.tsx:31 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:830 +msgid "Select group chat members" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:151 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:71 +#: src/components/LanguageSelect.tsx:41 +#: src/components/LanguageSelect.tsx:42 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:273 +msgid "Select language..." +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:267 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:430 +msgid "Select moderation service" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:91 +msgid "Select post language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:152 +msgid "Select primary language" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:68 +msgid "Select telephone code" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/Post/Translated/index.tsx:446 +msgid "Select the source language" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:77 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:137 +msgid "Select up to 3 languages used in this post" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:251 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:111 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:181 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:300 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:69 +#: src/screens/Settings/InterestsSettings.tsx:178 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:145 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:426 +msgid "Selecting multiple media types is not supported." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:188 +msgid "Self-harm or dangerous behaviors" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:255 +#: src/components/contacts/screens/PhoneInput.tsx:260 +msgid "Send code" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:199 +msgid "Send email" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:60 +#: src/components/SendErrorReportDialog.tsx:64 +#: src/screens/Settings/AboutSettings.tsx:125 +#: src/screens/Settings/AboutSettings.tsx:128 +msgid "Send error report" +msgstr "" + +#: src/view/shell/Drawer.tsx:420 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:324 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:146 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 +msgid "Send post to..." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:818 +msgid "Send report to {title}" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:63 +msgid "Send the message from your phone" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) +#: src/components/dms/MessageContextMenu.tsx:175 +msgid "Sent at {0}" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:283 +msgid "Sent to our phone number verification provider Plivo" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:174 +#: src/screens/Login/components/HostingProviderDialog.tsx:200 +msgid "Server address" +msgstr "" + +#. placeholder {0}: icon.name +#: src/screens/Settings/AppIconSettings/index.tsx:176 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:99 +msgid "Set new password" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:481 +msgid "Set precisely which groups of people can reply to your post" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:431 +msgid "Set who can reply to your post" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:286 +msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:352 +msgid "set your hosting provider manually" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:486 +msgid "Set your hosting provider manually" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:104 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:215 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:220 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:293 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:233 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Messages/Settings.tsx:280 +#: src/screens/Settings/NotificationSettings/index.tsx:276 +msgid "Settings for notifications for new message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:259 +#: src/screens/Settings/NotificationSettings/index.tsx:259 +msgid "Settings for notifications for new messages" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:246 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:198 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:209 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:103 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/Link.tsx:428 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/screens/Hashtag.tsx:130 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/StarterPack/StarterPackScreen.tsx:447 +#: src/screens/Topic.tsx:89 +msgid "Share" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:62 +msgid "Share age range" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:549 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 +msgid "Share author DID" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:158 +#: src/screens/Settings/BetaFeaturesSettings.tsx:165 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 +msgid "Share feedback" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 +msgid "Share image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:120 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/features/inviteFriends/components/ActionButtons.tsx:28 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:74 +msgid "Share link dialog" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 +msgid "Share post at:// URI" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:141 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:156 +msgid "Share Profile" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:129 +#: src/components/StarterPack/ShareDialog.tsx:139 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 +msgid "Share this feed" +msgstr "" + +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 +msgid "Share this search" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:440 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:86 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 +#: src/screens/StarterPack/StarterPackScreen.tsx:646 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:292 +msgid "Share via..." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:232 +msgid "Share your contacts to find friends" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 +msgid "Share your thoughts…" +msgstr "" + +#: src/Navigation.tsx:323 +msgid "Shared Preferences Tester" +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 +msgid "Sharing your age range reveals only the range associated with your Apple Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 +msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:140 +msgid "Show" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:48 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 +#: src/features/liveNow/components/LiveStatusDialog.tsx:318 +#: src/features/liveNow/components/LiveStatusDialog.tsx:322 +#: src/screens/List/ListHiddenScreen.tsx:194 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 +msgid "Show anyway" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 +msgid "Show automation label" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:64 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:125 +msgid "Show customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Show group chat updates" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:190 +msgid "Show list anyway" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:534 +msgid "Show lists of users to select from" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15 +msgid "Show more replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:99 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:108 +#: src/screens/Settings/FollowingFeedPreferences.tsx:118 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:72 +#: src/screens/Settings/FollowingFeedPreferences.tsx:82 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:45 +msgid "Show replies as" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:90 +#: src/screens/Settings/FollowingFeedPreferences.tsx:100 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:133 +#: src/screens/Settings/FollowingFeedPreferences.tsx:143 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:59 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 +msgid "Show when you’re live" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:124 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:169 +#: src/components/moderation/PostHider.tsx:94 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:98 +#: src/components/dialogs/Signin.tsx:100 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 +#: src/screens/Hashtag.tsx:231 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/index.tsx:165 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Login/LoginForm.tsx:554 +#: src/screens/Login/LoginForm.tsx:560 +#: src/screens/Messages/JoinRequest.tsx:290 +#: src/screens/Messages/JoinRequest.tsx:296 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBar.tsx:364 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255 +#: src/view/shell/NavSignupCard.tsx:58 +#: src/view/shell/NavSignupCard.tsx:63 +msgid "Sign in" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:135 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:84 +msgid "Sign in as…" +msgstr "" + +#: src/screens/Deactivated.tsx:195 +#: src/screens/Deactivated.tsx:201 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:76 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:216 +msgid "Sign in to accept invite." +msgstr "" + +#: src/components/AccountList.tsx:70 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:47 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Sign in to request access to this group chat." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:274 +#: src/screens/Settings/Settings.tsx:276 +#: src/screens/Settings/Settings.tsx:308 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:97 +#: src/screens/Takendown.tsx:88 +#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:282 +#: src/view/shell/desktop/LeftNav.tsx:285 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:91 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:305 +#: src/view/shell/desktop/LeftNav.tsx:224 +msgid "Sign out?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:572 +msgid "Sign up" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:96 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:42 +#: src/screens/Login/ChooseAccountForm.tsx:54 +msgid "Signed in as @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 +msgid "Since" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:163 +#: src/components/contacts/screens/VerifyNumber.tsx:205 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:86 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:90 +#: src/screens/Onboarding/StepFinished/index.tsx:295 +#: src/screens/Onboarding/StepFinished/index.tsx:317 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:281 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:105 +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Skip" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:160 +#: src/components/contacts/screens/VerifyNumber.tsx:202 +msgid "Skip contact sharing and continue to the app" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1552 +msgid "Skip empty posts?" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:288 +#: src/screens/Onboarding/StepFinished/index.tsx:314 +msgid "Skip introduction and start using your account" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:278 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 +msgid "Skip to next step" +msgstr "" + +#: src/components/images/Gallery/index.tsx:441 +msgid "slide" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Snoozes the reminder" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:155 +msgid "So many thoughts, you should post one" +msgstr "" + +#: src/components/WelcomeModal.tsx:148 +msgid "Social media you control." +msgstr "" + +#. Name for a feature flag +#: src/analytics/features/index.ts:84 +msgid "Social proofing on posts" +msgstr "" + +#: src/lib/interests.ts:58 +msgid "Software Dev" +msgstr "" + +#: src/screens/Moderation/index.tsx:466 +msgid "Some moderation services in your list are no longer available." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:122 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:628 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:88 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:86 +msgid "Someone joined" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:87 +msgid "Someone joined the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:99 +msgid "Someone left" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:100 +msgid "Someone left the group" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:368 +msgid "Someone reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:67 +msgid "Someone reacted {0} to {target}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:813 +msgid "Someone replied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:60 +msgid "Someone was added" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:61 +msgid "Someone was added to the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:73 +msgid "Someone was removed" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:74 +msgid "Someone was removed from the group" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:103 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 +#: src/components/moderation/ReportDialog/index.tsx:289 +#: src/screens/Deactivated.tsx:86 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +#: src/view/screens/Storybook/Admonitions.tsx:56 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/screens/Moderation/index.tsx:112 +#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Settings/BetaFeaturesSettings.tsx:80 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:185 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:28 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:247 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:231 +msgid "Sorry, we're unable to load account suggestions at this time." +msgstr "" + +#: src/App.tsx:139 +#: src/App.web.tsx:118 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:45 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:52 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:49 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:197 +#: src/components/moderation/ModerationDetailsDialog.tsx:272 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36 +msgid "Spam or other inauthentic behavior or deception" +msgstr "" + +#: src/lib/interests.ts:72 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 +msgid "Sports" +msgstr "" + +#. Description of a feature flag (Social proofing on posts) +#: src/analytics/features/index.ts:90 +msgid "Spot posts your friends and follows have liked." +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:192 +msgid "Start a new chat" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:104 +#: src/screens/ProfileList/FeedSection.tsx:82 +msgid "Start adding people" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:110 +#: src/screens/ProfileList/FeedSection.tsx:88 +msgid "Start adding people!" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:831 +msgid "Start chat" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:428 +#: src/components/dms/InitiateChatFlow.tsx:1087 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 +#: src/screens/StarterPack/Wizard/index.tsx:197 +msgid "Starter Pack" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#: src/components/StarterPack/StarterPackCard.tsx:91 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:765 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:105 +msgid "Starter packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/view/screens/Profile.tsx:569 +msgid "Starter Packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/AboutSettings.tsx:113 +msgid "Status Page" +msgstr "" + +#. placeholder {0}: state.activeStep + 1 +#. placeholder {0}: state.activeStepIndex + 1 +#. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' +#. placeholder {1}: state.totalSteps +#: src/screens/Onboarding/Layout.tsx:226 +#: src/screens/Signup/index.tsx:189 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:410 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:294 +msgid "Stored as part of a secure code for matching with others" +msgstr "" + +#: src/Navigation.tsx:308 +#: src/screens/Settings/Settings.tsx:465 +msgid "Storybook" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182 +msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:122 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128 +#: src/components/moderation/AppealForm.tsx:154 +#: src/components/moderation/AppealForm.tsx:155 +#: src/components/SendErrorReportDialog.tsx:90 +#: src/components/SendErrorReportDialog.tsx:95 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:133 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:80 +msgid "Submit Appeal" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 +msgid "Submit feedback" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:508 +#: src/components/moderation/ReportDialog/index.tsx:569 +#: src/components/moderation/ReportDialog/index.tsx:576 +msgid "Submit report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:75 +msgid "Subscribe" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:447 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:476 +msgid "Subscribe on {0}" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:475 +msgid "Subscribe to {publicationTitle} on {0}" +msgstr "" + +#. placeholder {0}: labelerInfo.creator.handle +#: src/screens/Profile/Sections/Labels.tsx:232 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:252 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:322 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:63 +msgid "Subscribe to this list" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:252 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:160 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 +msgid "Success!" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:131 +msgid "Successfully joined the group chat!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:37 +msgid "Successfully verified" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:432 +msgid "Suggested" +msgstr "" + +#: src/screens/Search/Explore.tsx:369 +msgid "Suggested accounts" +msgstr "" + +#. Accounts suggested to the user for them to follow +#: src/components/FeedInterstitials.tsx:469 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:143 +msgid "Suggestive" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Sunlight" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:333 +#: src/view/screens/Support.tsx:25 +#: src/view/screens/Support.tsx:28 +msgid "Support" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:236 +msgid "Support for this feature in your country has not been enabled yet! Please check back later." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 +msgid "Suspended accounts cannot participate in chat." +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:47 +#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:135 +#: src/screens/Settings/Settings.tsx:624 +#: src/view/shell/desktop/LeftNav.tsx:262 +msgid "Switch account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:124 +msgid "Switch accounts" +msgstr "" + +#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) +#: src/view/shell/desktop/LeftNav.tsx:364 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/components/dialogs/Embed.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 +msgid "System" +msgstr "" + +#: src/screens/Log.tsx:49 +#: src/screens/Settings/AboutSettings.tsx:117 +#: src/screens/Settings/AboutSettings.tsx:120 +#: src/screens/Settings/Settings.tsx:458 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:291 +msgid "Tags only" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:110 +msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." +msgstr "" + +#: src/components/dms/MessageItem.tsx:682 +msgid "Tap for details" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:90 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:45 +msgid "Tap for more information" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:326 +msgid "Tap here to update your location with GPS." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:159 +msgid "Tap to dismiss" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:469 +msgid "Tap to join this group chat immediately" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:200 +msgid "Tap to remove" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/ReactionsDialog.tsx:216 +msgid "Tap to remove your {0} reaction" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:468 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:647 +msgid "Tap to retry" +msgstr "" + +#. placeholder {0}: tab.value +#: src/components/dms/ReactionsDialog.tsx:362 +msgid "Tap to show {0} reactions" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:361 +msgid "Tap to show all reactions" +msgstr "" + +#: src/components/dms/MessageItem.tsx:394 +msgid "Tap to view reactions" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +msgid "Targeted harassment" +msgstr "" + +#: src/state/shell/progress-guide.tsx:236 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:226 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:109 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/lib/interests.ts:73 +msgid "Tech" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:368 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:70 +msgid "Tell us a little more" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:214 +msgid "Temporarily deactivate your account" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:125 +#: src/view/shell/desktop/RightNav.tsx:126 +msgid "Terms" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:181 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 +#: src/Navigation.tsx:343 +#: src/screens/Settings/AboutSettings.tsx:94 +#: src/screens/Settings/AboutSettings.tsx:97 +#: src/view/screens/TermsOfService.tsx:25 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 +msgid "Terms of Service" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:275 +msgid "Text & tags" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:118 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 +msgid "Thanks for your feedback!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:77 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:233 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:224 +msgid "Thanks! You're all set." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:500 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:116 +#: src/screens/StarterPack/StarterPackScreen.tsx:160 +#: src/screens/StarterPack/StarterPackScreen.tsx:161 +#: src/screens/StarterPack/Wizard/index.tsx:116 +#: src/screens/StarterPack/Wizard/index.tsx:126 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:90 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:142 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1212 +msgid "That's everything!" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:422 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:139 +#: src/lib/moderation/useModerationCauseDescription.ts:129 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:169 +msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you." +msgstr "" + +#: src/screens/Moderation/index.tsx:415 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:32 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:29 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:107 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:227 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:70 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:64 +msgid "The following labels were applied to this post." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:63 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:168 +msgid "The following services are enabled for your account: {allowedServices}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:43 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:23 +msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 +msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:29 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:468 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:41 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:775 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:507 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:31 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:29 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:89 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:115 +#: src/components/contacts/screens/VerifyNumber.tsx:113 +#: src/components/contacts/screens/VerifyNumber.tsx:165 +msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:137 +msgid "Theme" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:106 +msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 +msgid "There is no invite link for this group chat." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#. Body message of the error screen shown when the GIF provider request fails. Encourages the user to retry. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:56 +msgid "There was a problem loading GIFs. Check your connection and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:149 +#: src/components/intents/GroupChatJoinDialog.tsx:195 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 +msgid "There was a problem with your internet connection, please try again" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 +#: src/screens/ProfileList/components/Header.tsx:91 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 +#: src/screens/SavedFeeds.tsx:99 +#: src/screens/SavedFeeds.tsx:278 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:133 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:185 +#: src/view/com/lists/ProfileLists.tsx:184 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:109 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:153 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 +#: src/view/com/posts/FeedShutdownMsg.tsx:53 +#: src/view/com/posts/FeedShutdownMsg.tsx:74 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: e.toString() +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:475 +#: src/screens/Messages/ConversationSettings/Member.tsx:71 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:114 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:127 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:92 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:257 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:157 +#: src/view/com/profile/ProfileMenu.tsx:174 +#: src/view/com/profile/ProfileMenu.tsx:187 +#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:218 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:241 +#: src/screens/List/ListHiddenScreen.tsx:67 +#: src/screens/List/ListHiddenScreen.tsx:81 +#: src/screens/List/ListHiddenScreen.tsx:103 +#: src/screens/ProfileList/components/Header.tsx:106 +#: src/screens/ProfileList/components/Header.tsx:120 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:121 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:135 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:38 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:53 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#. Body of the error screen shown when the GIF picker crashes unexpectedly. Encourages the user to report the issue. +#: src/components/dialogs/LanguageSelectDialog.tsx:349 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:27 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:133 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:660 +msgid "These are your default settings" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 +msgid "These domains" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 +msgid "These hashtags" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:66 +msgid "These settings only apply to the Following feed." +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 +msgid "These URLs" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:353 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:177 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:116 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:89 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/BotAccountAlert.tsx:27 +msgid "This account has been marked as automated by its owner." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:94 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:33 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:56 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:96 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 +#: src/screens/Messages/components/ChatDisabled.tsx:138 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "This author has chosen to make their posts visible only to people who are signed in." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:244 +msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below." +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:48 +msgid "This chat has ended" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:301 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:376 +#: src/screens/Messages/components/ChatLocked.tsx:69 +msgid "This chat is locked" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:437 +msgid "This chat is locked by a moderation action" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:17 +msgid "This chat was disconnected" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:106 +msgid "This code is invalid. Resend to get a new code." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:145 +msgid "This confirmation code is not valid. Please try again." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:85 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:122 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This conversation is locked." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:156 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:240 +msgid "This draft will be permanently deleted." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:280 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:283 +msgid "This exact phrase" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:56 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:166 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:61 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:30 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:128 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:60 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:41 +#: src/screens/Profile/ProfileFeed/index.tsx:170 +#: src/screens/ProfileList/FeedSection.tsx:78 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:104 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:72 +msgid "This group is locked by a moderation action on the owner" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:611 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:140 +msgid "This image could not be used. Try a different format like .jpg or .png." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:62 +msgid "This information is private and not shared with other users." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:161 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:236 +msgid "This invite link is invalid" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 +msgid "This is just a one-time security check, since we haven't seen this account on this device before." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:171 +#: src/features/liveNow/components/GoLiveDialog.tsx:161 +msgid "This is not a valid link" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:173 +msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:254 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:184 +msgid "This label was applied by you." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/ModerationDetailsDialog.tsx:231 +msgid "This label was applied to the entire user account and will appear on all posts." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:219 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:95 +msgid "This link is taking you to the following website:" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/screens/List/ListHiddenScreen.tsx:155 +msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:150 +msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:100 +msgid "This list is empty." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:335 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 +msgid "This message is hidden because this user is blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 +msgid "This message is hidden because you are blocking this user." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:41 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "This person is blocking you" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt) +#. placeholder {1}: niceDate(i18n, indexedAt) +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:274 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:248 +msgid "This post was deleted by its author" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1127 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:547 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 +msgid "This screen is only available for group conversations." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/features/liveNow/index.tsx:203 +msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:469 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:214 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:94 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:217 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:99 +#: src/lib/moderation/useModerationCauseDescription.ts:76 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 +msgid "This user has disabled chat and cannot be messaged." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:49 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:196 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 +msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:65 +msgid "This video can’t be previewed in your browser. It will still be uploaded." +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 +msgid "This will create a new list with the same name, description, and members as this starter pack." +msgstr "" + +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:454 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:330 +msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Settings/Settings.tsx:678 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:25 +#: src/screens/PostThread/components/HeaderDropdown.tsx:28 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:70 +#: src/screens/Settings/ContentAndMediaSettings.tsx:73 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:35 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:59 +#: src/screens/PostThread/components/HeaderDropdown.tsx:64 +msgid "Threaded" +msgstr "" + +#: src/Navigation.tsx:376 +msgid "Threads Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134 +msgid "Threats or incitement" +msgstr "" + +#. placeholder {0}: Number(time) || 0 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:68 +msgid "Title" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:71 +msgid "Title (100 characters max)" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:100 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:315 +msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." +msgstr "" + +#: src/components/dms/DateDivider.tsx:27 +msgid "Today" +msgstr "" + +#: src/screens/Moderation/index.tsx:392 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:186 +msgid "Toggles the sound" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:123 +msgid "Too many attempts. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:176 +msgid "Too many codes sent. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:156 +msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends" +msgstr "" + +#: src/screens/Hashtag.tsx:86 +#: src/screens/Search/SearchResults.tsx:83 +#: src/screens/Topic.tsx:58 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:75 +#: src/screens/PostThread/components/HeaderDropdown.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:57 +#: src/screens/Settings/ThreadPreferences.tsx:60 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:503 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:191 +#: src/components/dms/MessageContextMenu.tsx:194 +#: src/components/Post/Translated/index.tsx:150 +#: src/components/Post/Translated/index.tsx:157 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 +msgid "Translate" +msgstr "" + +#: src/components/Post/Translated/index.tsx:326 +msgid "Translated" +msgstr "" + +#: src/components/Post/Translated/index.tsx:113 +msgid "Translating" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 +msgid "Translating…" +msgstr "" + +#: src/lib/translation/index.tsx:305 +msgid "Translation to the same language is unavailable on your device." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:87 +#: src/screens/Settings/ThreadPreferences.tsx:92 +msgid "Tree view" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 +msgid "Trending" +msgstr "" + +#. Accessibility label for the icon-only pill that shows currently trending/featured GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:45 +msgid "Trending GIFs" +msgstr "" + +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 +msgid "Trending options" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:87 +msgid "Trending Videos" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 +msgid "Trolling" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 +msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:260 +msgid "Try a different search term or remove some filters." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:262 +msgid "Try a different search term." +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:171 +msgid "Try again in a moment." +msgstr "" + +#: src/components/Post/Translated/index.tsx:229 +#: src/components/Post/Translated/index.tsx:242 +msgid "Try Google Translate" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "" + +#: src/lib/interests.ts:74 +msgid "TV" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:32 +msgid "Twilight" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Type:" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:86 +msgid "Unable to access location. You'll need to visit your system settings to enable location services for Bluesky." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:30 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:96 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:141 +msgid "Unable to contact your service. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:66 +#: src/screens/Login/index.tsx:100 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:77 +#: src/screens/Signup/index.tsx:89 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:700 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 +msgid "Unable to find the selected recipient." +msgstr "" + +#: src/lib/strings/errors.ts:42 +msgid "Unable to resolve handle" +msgstr "" + +#: src/screens/Settings/Settings.tsx:524 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:526 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:43 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:127 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessageItem.tsx:747 +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:427 +#: src/screens/ProfileList/components/Header.tsx:166 +#: src/screens/ProfileList/components/Header.tsx:173 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 +msgid "Unblock {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:463 +#: src/view/com/profile/ProfileMenu.tsx:469 +msgid "Unblock account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +msgid "Unblock Account?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:242 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:245 +msgid "Unblock list" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 +#: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 +msgid "Undo" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:43 +msgctxt "Button label to undo saving/removing a post from saved posts." +msgid "Undo" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:68 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:396 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:329 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:919 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:492 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:263 +msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:247 +msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:209 +msgid "Unknown verifier" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +msgid "Unlabeled adult content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +msgid "Unlabeled, abusive, or non-consensual adult content" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:276 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:91 +msgid "Unlock chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:568 +msgid "Unlock this group chat" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:180 +#: src/screens/ProfileList/components/Header.tsx:187 +msgid "Unmute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:183 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:153 +#: src/components/RichTextTag.tsx:169 +msgid "Unmute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 +#: src/view/com/profile/ProfileMenu.tsx:442 +#: src/view/com/profile/ProfileMenu.tsx:448 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:272 +msgid "Unmute conversation" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:252 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:255 +msgid "Unmute list" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:533 +msgid "Unmute this group chat" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 +msgid "Unmute video" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Unpin" +msgstr "" + +#: src/components/FeedCard.tsx:355 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 +#: src/screens/SavedFeeds.tsx:467 +msgid "Unpin feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Unpin from profile" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:225 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:228 +msgid "Unpin moderation list" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:78 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:105 +msgid "Unpinned list" +msgstr "" + +#: src/screens/Settings/Settings.tsx:491 +#: src/screens/Settings/Settings.tsx:493 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:354 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:202 +#: src/screens/List/ListHiddenScreen.tsx:212 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:321 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:90 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.tsx:127 +msgid "Unsupported clipboard content" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1644 +msgid "Unsupported video type: {mimeType}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 +msgid "Until" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +#: src/screens/Settings/components/OTAInfo.tsx:77 +msgid "Update" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(profile, true) +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:138 +msgid "Update {0} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 +#: src/screens/Settings/AccountSettings.tsx:110 +#: src/screens/Settings/AccountSettings.tsx:118 +msgid "Update email" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:142 +msgid "Update in Lists" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:275 +#: src/screens/Messages/components/InviteLinkDialog.tsx:303 +msgid "Update invite link" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:544 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:565 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 +msgid "Update your email" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:208 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:252 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 +msgid "Update your location" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:312 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:485 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:494 +#: src/view/com/util/UserAvatar.tsx:497 +#: src/view/com/util/UserBanner.tsx:164 +#: src/view/com/util/UserBanner.tsx:167 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:505 +#: src/view/com/util/UserAvatar.tsx:509 +#: src/view/com/util/UserBanner.tsx:175 +#: src/view/com/util/UserBanner.tsx:179 +msgid "Upload from Library" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2684 +msgid "Uploading GIF..." +msgstr "" + +#: src/lib/api/index.ts:327 +#: src/lib/api/index.ts:354 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:426 +#: src/lib/api/index.ts:450 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2686 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:576 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:78 +#: src/components/dialogs/InAppBrowserConsent.tsx:84 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:104 +#: src/screens/Settings/ContentAndMediaSettings.tsx:110 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:88 +#: src/components/dialogs/InAppBrowserConsent.tsx:94 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:57 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:278 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/screens/Profile.tsx:396 +msgid "user" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +#: src/lib/moderation/useModerationCauseDescription.ts:64 +msgid "User Blocked" +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:56 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:74 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:97 +msgid "User Blocks You" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:303 +msgid "User list by {0}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/state/queries/feed.ts:171 +msgid "User List by {0}" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:301 +msgid "User list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:255 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:241 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:257 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:241 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:245 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:305 +msgid "Username or email" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:315 +msgid "Username or email address" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:337 +msgid "users followed by <0>@{0}" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:324 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:451 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:40 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:344 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:208 +#: src/screens/Moderation/VerificationSettings.tsx:34 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:43 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:105 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:85 +#: src/components/verification/VerificationCreatePrompt.tsx:87 +#: src/view/com/profile/ProfileMenu.tsx:426 +#: src/view/com/profile/ProfileMenu.tsx:429 +msgid "Verify account" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:64 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:546 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:62 +msgid "Verify email dialog" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:65 +msgid "Verify now" +msgstr "" + +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 +msgid "Verify now using KWS" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:175 +#: src/components/contacts/screens/VerifyNumber.tsx:217 +msgid "Verify phone number" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:569 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:52 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 +#: src/screens/Settings/AccountSettings.tsx:84 +#: src/screens/Settings/AccountSettings.tsx:104 +msgid "Verify your email" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Verifying" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:165 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:75 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:307 +msgid "Verifying..." +msgstr "" + +#. placeholder {0}: env.APP_VERSION +#: src/screens/Settings/AboutSettings.tsx:144 +#: src/screens/Settings/AboutSettings.tsx:173 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:162 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:390 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:571 +msgid "Video Feed" +msgstr "" + +#. placeholder {0}: author.handle +#: src/components/VideoPostCard.tsx:122 +msgid "Video from {0}: {text}" +msgstr "" + +#. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) +#: src/screens/VideoFeed/index.tsx:1174 +msgid "Video from {0}. Tap to play or pause the video" +msgstr "" + +#: src/lib/interests.ts:62 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2704 +msgid "Video uploaded" +msgstr "" + +#. placeholder {0}: embed.alt +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:239 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 +#: src/view/com/composer/SelectMediaButton.tsx:440 +msgid "Videos must be less than 3 minutes long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1234 +msgctxt "Action to view the post the user just created" +msgid "View" +msgstr "" + +#. placeholder {0}: view.source.title +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View {0}" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/Shell.tsx:256 +msgid "View {0}'s avatar" +msgstr "" + +#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle +#. placeholder {0}: info.creatorHandle +#. placeholder {0}: profile.handle +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +#: src/screens/Search/components/SearchProfileCard.tsx:37 +#: src/screens/VideoFeed/index.tsx:880 +#: src/view/com/notifications/NotificationFeedItem.tsx:619 +msgid "View {0}'s profile" +msgstr "" + +#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle) +#: src/components/ProfileCard.tsx:150 +msgid "View {0}’s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 +msgid "View {displayName}’s profile" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:478 +msgid "View {publicationTitle}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:479 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:170 +msgid "View blogpost for more details" +msgstr "" + +#: src/screens/Log.tsx:72 +msgid "View debug entry" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 +msgid "View details" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:31 +#: src/view/com/posts/ViewFullThread.tsx:65 +msgid "View full thread" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +msgid "View incoming group chat requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:51 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:200 +#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 +msgid "View more" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:228 +msgid "View more trending videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1229 +msgid "View post" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:465 +#: src/components/ProfileHoverCard/index.web.tsx:485 +#: src/components/ProfileHoverCard/index.web.tsx:512 +#: src/view/com/posts/PostFeedErrorMessage.tsx:183 +#: src/view/com/util/PostMeta.tsx:92 +#: src/view/com/util/PostMeta.tsx:120 +msgid "View profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:163 +msgid "View profile banner" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:448 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:479 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View publication" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:108 +msgid "View the avatar" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:555 +msgid "View the invite link for this group chat" +msgstr "" + +#. placeholder {0}: labeler.creator.handle +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:103 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:401 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:324 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:264 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:294 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:309 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:102 +msgid "View your verifications" +msgstr "" + +#: src/components/images/AutoSizedImage.tsx:222 +#: src/components/images/AutoSizedImage.tsx:254 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:121 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126 +msgid "Violence" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127 +msgid "Violent or threatening content" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:122 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:296 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:49 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 +msgid "Watch now" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:253 +msgid "We apply the highest privacy standards, and never share or sell your contact information." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:141 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:147 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:348 +msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." +msgstr "" + +#: src/screens/Hashtag.tsx:260 +msgid "We couldn't find any results for that tag." +msgstr "" + +#: src/screens/Topic.tsx:166 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:134 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 +msgid "We couldn’t load this conversation’s settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:482 +msgid "We couldn’t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:244 +msgid "We delete hashes after matches are made" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:67 +msgid "We don't store your friends' phone numbers or send any messages" +msgstr "" + +#: src/screens/SignupQueued.tsx:163 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:197 +msgid "We have partnered with <0>KWS to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you won’t need to do it again. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/intents/VerifyEmailIntentDialog.tsx:102 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:184 +msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:241 +msgid "We never keep plain phone numbers" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:247 +msgid "We only suggest follows if both people consent" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:171 +msgid "We recommend selecting at least two interests." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:451 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:19 +msgid "We were unable to load the age assurance configuration for your region, probably due to a network error. Some content and features may be unavailable temporarily. Please try again later." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "We were unable to load your birthdate preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:492 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:305 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:217 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/SignupQueued.tsx:167 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:531 +msgid "We will notify you when we find your friends." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 +msgid "We’d love to hear about your experience testing beta features!" +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:62 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:140 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:83 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:311 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:223 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:151 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:127 +#: src/components/ProgressGuide/FollowDialog.tsx:195 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:321 +msgid "We’re having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 +msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:140 +msgid "We’re so excited to have you join us!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:117 +msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:227 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 +msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance." +msgstr "" + +#: src/screens/ProfileList/index.tsx:88 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:387 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 +msgid "We’re sorry, but your search could not be completed." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 +msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:62 +msgid "We're sorry, you cannot access this screen at this time." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1125 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:223 +#: src/view/screens/NotFound.tsx:44 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:220 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:123 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:64 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:77 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:62 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:257 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:165 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:117 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:59 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:44 +msgid "What do you want to call your starter pack?" +msgstr "" + +#. Advanced search: Example of an “exact phrase” search +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:285 +msgid "what’s up" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 +#: src/view/com/feeds/ComposerPrompt.tsx:192 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 +msgid "When you tap on a check, you’ll see which organizations have granted verification." +msgstr "" + +#: src/components/WhoCanReply.tsx:226 +msgid "Who can interact with this post?" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 +msgid "Who can join this group chat and how" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +#: src/components/WhoCanReply.tsx:116 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:80 +#: src/screens/Messages/ChatList.tsx:409 +#: src/screens/Messages/Inbox.tsx:191 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:126 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:169 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:52 +#: src/components/moderation/ReportDialog/copy.ts:66 +msgid "Why should this conversation be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +msgid "Why should this livestream be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:58 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:51 +msgid "Would you like to block this user and/or delete this conversation?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:47 +msgid "Would you like to block this user and/or leave this conversation?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:110 +msgid "Would you like to save this as a draft before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1523 +msgid "Would you like to save this as a draft to edit later?" +msgstr "" + +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 +msgid "Write a post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1704 +msgid "Write post" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 +#: src/view/com/composer/Composer.tsx:1606 +msgid "Write your reply" +msgstr "" + +#: src/lib/interests.ts:75 +msgid "Writers" +msgstr "" + +#. placeholder {0}: verifyError.did +#: src/screens/Settings/components/ChangeHandleDialog.tsx:368 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 +msgid "Wrong kind of conversation" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:147 +#: src/features/liveNow/components/GoLiveDialog.tsx:142 +msgid "www.mylivestream.tv" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to affirmation/agreement GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:95 +msgid "Yes GIFs" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:105 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:107 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:348 +msgid "Yes, delete my account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:712 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:139 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:29 +msgid "Yesterday" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:61 +msgid "You are a trusted verifier" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:174 +msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:720 +msgid "You are blocking {0}" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "You are blocking the chat owner" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:83 +msgid "You are blocking this person" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "You are creating an account on" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:108 +msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:400 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "You are in line." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:113 +#: src/features/liveNow/components/EditLiveDialog.tsx:118 +msgid "You are Live" +msgstr "" + +#: src/features/liveNow/index.tsx:371 +msgid "You are no longer live" +msgstr "" + +#: src/view/com/composer/state/video.ts:444 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:195 +msgid "You are not following anyone yet" +msgstr "" + +#: src/features/liveNow/index.tsx:315 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:66 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:341 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:210 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:211 +msgid "You can also <0>temporarily deactivate your account instead. Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:60 +#: src/view/com/posts/FollowingEndOfFeed.tsx:61 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:139 +msgid "You can also download your chat data as a \"JSONL\" file. This file only includes chat messages that you have sent and does not include chat messages that you have received." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:250 +msgid "You can always opt out and delete your data" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:134 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:165 +#: src/screens/Messages/Settings.tsx:216 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150 +msgid "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:154 +msgid "You can now invite friends with a link or QR code. Share the link anywhere, or let them scan the code to join you on Bluesky." +msgstr "" + +#: src/screens/Login/index.tsx:207 +#: src/screens/Login/PasswordUpdatedForm.tsx:25 +msgid "You can now sign in with your new password." +msgstr "" + +#. Toast shown when the user tries to add more images but the post gallery is already at the cap +#: src/view/com/composer/Composer.tsx:222 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1528 +msgid "You can only save drafts up to 1000 characters." +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:116 +msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:443 +msgid "You can only select one GIF at a time." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:437 +msgid "You can only select one video at a time." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:93 +msgid "You can read chat history but can’t send new messages." +msgstr "" + +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:429 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." +msgstr "" + +#: src/components/interstitials/Trending.tsx:142 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 +msgid "You can update this later from your settings." +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:81 +#: src/components/dms/MessageContextMenu.tsx:129 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 +msgid "You cannot create a group chat yet." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:54 +#: src/lib/strings/errors.ts:27 +msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:103 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:589 +msgid "You don't have any lists yet." +msgstr "" + +#: src/screens/SavedFeeds.tsx:153 +#: src/screens/SavedFeeds.tsx:343 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/screens/SavedFeeds.tsx:205 +#: src/screens/SavedFeeds.tsx:381 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:312 +msgid "You got here first" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:93 +#: src/lib/moderation/useModerationCauseDescription.ts:58 +#: src/lib/moderation/useModerationCauseDescription.ts:66 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "You have completed the Age Assurance process, but based on the results, we cannot be sure that you are 18 years of age or older. Due to laws in your region, certain features on Bluesky must remain restricted until you're able to verify you're an adult." +msgstr "" + +#: src/view/screens/Notifications.tsx:291 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:89 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:113 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:117 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:131 +msgid "You have hidden this post." +msgstr "" + +#: src/components/BotAccountAlert.tsx:26 +msgid "You have marked this account as automated. You can remove it at any time from your account settings." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:124 +#: src/lib/moderation/useModerationCauseDescription.ts:100 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:94 +msgid "You have muted this user" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:71 +#: src/view/com/lists/MyLists.tsx:81 +msgid "You have no lists." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:102 +msgid "You have no starter packs." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:155 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:168 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:62 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:188 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1518 +msgid "You have unsaved changes to this draft, would you like to save them?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:105 +msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:159 +msgid "You haven't created any lists yet." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:160 +msgid "You haven't made any custom feeds yet." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:407 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "You hid this reply." +msgstr "" + +#. placeholder {0}: getTimeAgo(lastInitiatedAt, new Date(), {format: 'long'}) +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:240 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/NewskieDialog.tsx:107 +msgid "You joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:104 +msgid "You joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:88 +#: src/components/moderation/ModerationDetailsDialog.tsx:210 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:80 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:101 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:318 +msgid "You must be a chat owner to remove a member." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:177 +msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:89 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:472 +msgid "You need to allow access to your media library." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:349 +msgid "You own this chat" +msgstr "" + +#. placeholder {0}: currentAccount?.handle +#: src/screens/Deactivated.tsx:120 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:421 +msgid "You probably want to restart the app now." +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:361 +msgid "You reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:63 +msgid "You reacted {0} to {target}" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:92 +#: src/components/dialogs/BirthDateSettings.tsx:102 +msgid "You recently changed your birthdate" +msgstr "" + +#: src/components/dms/MessageItem.tsx:806 +msgid "You replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:805 +msgid "You replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:803 +msgid "You replied to yourself" +msgstr "" + +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:105 +msgid "You requested to join" +msgstr "" + +#: src/screens/Settings/Settings.tsx:306 +#: src/view/shell/desktop/LeftNav.tsx:225 +msgid "You will be signed out of all your accounts." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:140 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:101 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:129 +msgid "You won’t be able to rejoin unless you’re invited." +msgstr "" + +#. When the last message in a chat was made by you. +#: src/components/dms/getMessageInfo.ts:82 +msgid "You: {message}" +msgstr "" + +#: src/screens/Signup/index.tsx:158 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#. placeholder {0}: listItemsCount - 8 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:314 +msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:172 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:281 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:133 +msgid "You're all set!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:127 +msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "You're in line" +msgstr "" + +#: src/screens/Deactivated.tsx:81 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:73 +msgid "You've already appealed this label and it's being reviewed by our moderation team." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:128 +#: src/lib/moderation/useModerationCauseDescription.ts:109 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:313 +msgid "You've denied access to your contacts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:237 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:112 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:42 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/view/com/composer/Composer.tsx:729 +msgid "You've reached the maximum number of drafts" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:68 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 +msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." +msgstr "" + +#: src/components/FocusScope/index.tsx:88 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:455 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:459 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1221 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:199 +msgid "Your account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:128 +msgid "Your account has been deleted, see ya! ✌️" +msgstr "" + +#: src/screens/Takendown.tsx:142 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:463 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:836 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:837 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:107 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:210 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:150 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:287 +msgid "Your birth date" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:45 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:70 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:380 +msgid "Your contact {firstAuthorLink} is on Bluesky" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:378 +msgid "Your contact {firstAuthorName} is on Bluesky" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:454 +msgid "Your contact {name}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(currentAccount?.handle || '', '@') +#: src/screens/Settings/components/ChangeHandleDialog.tsx:531 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/screens/Moderation/index.tsx:231 +msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:252 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:82 +#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/StepInfo/index.tsx:129 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:216 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:496 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:41 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#. placeholder {0}: createFullHandle(subdomain, host) +#: src/screens/Settings/components/ChangeHandleDialog.tsx:247 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:182 +msgid "Your hosting provider can’t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:188 +msgid "Your hosting provider is detected automatically from the username you enter." +msgstr "" + +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:94 +#: src/screens/Settings/ContentAndMediaSettings.tsx:97 +#: src/screens/Settings/InterestsSettings.tsx:49 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:138 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:356 +msgid "Your location has been updated." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "Your muted words" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:72 +msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:156 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1225 +msgid "Your post was sent" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1222 +msgid "Your posts were sent" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:289 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 +msgid "Your profile picture" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 +msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1224 +msgid "Your reply was sent" +msgstr "" + +#. placeholder {0}: state.selectedLabeler?.creator.displayName +#: src/components/moderation/ReportDialog/index.tsx:519 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:63 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1553 +msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 +msgid "Your username and password will be shared with <0>{host}. If you don’t recognize this provider, double-check your username." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/lt/messages.po b/src/locale/locales/lt/messages.po index 52359b7d03..9cf973fba0 100644 --- a/src/locale/locales/lt/messages.po +++ b/src/locale/locales/lt/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: lt\n" +"Language: lt_LT\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Lithuanian\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1600,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1665,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1849,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1938,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2262,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2299,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2425,28 +2394,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2825,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2974,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3112,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3236,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3269,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3591,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3624,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3633,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3665,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3861,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3955,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,19 +4070,19 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4374,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4473,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4482,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4582,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4658,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4729,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4860,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +5002,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5515,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "" @@ -6198,7 +6172,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,12 +6748,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6788,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6824,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6836,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6846,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6889,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6965,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7029,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7057,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7065,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7083,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7282,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7630,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7639,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8330,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8350,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8471,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8544,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8570,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8727,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8926,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9077,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "" @@ -9269,7 +9270,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9341,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,12 +10703,13 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13374,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13672,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13681,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13743,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" @@ -13818,8 +13837,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13850,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14154,8 @@ msgstr "" msgid "what’s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/lv/messages.po b/src/locale/locales/lv/messages.po index e3ca059618..7672fe6f38 100644 --- a/src/locale/locales/lv/messages.po +++ b/src/locale/locales/lv/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: lv\n" +"Language: lv_LV\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1600,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1665,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1849,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1938,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2262,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2299,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2425,28 +2394,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2825,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2974,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3112,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3236,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3269,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3591,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3624,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3633,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3665,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3861,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3955,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,19 +4070,19 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4374,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4473,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4482,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4582,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4658,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4729,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4860,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +5002,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5515,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "" @@ -6198,7 +6172,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,12 +6748,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6788,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6824,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6836,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6846,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6889,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6965,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7029,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7057,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7065,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7083,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7282,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7630,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7639,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8330,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8350,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8471,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8544,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8570,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8727,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8926,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9077,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "" @@ -9269,7 +9270,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9341,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,12 +10703,13 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13374,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13672,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13681,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13743,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" @@ -13818,8 +13837,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13850,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14154,8 @@ msgstr "" msgid "what’s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ne/messages.po b/src/locale/locales/ne/messages.po index d451899481..21c486d2b5 100644 --- a/src/locale/locales/ne/messages.po +++ b/src/locale/locales/ne/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: ne\n" +"Language: ne_NP\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Nepali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "सामग्री समावेश गरिएको छ" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# घण्टा} other {# घण्टाहरू}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} पछ्याउँदै छन्" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} लाई सन्देश पठाउन सकिदैन" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {पछ्याउँदै छन्} other #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {उद्धरण} other {उद्धरणहरू}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {पुन: पोष्ट} other {पुन: पोष्टहरू}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "३० दिन" msgid "7 days" msgstr "७ दिन" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "पहुँचयोग्यता" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "पहुँचयोग्यता सेटिङ्स" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "सूचीद्वारा खाता म्यूट गरिए msgid "Account options" msgstr "खाताको विकल्पहरू" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "खाता छिटो पहुँचबाट हटाइएको छ" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "वैकल्पिक पाठ थप्नुहोस् (ऐच msgid "Add another account" msgstr "अर्को खाता थप्नुहोस्" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "अर्को पोष्ट थप्नुहोस्" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "यस फिडलाई तपाईंको फिडमा थप msgid "Add to lists" msgstr "सूचीहरूमा थप्नुहोस्" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "वयस्क" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "प्रत्यक्ष सन्देशहरूमा पहु msgid "Already have a code?" msgstr "पहिले नै कोड छ?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "एक इमेल {0} मा पठाइएको छ। यसमा msgid "An error has occurred" msgstr "त्रुटि भएको छ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "त्रुटि भयो" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "तपाईंको स्टार्टर प्याक निर्माण गर्दा त्रुटि भयो। के पुन: प्रयास गर्न चाहनुहुन्छ?" @@ -1640,11 +1600,11 @@ msgstr "तपाईंको स्टार्टर प्याक निर msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "भिडियो लोड गर्दा त्रुटि भयो। कृपया पछि पुन: प्रयास गर्नुहोस्।" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "भिडियो लोड गर्दा त्रुटि भयो। कृपया पुन: प्रयास गर्नुहोस्।" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "यी विकल्पहरूमा समावेश नभएको समस्या" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "कुराकानी खोल्ने प्रयास गर्दा समस्या भयो" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "एप पासवर्ड नाम कम्तिमा ४ वर msgid "App passwords" msgstr "एप पासवर्डहरू" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "एप पासवर्डहरू" @@ -1891,8 +1849,8 @@ msgstr "यो निर्णयको अपील गर्नुहोस् msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0} बाट आर्काइभ गरिएको" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "आर्काइभ गरिएको पोस्ट" @@ -1980,7 +1938,7 @@ msgstr "के तपाईं यसलाई आफ्नो फिडहर msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "के तपाईं यस पोस्ट हटाउन चाहनुहुन्छ?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "भिडियो र GIF हरू अटोप्ले गर्न msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "स्टार्टर प्याक सिर्जना गर्नु अघि, तपाईंले पहिले आफ्नो इमेल प्रमाणित गर्नुपर्छ।" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "जन्मदिन" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "ब्लक गरियो" msgid "Blocked accounts" msgstr "ब्लक गरिएका खाताहरू" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ब्लक गरिएका खाताहरू" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ब्लकले यस लेबलकर्ताले तपाईंको खातामा लेबल राख्नबाट रोक्दैन।" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "ब्लूस्काई" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "ब्लूस्काईले दाबी गरिएको मितिको प्रामाणिकता पुष्टि गर्न सक्दैन।" @@ -2330,7 +2299,7 @@ msgstr "ब्लूस्काई खुला नेटवर्क हो msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "ब्लूस्काई साथीहरूसँग अझ राम्रो छ!" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "ब्लूस्काई तपाईंको नेटवर्कका मानिसहरूबाट सिफारिस गरिएका खाताहरूको सेट चयन गर्नेछ।" @@ -2425,24 +2394,25 @@ msgstr "एक्सप्लोर पृष्ठमा थप सुझाव msgid "Browse other feeds" msgstr "अन्य फिडहरू ब्राउज गर्नुहोस्" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "{0} द्वारा" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "खाता सिर्जना गरेर तपाईं <0>स msgid "By creating an account you agree to the <0>Terms of Service." msgstr "खाता सिर्जना गरेर तपाईं <0>सेवा सर्तहरू सँग सहमत हुनुहुन्छ।" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "क्यामेरा" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "पुनः सक्रियता रद्द गर्नुहो msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "खोजी रद्द गर्नुहोस्" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "कुराकानी म्यूट गरियो" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "कुराकानी सेटिङ्स" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "कुराकानी अनम्यूट गरियो" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "डोमेन प्रमाणीकरण विधि छान् msgid "Choose Feeds" msgstr "फिडहरू छान्नुहोस्" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "मेरो लागि छान्नुहोस्" @@ -2854,7 +2825,7 @@ msgstr "व्यक्तिहरू छान्नुहोस्" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "यो रंगलाई आफ्नो अवतारको रूपमा छान्नुहोस्" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "तपाईंको पासवर्ड छान्नुहोस्" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "असफल सन्देश पुन: प्रयास गर्न क्लिक गर्नुहोस्" @@ -3003,7 +2974,7 @@ msgstr "असफल सन्देश पुन: प्रयास गर् #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "असफल सन्देश पुन: प्रयास गर् msgid "Close" msgstr "बन्द गर्नुहोस्" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "सक्रिय संवाद बन्द गर्नुहोस्" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "यो संवाद बन्द गर्नुहोस्" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "पासवर्ड अद्यावधिक चेतावनी बन्द गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "रंग मोड" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "कमिक्स" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "समुदायका दिशानिर्देशहरू" @@ -3141,7 +3112,7 @@ msgstr "समुदायका दिशानिर्देशहरू" msgid "Complete onboarding and start using your account" msgstr "अनबोर्डिङ पूरा गर्नुहोस् र आफ्नो खाता प्रयोग गर्न सुरु गर्नुहोस्" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "चुनौती पूरा गर्नुहोस्" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "नयाँ पोस्ट तयार गर्नुहोस्" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "जवाफ तयार गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "भिडियो कम्प्रेस गर्दै..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "समर्थन सम्पर्क गर्नुहोस्" @@ -3253,7 +3224,7 @@ msgstr "सामग्री र मिडिया" msgid "Content and media" msgstr "सामग्री र मिडिया" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "सामग्री र मिडिया" @@ -3265,10 +3236,6 @@ msgstr "सामग्री अवरुद्ध गरियो" msgid "Content filters" msgstr "सामग्री फिल्टरहरू" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "सामग्री चेतावनी" msgid "Content warnings" msgstr "सामग्री चेतावनीहरू" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "सन्दर्भ मेनु पृष्ठभूमि, मेनु बन्द गर्न क्लिक गर्नुहोस्।" @@ -3302,7 +3269,7 @@ msgstr "सन्दर्भ मेनु पृष्ठभूमि, मे #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "थ्रेड जारी राख्नुहोस्..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "बिल्ड संस्करण क्लिपबोर्डमा प्रतिलिपि गरियो" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "एप पासवर्ड प्रतिलिपि गर्नु msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "लिंक प्रतिलिपि गर्नुहोस्" msgid "Copy link to list" msgstr "सूचीको लिंक प्रतिलिपि गर्नुहोस्" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "पोस्टको लिंक प्रतिलिपि गर्नुहोस्" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "सन्देशको पाठ प्रतिलिपि गर्नुहोस्" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "TXT रेकर्ड मान प्रतिलिपि गर् #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "प्रतिलिपि अधिकार नीति" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "कुराकानी छोड्न सकिएन" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "फिड लोड गर्न सकिएन" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "कुराकानी म्यूट गर्न सकिएन" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "सिर्जना गर्नुहोस्" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "स्टार्टर प्याकका लागि QR कोड सिर्जना गर्नुहोस्" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "स्टार्टर प्याक सिर्जना गर्नुहोस्" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "मेरो लागि स्टार्टर प्याक सिर्जना गर्नुहोस्" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "साइन अप गर्नुहोस्" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "खाता बनाउनुहोस्" @@ -3666,15 +3633,15 @@ msgstr "खाता बनाउनुहोस्" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "यसको सट्टा एउटा अवतार बनाउनुहोस्" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "अर्को बनाउनुहोस्" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "संस्कृति" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "गाढा" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "गाढा" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "गाढा थिम" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "डिफल्ट" @@ -3894,7 +3861,7 @@ msgstr "मेरो खाता मेटाउनुहोस्" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "पोस्ट मेटाउनुहोस्" @@ -3988,7 +3955,7 @@ msgstr "संवाद: यो पोस्टसँग कसले अन् msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "धूमिल" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "अक्षम गरियो" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "त्याग्नुहोस्" msgid "Discard changes?" msgstr "परिवर्तनहरू त्याग्नुहोस्?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "मस्यौदा त्याग्नुहोस्?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "पोस्ट त्याग्नुहोस्?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "एपहरूलाई मेरो खाता लगइन नगरेका प्रयोगकर्ताहरूलाई देखाउनबाट हतोत्साहित गर्नुहोस्" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "एपहरूलाई मेरो खाता लगइन नग msgid "Discover new custom feeds" msgstr "नयाँ अनुकूलित फिडहरू पत्ता लगाउनुहोस्" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "नयाँ फिडहरू खोज्नुहोस्" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "रद्द गर्नुहोस्" @@ -4103,19 +4070,19 @@ msgstr "रद्द गर्नुहोस्" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "त्रुटि रद्द गर्नुहोस्" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "गाइडलाई रद्द गर्नुहोस्" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "ठूलो वैकल्पिक पाठ ब्याज दे msgid "Display name" msgstr "प्रदर्शन नाम" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "सम्पन्न" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "संवाद बन्द गर्न डबल ट्याप गर्नुहोस्" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "चित्र सम्पादन गर्नुहोस्" msgid "Edit interaction settings" msgstr "अन्तर्क्रिया सेटिङ्स सम्पादन गर्नुहोस्" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "मेरो फिड सम्पादन गर्नुहोस्" @@ -4406,6 +4374,11 @@ msgstr "मेरो फिड सम्पादन गर्नुहोस् msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "व्यक्ति सम्पादन गर्नुहोस्" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "को उत्तर दिन सक्छ सम्पादन गर्नुहोस्" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "तपाईंको स्टार्टर प्याक सम्पादन गर्नुहोस्" @@ -4500,8 +4473,8 @@ msgstr "HTML कोड समावेश गर्नुहोस्" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "पोस्ट समावेश गर्नुहोस्" @@ -4509,7 +4482,7 @@ msgstr "पोस्ट समावेश गर्नुहोस्" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "यो पोस्टलाई तपाईंको वेबसाइटमा समावेश गर्नुहोस्। तलको स्निपेट प्रतिलिपि गरी तपाईंको वेबसाइटको HTML कोडमा टाँस्नुहोस्।" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "समाविष्ट भिडियो प्लेयर" @@ -4533,7 +4506,7 @@ msgstr "वयस्क सामग्री सक्षम गर्नुह msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "बाह्य मिडिया सक्षम गर्नुहो msgid "Enable media players for" msgstr "मिडिया प्लेयर सक्षम गर्नुहोस्" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "सक्षम गरिएको" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "फिडको अन्त्य" @@ -4608,7 +4582,7 @@ msgstr "शब्द वा ट्याग प्रविष्ट गर् msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "पूर्ण स्क्रीनमा प्रवेश गर्नुहोस्" @@ -4650,11 +4624,11 @@ msgstr "तपाईंको प्रयोगकर्ता नाम र msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "त्रुटि" @@ -4684,7 +4658,7 @@ msgstr "फाइल बचत गर्दा त्रुटि भयो" msgid "Error receiving captcha response." msgstr "क्याप्चा प्रतिक्रिया प्राप्त गर्दा त्रुटि।" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "सबैले उत्तर दिन सक्छन्" msgid "Everybody can reply to this post." msgstr "सबैले यो पोस्टमा उत्तर दिन सक्छन्।" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "सबै जना" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "सबै जना" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "तपाईंले पछ्याएका प्रयोगकर msgid "Excludes users you follow" msgstr "तपाईंले पछ्याएका प्रयोगकर्ताहरू हटाउँछ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "पूर्ण स्क्रीनबाट बाहिर जानुहोस्" @@ -4755,11 +4729,11 @@ msgstr "प्रयोगकर्ताहरूको सूची विस msgid "Expand or collapse the full post you are replying to" msgstr "जसमा तपाईं उत्तर दिँदै हुनुहुन्छ, त्यो पोस्ट विस्तार वा सङ्कुचित गर्नुहोस्" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "स्पष्ट वा सम्भावित रूपमा ब msgid "Explicit sexual images." msgstr "स्पष्ट यौन चित्रहरू।" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "बाह्य मिडिया प्राथमिकताहरू" @@ -4886,7 +4860,7 @@ msgstr "ह्यान्डल परिवर्तन गर्न असफ #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "फिड्स प्राथमिकताहरू लोड गर्न असफल" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "सुझाव गरिएका फिड्स लोड गर्न असफल भयो" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "सुझाव गरिएका फलोहरू लोड गर्न असफल भयो" @@ -5027,12 +5002,12 @@ msgstr "सुझाव गरिएका फलोहरू लोड गर msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "फिड" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "फिड्स अद्यावधिक गरियो!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "फाइल सफलतापूर्वक सुरक्षित गरियो!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "फलो गर्न खाताहरू फेला पार् msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "{0} लाई अनुसरण गर्नुहोस्" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "७ खाताहरू अनुसरण गर्नुहोस्" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "तपाईंले चिनेका @{0} का अनुसरणकर्ताहरू" @@ -5544,7 +5515,7 @@ msgstr "तपाईंले चिनेका अनुसरणकर्त #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "{0} लाई अनुसरण गर्दै" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "अनुसरण फिड प्राथमिकताहरू" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "अनुसरण फिड प्राथमिकताहरू" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "तपाईलाई अनुसरण गर्छ" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "फन्ट" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "फन्ट आकार" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "सुरक्षा कारणहरूको लागि, तपाईं यसलाई पुन: हेर्न सक्नुहुनेछैन। यदि तपाईंले यो पासवर्ड हराउनु भयो भने, तपाईंले नयाँ उत्पन्न गर्नुपर्नेछ।" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "सर्वोत्तम अनुभवको लागि, हामी थिम फन्ट प्रयोग गर्न सिफारिस गर्छौं।" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "सधैंको लागि" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "पासवर्ड बिर्सनुभयो?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "<0/> बाट" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "स्टार्टर प्याक उत्पन्न गर्नुहोस्" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "मद्दत प्राप्त गर्नुहोस्" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "आफ्नो प्रोफाइललाई अनुहार दिनुहोस्" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "ह्यासट्याग" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "समस्या भइरहेको छ?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "सहयोग" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "फोटो अपलोड गरेर वा अवतार सिर्जना गरेर आफू बोट होइन भनेर देखाउन सहयोग गर्नुहोस्।" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "लुकेको सूची" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "लुकेको सूची" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "लुकाउनुहोस्" @@ -6198,7 +6172,7 @@ msgstr "सबैका लागि उत्तर लुकाउनुहो msgid "Hide reply for me" msgstr "मेरो लागि उत्तर लुकाउनुहोस्" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "यो उत्तर लुकाउनुहोस्?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "प्रयोगकर्ता सूची लुकाउनुह msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "हाम्रोमा समस्या छ, हामीले त msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "पर्खनुहोस्! हामी बिस्तारै भिडियो पहुँच उपलब्ध गराउँदैछौं, र तपाईं अझै प्रतीक्षामा हुनुहुन्छ। छिट्टै पुनः प्रयास गर्नुहोस्।" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "यदि तपाईं आफ्नो पासवर्ड परिवर्तन गर्न चाहनुहुन्छ भने, हामी तपाईंलाई यो खाता हो भनेर प्रमाणित गर्न कोड पठाउनेछौं।" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "अहिले मात्र तपाईं हुनुहुन्छ! माथि खोजेर आफ्नो स्टार्टर प्याकमा थप मानिसहरू थप्नुहोस्।" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "जॉब आईडी: {0}" @@ -6816,8 +6788,8 @@ msgstr "कुरा गर्ने प्रक्रियामा साम msgid "Journalism" msgstr "पत्रकारिता" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0} द्वारा लेबल गरिएको।" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "लेखकद्वारा लेबल गरिएको।" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "लेबलहरू" @@ -6852,7 +6824,7 @@ msgstr "लेबलहरू थपियो" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "लेबलहरू प्रयोगकर्ता र सामग्रीमा ट्यागहरू हुन्। ती नेटवर्कलाई लुकाउन, चेतावनी दिन, र वर्गीकृत गर्न प्रयोग गर्न सकिन्छ।" @@ -6864,7 +6836,7 @@ msgstr "तपाईंको खातामा लेबलहरू" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "भाषा सेटिङ" @@ -6874,7 +6846,7 @@ msgstr "भाषा सेटिङ" msgid "Languages" msgstr "भाषाहरू" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ठूलो" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "पछिल्लो" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "थप जान्नुहोस्" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "आफ्नो PDS आफैं होस्ट गर्ने बारे थप जान्नुहोस्।" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "यस चेतावनीबारे थप जान्नुहोस्।" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "थप जान्नुहोस्।" @@ -6993,8 +6965,8 @@ msgstr "छोड्नुहोस्" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "ब्लूस्काई छोड्दै" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "जान बाँकी।" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "मलाई छान्न दिनुहोस्" @@ -7057,7 +7029,7 @@ msgstr "हिँडौं!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "हल्का" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "हल्का" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "१० पोस्टहरू मन पराउनुहोस्" @@ -7085,7 +7057,7 @@ msgstr "१० पोस्टहरू मन पराउनुहोस्" msgid "Like 10 posts to train the Discover feed" msgstr "डिस्कभर फीडलाई तालिम दिन १० पोस्ट मन पराउनुहोस्।" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "यस फीडलाई मन पराउनुहोस्।" @@ -7093,8 +7065,8 @@ msgstr "यस फीडलाई मन पराउनुहोस्।" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "मन पराउनेहरू" @@ -7111,27 +7083,45 @@ msgstr "मन पराउनेहरू" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "रुचिहरू" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "यस पोस्टमा रुचिहरू" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "सूची" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "सूची अनम्यूट गरियो" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "थप लोड गर्नुहोस्" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "थप सुझाइएका फीडहरू लोड गर्नुहोस्।" @@ -7292,8 +7282,8 @@ msgstr "थप सुझाइएका फीडहरू लोड गर् msgid "Load new notifications" msgstr "नयाँ सूचनाहरू लोड गर्नुहोस्।" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "लग" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "मेरो लागि एउटा बनाउनुहोस्।" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "पढिएको रूपमा चिन्ह लगाउनुह msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "मिडिया" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "केही दर्शकहरूको लागि असुविधाजनक वा अनुचित हुन सक्ने मिडिया।" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "उल्लेख गरिएका प्रयोगकर्ता" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "सन्देश मेटाइएको।" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "सन्देशहरू" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "मोडरेशन" @@ -7636,7 +7630,7 @@ msgstr "मोडरेशन सूची अपडेट गरियो।" msgid "Moderation lists" msgstr "मोडरेशन सूचीहरू" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "मोडरेशन सूचीहरू" @@ -7645,7 +7639,7 @@ msgstr "मोडरेशन सूचीहरू" msgid "moderation settings" msgstr "मोडरेशन सेटिङ्स" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "मोडरेशन अवस्थाहरू" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "म्यूट गरिएका खाता" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "म्यूट गरिएका खाता" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "केही छैन, मेरो लागि एक हैंडल सिर्जना गर्नुहोस्" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "नयाँ" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "नयाँ कुराकानी" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "नयाँ पासवर्ड" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "नयाँ पोस्ट" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "पहिले सबैभन्दा नयाँ उत्तरहरू" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "समाचार" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "अर्को चित्र" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "कुनै फीडहरू फेला परेनन्। केहि अरू खोज्ने प्रयास गर्नुहोस्।" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "अहिलेसम्म कुनै रुचिहरू छैन" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "{0} लाई अब अनुसरण गरिरहेको छैन" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "अहिलेसम्म कुनै सन्देश छैन" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "अहिलेसम्म कुनै उद्धरण छैन।" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "कुनै परिणाम छैन" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "कुनै परिणाम छैन" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "कुनै परिणाम भेटिएन" msgid "No results found for \"{query}\"" msgstr "\"{query}\" को लागि कुनै परिणाम भेटिएन" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "हैन, धन्यवाद" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "कसैले पनि होइन" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "अहिलेसम्म कसैले यो मन पराएका छैनन्। सायद तपाई पहिलो हुनु पर्छ!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "अहिलेसम्म कसैले उद्धृत गरेका छैनन्। सायद तपाई पहिलो हुनु पर्छ!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "अ-यौन नग्नता" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "फेला परेन" @@ -8333,7 +8330,7 @@ msgstr "साझेदारीको बारेमा नोट" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "नोट: Bluesky एक खुला र सार्वजनिक नेटवर्क हो। यो सेटिङले तपाईंको सामग्रीको दृश्यता केवल Bluesky एप र वेबसाइटमा सीमित गर्दछ, र अन्य एपहरूले यो सेटिङलाई सम्मान नगर्न सक्छन्। तपाईंको सामग्री अन्य एपहरू र वेबसाइटहरूले लग आउट प्रयोगकर्ताहरूलाई देखाउन सक्छ।" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "सूचना सेटिङ्स" @@ -8353,11 +8350,12 @@ msgstr "सूचना सेटिङ्स" msgid "Notification sounds" msgstr "सूचना ध्वनीहरू" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "ओहो!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "ठिक छ" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "हुन्छ" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "अनबोर्डिङ रिसेट" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "एक वा बढी GIF हरूमा वैकल्पिक पाठ छैन।" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "एक वा बढी चित्रहरूमा वैकल्पिक पाठ छैन।" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "एक वा बढी भिडियोहरूमा वैकल्पिक पाठ छैन।" @@ -8471,7 +8471,7 @@ msgstr "केवल {0} उत्तर दिन सक्छ।" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "केवल WebVTT (.vtt) फाइलहरू समर्थित छन्" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "ओहो!" @@ -8544,7 +8544,7 @@ msgstr "ओहो!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "अवतार सिर्जनाकर्ता खोल्नुहोस्" @@ -8570,21 +8570,22 @@ msgstr "कुराकानी विकल्प खोल्नुहोस msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "इमोजी चयनकर्ता खोल्नुहोस्" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "फिड विकल्प मेनु खोल्नुहोस्" @@ -8627,7 +8628,7 @@ msgstr "मोडरेसन डिबग पृष्ठ खोल्नुह msgid "Open muted words and tags settings" msgstr "मुट गरिएका शब्दहरू र ट्यागहरूको सेटिङ खोल्नुहोस्" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "डिबग प्रविष्टिका लागि थप व msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "डिभाइसमा क्यामेरा खोल्नुहोस्" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "नयाँ Bluesky खाता सिर्जना गर्न प्रवाह खोल्नुहोस्" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "आफ्नो विद्यमान Bluesky खातामा साइन इन गर्न प्रवाह खोल्नुहोस्" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "पासवर्ड अद्यावधिक गरियो!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "रोक्नुहोस्" @@ -8925,12 +8926,12 @@ msgstr "रोक्नुहोस्" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "भिडियो रोक्नुहोस्" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "व्यक्ति" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0} द्वारा अनुसरण गरिएका व्यक्ति" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0} लाई अनुसरण गर्ने व्यक्ति" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "वयस्कका लागि बनाइएका तस्वीरहरू।" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "होममा पिन गर्नुहोस्" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "होममा पिन गर्नुहोस्" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "पिन गरियो" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "तपाईंका फिडहरूमा पिन गरियो" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "चलाउनुहोस्" @@ -9076,8 +9077,8 @@ msgstr "{0} चलाउनुहोस्" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "भिडियो चलाउनुहोस्" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "राजनीति" @@ -9269,7 +9270,7 @@ msgstr "राजनीति" msgid "Porn" msgstr "पोर्न" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "पोस्ट" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "पोस्ट" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "सबै पोस्ट गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} द्वारा पोस्ट" @@ -9340,7 +9341,7 @@ msgstr "तपाईं द्वारा पोस्ट लुकाइएक msgid "Post interaction settings" msgstr "पोस्ट अन्तरक्रिया सेटिङ्स" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "पोस्ट पिन गरियो" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "पोस्ट अनपिन गरियो" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "पोस्टहरू" @@ -9398,6 +9396,10 @@ msgstr "पोस्टहरूलाई तिनीहरूको पाठ, msgid "Posts hidden" msgstr "पोस्टहरू लुकाइयो।" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "गोपनीयता।" msgid "Privacy and security" msgstr "गोपनीयता र सुरक्षा" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "गोपनीयता र सुरक्षा" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "गोपनीयता नीति" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "भिडियो प्रशोधन हुँदैछ।" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "उद्धरण पोस्टहरू अक्षम गरिए #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "उद्धरण।" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "यस पोस्टका उद्धरण।" @@ -9647,7 +9650,7 @@ msgstr "तपाईंको खाता पुन: सक्रिय गर msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "ब्लूस्काई गोपनीयता नीति पढ msgid "Read the Bluesky Terms of Service" msgstr "ब्लूस्काई सेवा सर्तहरू पढ्नुहोस्।" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "पुनः जडान गर्नुहोस्" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "वार्तालाप पुनः लोड गर्नुहोस्" @@ -9766,7 +9765,7 @@ msgstr "वार्तालाप पुनः लोड गर्नुहो #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "हटाउनुहोस्" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "खाता हटाउनुहोस्" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "मेरो फिडबाट हटाउनुहोस्" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "छिटो पहुँचबाट हटाउने?" @@ -9862,7 +9861,7 @@ msgstr "छिटो पहुँचबाट हटाउने?" msgid "Remove from saved feeds" msgstr "सुरक्षित फिडबाट हटाउनुहोस्" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "तस्बिर हटाउनुहोस्" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "सूचीबाट हटाइयो" msgid "Removed from saved feeds" msgstr "सुरक्षित फिडहरूबाट हटाइयो" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "उत्तरहरू" @@ -10037,7 +10037,7 @@ msgstr "यो पोस्टका उत्तरहरू निष्क् msgid "Reply" msgstr "उत्तर दिनुहोस्" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "उत्तर दिनुहोस्" @@ -10098,8 +10098,8 @@ msgstr "वार्ता रिपोर्ट गर्नुहोस्" msgid "Report dialog" msgstr "रिपोर्ट संवाद" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "फिड रिपोर्ट गर्नुहोस्" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "तपाईँद्वारा पुनःपोस्ट गरियो" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "यस पोस्टका पुनःपोस्टहरू" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "अन्तिम कार्य पुन: प्रयास गर #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "गृहपृष्ठमा फर्कनुहोस्" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "अघिल्लो पृष्ठमा फर्कनुहोस्" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "परिवर्तनहरू सुरक्षित गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR कोड सुरक्षित गर्नुहोस्" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "मेरो फिडहरूमा सुरक्षित गर्नुहोस्" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "सुरक्षित फिडहरू" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "तपाईंको फिडहरूमा सुरक्षित गरियो" @@ -10520,8 +10520,8 @@ msgstr "तपाईंको फिडहरूमा सुरक्षित msgid "Say hello!" msgstr "नमस्ते भन्नुहोस्!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "विज्ञान" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "माथि स्क्रोल गर्नुहोस्" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "खोज्नुहोस्" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "अरूलाई सिफारिस गर्न चाहिने फिडहरूको लागि खोज्नुहोस्।" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF हरूको लागि खोज्नुहोस्।" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Bluesky मा जागिरहरू हेर्नुहोस् #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "स्लाइडर खोज्नुहोस्। अगाडि र पछाडि जान तीर कुञ्जीहरू प्रयोग गर्नुहोस्, र प्ले/पज गर्न स्पेसबार प्रयोग गर्नुहोस्।" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "रंग चयन गर्नुहोस्।" @@ -10764,11 +10769,11 @@ msgstr "खाता चयन गर्नुहोस्।" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "एभाटार चयन गर्नुहोस्।" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "इमोजी चयन गर्नुहोस्।" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "GIF चयन गर्नुहोस्।" msgid "Select GIF \"{0}\"" msgstr "GIF \"{0}\" चयन गर्नुहोस्।" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} इमोजीलाई आफ्नो अवतारको रूपमा चयन गर्नुहोस्" @@ -10945,7 +10951,8 @@ msgstr "सन्देश पठाउनुहोस्" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "पोष्ट पठाउनुहोस्..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "सत्यापन इमेल पठाउनुहोस्" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "प्रत्यक्ष सन्देश मार्फत पठाउनुहोस्" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "पासवर्ड रीसेटको लागि इमेल सेट गर्दछ" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "सेटिङ्स" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "तथापि साझा गर्नुहोस्" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "लिङ्क साझा संवाद" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "QR कोड साझा गर्नुहोस्" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "यस स्टार्टर प्याकलाई साझा msgid "Share this starter pack and help people join your community on Bluesky." msgstr "यस स्टार्टर प्याकलाई साझा गर्नुहोस् र तपाईंको समुदायमा मानिसहरूलाई ब्लूस्काईमा सामेल हुन मद्दत गर्नुहोस्।" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "साझा गरिएको प्राथमिकता परीक्षक" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "देखाउनुहोस्" msgid "Show alt text" msgstr "विकल्पात्मक पाठ देखाउनुहोस्" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "तथापि देखाउनुहोस्" @@ -11274,9 +11281,9 @@ msgstr "सूचीलाई यथास्थिति देखाउनु msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "थप देखाउनुहोस्" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "चेतावनी देखाउनुहोस् र फीडब msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "साइन आउट गर्नुहोस्?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "साइन इन आवश्यक छ" @@ -11469,7 +11476,7 @@ msgstr "छोड्नुहोस्" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "सानो" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "केहि गलत भयो, कृपया पुन: प्रयास गर्नुहोस्" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "खेलकुद" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "नयाँ च्याट सुरु गर्नुहोस्" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "{displayName} सँग च्याट सुरु गर्नुहोस्" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "स्टार्टर प्याक" @@ -11715,12 +11722,16 @@ msgstr "तपाईंको द्वारा स्टार्टर प् msgid "Starter pack is invalid" msgstr "स्टार्टर प्याक अवैध छ" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "स्टार्टर प्याकहरू" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "स्टार्टर प्याकहरूले तपाईंलाई तपाईंका मनपर्ने फीडहरू र मानिसहरू सजिलैसँग तपाईंका साथीहरूसँग साझा गर्न दिन्छ।" @@ -11728,7 +11739,7 @@ msgstr "स्टार्टर प्याकहरूले तपाईं msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "स्थिति पृष्ठ" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "चरण {0} को {1}" @@ -11754,7 +11765,7 @@ msgstr "भण्डारण मेटिएको छ, अब तपाईं msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "स्टोरीबुक" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "यी लेबलहरू प्रयोग गर्न @{0} लाई सदस्यता लिनुहोस्:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "सिस्टम" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "हटाउनका लागि ट्याप गर्नुहोस्" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "कार्य पूरा भयो - १० लाइक्स!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "हाम्रो एल्गोरिदमलाई तपाईं के मनपर्छ भनेर सिकाउनुहोस्" @@ -12060,7 +12073,7 @@ msgstr "नियमहरू" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "त्यो स्टार्टर प्याक फेला प msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "त्यति हो, साथीहरू!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "सर्भर समस्यामा देखिनु भएको msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "तपाईं जसलाई हेर्न चाहनुहुन्छ त्यो स्टार्टर प्याक अमान्य छ। तपाईं यस स्टार्टर प्याकलाई मेट्न सक्नुहुन्छ।" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "तपाईंले दिएको प्रमाणिकरण क msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "थिम" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "सर्भरलाई सम्पर्क गर्न समस्या आयो।" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "सर्भरलाई सम्पर्क गर्न समस्या आयो, कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" @@ -12283,8 +12296,8 @@ msgstr "सर्भरलाई सम्पर्क गर्न समस् msgid "There was an issue fetching notifications. Tap here to try again." msgstr "सूचनाहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "पोस्टहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।" @@ -12309,7 +12322,7 @@ msgstr "तपाईंको सेवा जानकारी प्राप msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "यो फीड मेटाउन समस्या आयो। कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "यी सेटिङ्स केवल फलोइङ फीडम msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "यस {screenDescription} लाई चिह्नित गरिएको छ:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "यस खाताले प्रयोगकर्ताहरूलाई आफ्नो प्रोफाइल हेर्न साइन इन गर्न अनुरोध गरेको छ।" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "यो फिड खाली छ! तपाईंलाई अझ धेरै प्रयोगकर्ताहरूलाई अनुसरण गर्न आवश्यक पर्न सक्छ या आफ्नो भाषा सेटिङलाई अनुकूलन गर्नुपर्छ।" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "यो फिड खाली छ।" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "यो ह्यान्डल आरक्षित छ। कृपया अर्को प्रयास गर्नुहोस्।" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "यो लेबल तपाईं द्वारा लागू ग msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "यस लेबलरले कुन लेबलहरू प्रकाशित गर्छ भन्ने घोषणा गरेको छैन, र यो सक्रिय नहुन सक्छ।" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "यो पोस्ट <0>{0} मा सिर्जना गरिएको दावी गर्दछ, तर पहिलो पटक Bluesky द्वारा <1>{1} मा देखिएको थियो।" @@ -12649,7 +12662,7 @@ msgstr "यो पोस्ट <0>{0} मा सिर्जना गरि msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "यो पोस्ट फिड र थ्रेडहरूबाट लुकेको हुनेछ। यसलाई उल्टाउन सकिँदैन।" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "यस पोस्टको लेखकले उद्धरण पोस्टहरू निष्क्रिय गरेको छ।" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "यस प्रयोगकर्तासँग कुनै फलोअर छैन।" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "यस प्रयोगकर्ताले तपाईंलाई ब्लक गरेको छ। तपाईं तिनीहरूको सामग्री हेर्न सक्दैन।" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "यो प्रयोगकर्ता <0>{0} सूचीमा msgid "This user is new here. Press for more info about when they joined." msgstr "यो प्रयोगकर्ता यहाँ नयाँ हो। उनी कहिले जडान गर्नुभएको हो भन्ने थप जानकारीको लागि थिच्नुहोस्।" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "यो प्रयोगकर्ता कसैलाई पनि फलो गर्दै छैन।" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "यसले @{0}लाई क्विक एक्सेस सूचीबाट हटाउनेछ।" @@ -12786,7 +12801,7 @@ msgstr "थ्रेड प्राथमिकताहरू" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "थ्रेड प्राथमिकताहरू" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "शीर्ष" @@ -12858,7 +12873,7 @@ msgstr "शीर्ष" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "खाता ब्लक हटाउन चाहानुहुन् msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "{0} लाई अनफोलो गर्नुहोस्" msgid "Unfollow account" msgstr "खाता अनफोलो गर्नुहोस्" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "थ्रेड म्यूट हटाउनुहोस्" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "भिडियो म्यूट हटाउनुहोस्" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "अनपिन गर्नुहोस्" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "होमबाट अनपिन गर्नुहोस्" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "मोडरेशन सूची अनपिन गर्नुहोस्" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "यस लेबलरबाट सदस्यता समाप्त msgid "Unsubscribed from list" msgstr "सूचीबाट सदस्यता समाप्त गरिएको" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "उत्तर दृश्यता अपडेट गर्न असफल" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "फोटो अपलोड गर्नुहोस्" @@ -13355,7 +13374,7 @@ msgstr "फाइल बाट अपलोड गर्नुहोस्" msgid "Upload from Library" msgstr "लाइब्रेरी बाट अपलोड गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "तस्विरहरू अपलोड गर्दै..." msgid "Uploading link thumbnail..." msgstr "लिंक थम्बनेल अपलोड गर्दै..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "भिडियो अपलोड गर्दै..." @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "भिडियो" msgid "Video failed to process" msgstr "भिडियो प्रोसेस गर्न असफल" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "भिडियो खेल" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "भिडियो फेला पारिएन।" @@ -13653,7 +13672,7 @@ msgstr "भिडियो फेला पारिएन।" msgid "Video settings" msgstr "भिडियो सेटिङ्गहरू" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "भिडियो अपलोड गरियो" @@ -13662,17 +13681,17 @@ msgstr "भिडियो अपलोड गरियो" msgid "Video: {0}" msgstr "भिडियो: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "{0} को अवतार हेर्नुहोस्" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0} को प्रोफाइल हेर्नुहोस्" @@ -13724,13 +13743,13 @@ msgstr "अधिक जानकारीको लागि ब्लगपो msgid "View debug entry" msgstr "डिबग प्रविष्टि हेर्नुहोस्" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "विवरण हेर्नुहोस्" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "पूरा थ्रेड हेर्नुहोस्" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "@{0} द्वारा प्रदान गरिएको लेबलिङ सेवा हेर्नुहोस्" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "यो फिड मन पराउने प्रयोगकर्ताहरू हेर्नुहोस्" @@ -13831,7 +13850,7 @@ msgstr "तपाईंका मोडरेशन सूचीहरू हे msgid "View your muted accounts" msgstr "तपाईंका म्युट गरिएको खाता हेर्नुहोस्" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "हामी नेटवर्क समस्या भोगिरहेका छौं, कृपया पुनः प्रयास गर्नुहोस्।" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "हामीलाई खेद छ, तर हामी यो सू msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "हामीलाई खेद छ, तर हामी तपाईंका म्यूट गरिएका शब्दहरू लोड गर्न असमर्थ भयौं। कृपया पुन: प्रयास गर्नुहोस्।" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "हामीलाई खेद छ! तपाईंले जवाफ दिइरहेको पोस्ट मेटाइ सकेको छ।" @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "के भइरहेको छ?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "वोप्स!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "पोस्ट लेख्नुहोस्" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "तपाईंको जवाफ लेख्नुहोस्" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "तपाईंलाई भिडियो अपलोड गर्न अनुमति छैन।" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "तपाईं अब नयाँ पासवर्डसँग साइन इन गर्न सक्नुहुन्छ।" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "तपाईंले भिडियो अपलोडको लागि अस्थायी रूपमा सीमा पार गर्नुभयो। कृपया पछि पुनः प्रयास गर्नुहोस्।" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "तपाईंले अझै starter pack सिर्जना गर्नुभएको छैन!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "तपाईं केवल ३ फीडहरू मात्र थप्न सक्नुहुन्छ।" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "तपाईंलाई कम्तिमा सात अन्य व्यक्तिहरूलाई फलो गर्नुपर्छ ताकि starter pack सिर्जना गर्न सकिन्छ।" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "तपाईंले आफ्नो खाता सिर्जना गरेपछि सल्लाह दिइएका प्रयोगकर्ताहरू र फीडहरूलाई फलो गर्नुहुनेछ!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "तपाईंले आफ्नो खाता सिर्जना गरेपछि सल्लाह दिइएका प्रयोगकर्ताहरूलाई फलो गर्नुहुनेछ!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "तपाईंले आफ्नो फीडको अन्त्यमा पुग्नुभयो! थप खाता फलो गर्नको लागि खोजी गर्नुहोस्।" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "तपाईंले भिडियो अपलोडको लाग msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "तपाईंले भिडियो अपलोडको लागि आफ्नो दैनिक सीमा पुग्नुभयो (धेरै भिडियो)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "तपाईंको खाता" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "तपाईंको खाता अझै भिडियो अपलोड गर्नको लागि पर्याप्त पुरानो छैन। कृपया पछि पुनः प्रयास गर्नुहोस्।" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "तपाईंको प्रोफाइल, पोष्टहरू, फीडहरू, र सूचीहरू अब अन्य ब्लूस्की प्रयोगकर्ताहरूलाई देखाइने छैन। तपाईं कुनै पनि समयमा आफ्नो खाता पुनः सक्रिय गर्नको लागि लग इन गर्न सक्नुहुन्छ।" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/nl/messages.po b/src/locale/locales/nl/messages.po index 1a0e87c26a..0dc30e9816 100644 --- a/src/locale/locales/nl/messages.po +++ b/src/locale/locales/nl/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: nl\n" +"Language: nl_NL\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(bevat ingesloten inhoud)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# uur} other {# uur}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# vind-ik-leuk} other {# vind-ik-leuks}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} van 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} heeft gereageerd met {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} heeft jou geverifieerd" msgid "{following} following" msgstr "{following} volgend" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} kan geen privébericht ontvangen" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ongelezen item} other {# ongelezen it msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}u geleden" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} is een vertrouwde verifieerder" @@ -842,13 +795,13 @@ msgstr "Verificaties van {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {volgend} other {volgend}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citaat} other {citaten}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {herplaatsing} other {herplaatsingen}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 dagen" msgid "7 days" msgstr "7 dagen" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "Een nieuwe vorm van verificatie" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Toegankelijkheid" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Toegankelijkheidsinstellingen" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Account genegeerd door lijst" msgid "Account options" msgstr "Accountopties" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Account verwijderd uit snelle toegang" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Accounts met een blauw vinkje <0><1/> kunnen anderen verifiëren. Deze vertrouwde verifieerders worden geselecteerd door Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Optioneel alt-tekst toevoegen" msgid "Add another account" msgstr "Nog een account toevoegen" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Nog een bericht toevoegen" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Emoji-reactie toevoegen" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Deze feed toevoegen aan je feeds" msgid "Add to lists" msgstr "Toevoegen aan lijsten" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Volwassene" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Staat toegang tot privéberichten toe" msgid "Already have a code?" msgstr "Heb je al een code?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "Er is een e-mail verzonden naar {0}. Deze bevat een bevestigingscode die msgid "An error has occurred" msgstr "Er is een fout opgetreden" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Er is een fout opgetreden" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "Er is een fout opgetreden tijdens het ophalen van de feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Er is een fout opgetreden bij het genereren van je startpakket. Wil je het opnieuw proberen?" @@ -1640,11 +1600,11 @@ msgstr "Er is een fout opgetreden bij het genereren van je startpakket. Wil je h msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Er is een fout opgetreden tijdens het laden van de video. Probeer het later opnieuw." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Er is een fout opgetreden tijdens het laden van de video. Probeer het opnieuw." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Een probleem niet vermeld in deze opties" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Er is een probleem opgetreden bij het openen van de chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "App-wachtwoordnamen moeten minimaal 4 tekens lang zijn" msgid "App passwords" msgstr "App-wachtwoorden" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-wachtwoorden" @@ -1891,8 +1849,8 @@ msgstr "Bezwaar maken tegen deze beslissing" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Gearchiveerd van {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Gearchiveerd bericht" @@ -1980,7 +1938,7 @@ msgstr "Weet je zeker dat je dit uit jouw feeds wilt verwijderen?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Weet je zeker dat je dit bericht wilt weggooien?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Video's en GIF's automatisch afspelen" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Je moet eerst je e-mailadres bevestigen voordat je een bericht kunt plaatsen of beantwoorden." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Je moet eerst je e-mailadres bevestigen voordat je een startpakket maakt." @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Verjaardag" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Geblokkeerd" msgid "Blocked accounts" msgstr "Geblokkeerde accounts" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Geblokkeerde accounts" @@ -2282,7 +2250,7 @@ msgstr "Geblokkeerde accounts kunnen niet reageren op jouw gesprekken, je niet v 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 "Geblokkeerde accounts kunnen niet reageren op jouw gesprekken, je niet vermelden en niet anderszins met je communiceren. Je ziet hun tekst niet en zij kunnen de jouwe niet zien." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokkeren voorkomt niet dat deze labeler labels op je account plaatst." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan de echtheid van de geclaimde datum niet bevestigen." @@ -2330,7 +2299,7 @@ msgstr "Bluesky is een open netwerk waar je jouw hostingprovider kunt kiezen. Al msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky is leuker met vrienden!" @@ -2358,7 +2327,7 @@ msgstr "Servicevoorwaarden van Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky kiest een aantal aanbevolen accounts van personen in je netwerk." @@ -2425,24 +2394,25 @@ msgstr "Blader door meer suggesties op de pagina Verkennen" msgid "Browse other feeds" msgstr "Blader door andere feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Berichten over {displayName} bekijken" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Berichten gelabeld met {displayName} bekijken" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Startpakket {displayName} bekijken" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Onderwerp {0} bekijken" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Het onderwerp {displayName} bekijken" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Door {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Door <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Door een account aan te maken stem je in met de <0>ServicevoorwaardenTerms of Service." msgstr "Door een account aan te maken ga je akkoord met de <0>Servicevoorwaarden." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Door jou" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camera" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Heractivering annuleren en afmelden" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Zoeken annuleren" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat genegeerd" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Chatverzoeken" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chatinstellingen" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat niet meer genegeerd" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2808,7 @@ msgstr "Kies domeinverificatiemethode" msgid "Choose Feeds" msgstr "Feeds kiezen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Voor mij kiezen" @@ -2854,7 +2825,7 @@ msgstr "Personen kiezen" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Deze kleur kiezen als je avatar" @@ -2879,7 +2850,7 @@ msgstr "Kies je eigen tijdlijn! Feeds gemaakt door de gemeenschap helpen je om i msgid "Choose your password" msgstr "Je wachtwoord kiezen" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Je gebruikershandle" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klik om mislukt privébericht opnieuw te proberen" @@ -3003,7 +2974,7 @@ msgstr "Klik om mislukt privébericht opnieuw te proberen" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Klik om mislukt privébericht opnieuw te proberen" msgid "Close" msgstr "Sluiten" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Actief dialoogvenster sluiten" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Menu sluiten" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Dit dialoogvenster sluiten" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Sluit waarschuwing voor bijwerken wachtwoord" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Kleurmodus" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Strips" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Gemeenschapsrichtlijnen" @@ -3141,7 +3112,7 @@ msgstr "Gemeenschapsrichtlijnen" msgid "Complete onboarding and start using your account" msgstr "Voltooi de introductie en begin met het gebruiken van je account" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Voltooi de uitdaging" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Nieuw bericht opstellen" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Je kunt berichten opstellen met een lengte van maximaal {0, plural, other {# tekens}}" @@ -3160,11 +3131,11 @@ msgstr "Je kunt berichten opstellen met een lengte van maximaal {0, plural, othe msgid "Compose reply" msgstr "Reactie opstellen" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Video comprimeren..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contact opnemen met ondersteuning" @@ -3253,7 +3224,7 @@ msgstr "Inhoud & media" msgid "Content and media" msgstr "Inhoud en media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Inhoud en media" @@ -3265,10 +3236,6 @@ msgstr "Inhoud geblokkeerd" msgid "Content filters" msgstr "Inhoudsfilters" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Inhoudswaarschuwing" msgid "Content warnings" msgstr "Inhoudswaarschuwingen" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Contextmenu-achtergrond, klik om het menu te sluiten." @@ -3302,7 +3269,7 @@ msgstr "Contextmenu-achtergrond, klik om het menu te sluiten." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Verder lezen..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Buildversie gekopieerd naar klembord" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "App-wachtwoord kopiëren" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "Link kopiëren" msgid "Copy link to list" msgstr "Link naar lijst kopiëren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Link naar bericht kopiëren" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "Tekst privébericht kopiëren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "TXT-recordwaarde kopiëren" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Auteursrechtbeleid" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Kan chat niet verlaten" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Kan feed niet laden" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Kan chat niet negeren" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Aanmaken" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Maak een QR-code voor een startpakket" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Maak een startpakket" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Maak een startpakket voor mij" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Registreren" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Een account aanmaken" @@ -3666,15 +3633,15 @@ msgstr "Een account aanmaken" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "In plaats daarvan een avatar maken" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Nog een aanmaken" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Cultuur" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Donker" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Donker" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Donker thema" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Standaard" @@ -3894,7 +3861,7 @@ msgstr "Mijn account verwijderen" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Bericht verwijderen" @@ -3988,7 +3955,7 @@ msgstr "Dialoog: aanpassen wie op dit bericht mag reageren" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Dimmen" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Uitgeschakeld" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Weggooien" msgid "Discard changes?" msgstr "Wijzigingen weggooien?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Concept weggooien?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Bericht weggooien?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Ontmoedig aaps om mijn account te tonen aan afgemelde gebruikers" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Ontmoedig aaps om mijn account te tonen aan afgemelde gebruikers" msgid "Discover new custom feeds" msgstr "Ontdek nieuwe gepersonaliseerde feeds" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Ontdek nieuwe feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Sluiten" @@ -4103,19 +4070,19 @@ msgstr "Sluiten" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Fout negeren" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Starthandleiding afsluiten" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Grotere alt-tekstbadges tonen" msgid "Display name" msgstr "Weergavenaam" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Gereed" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Dubbeltik om het dialoogvenster te sluiten" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Afbeelding bewerken" msgid "Edit interaction settings" msgstr "Interactie-instellingen bewerken" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Mijn feeds bewerken" @@ -4406,6 +4374,11 @@ msgstr "Mijn feeds bewerken" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Personen bewerken" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Bewerk wie kan reageren" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Je startpakket bewerken" @@ -4500,8 +4473,8 @@ msgstr "HTML-code insluiten" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Bericht insluiten" @@ -4509,7 +4482,7 @@ msgstr "Bericht insluiten" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Sluit dit bericht in op je website. Kopieer simpelweg het volgende fragment en plak het in de HTML-code van je website." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Geïntegreerde videospeler" @@ -4533,7 +4506,7 @@ msgstr "Inhoud voor volwassenen inschakelen" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Externe media inschakelen" msgid "Enable media players for" msgstr "Mediaspelers inschakelen voor" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "Ingeschakeld" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Einde van feed" @@ -4608,7 +4582,7 @@ msgstr "Vul een woord of tag in" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Volledig scherm activeren" @@ -4650,11 +4624,11 @@ msgstr "Vul je gebruikersnaam en wachtwoord in" msgid "Enters full screen" msgstr "Opent volledig scherm" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Entertainment" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fout" @@ -4684,7 +4658,7 @@ msgstr "Er is een fout opgetreden bij het opslaan van het bestand" msgid "Error receiving captcha response." msgstr "Fout bij ontvangen van captcha-antwoord." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Fout: {error}" @@ -4696,8 +4670,8 @@ msgstr "Iedereen kan reageren" msgid "Everybody can reply to this post." msgstr "Iedereen kan reageren op dit bericht." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Iedereen" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Iedereen" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "Gebruikers uitsluiten die je volgt" msgid "Excludes users you follow" msgstr "Gebruikers uitsluiten die je volgt" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Volledig scherm afsluiten" @@ -4755,11 +4729,11 @@ msgstr "Gebruikerslijst uitklappen" msgid "Expand or collapse the full post you are replying to" msgstr "Uitklappen of inklappen van het volledige bericht waar je op reageert" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Klapt berichttekst uit of in" @@ -4802,15 +4776,15 @@ msgstr "Expliciete of mogelijk aanstootgevende media." msgid "Explicit sexual images." msgstr "Expliciete seksuele afbeeldingen." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Verkennen" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "Externe media" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Externe media kunnen websites toestaan om informatie over jou en jouw apparaat te verzamelen. Er wordt geen informatie verzonden of gevraagd totdat je drukt op de knop \"afspelen\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Externe mediavoorkeuren" @@ -4886,7 +4860,7 @@ msgstr "Kon de handle niet wijzigen. Probeer het nog eens." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Het laden van feedvoorkeuren is mislukt" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Het laden van voorgestelde feeds is mislukt" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Het is niet gelukt om een lijst te laden met volgsuggesties" @@ -5027,12 +5002,12 @@ msgstr "Het is niet gelukt om een lijst te laden met volgsuggesties" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feedmenu" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds bijgewerkt!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds die je misschien interessant vindt." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Update ophalen" @@ -5273,11 +5244,11 @@ msgstr "Update ophalen" msgid "File saved successfully!" msgstr "Bestand succesvol opgeslagen!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Zoek accounts om te volgen" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "{0} volgen" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} volgen" @@ -5453,11 +5424,11 @@ msgstr "{handle} volgen" msgid "Follow 10 accounts" msgstr "Volg 10 accounts" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Volg 7 accounts" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Volgers van @{0} die je kent" @@ -5544,7 +5515,7 @@ msgstr "Volgers die je kent" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Volgt {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Je volgt {handle}" @@ -5578,21 +5549,21 @@ msgstr "Je volgt {handle}" msgid "Following feed preferences" msgstr "Volgfeedvoorkeuren" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Volgfeedvoorkeuren" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Volgt jou" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Lettertype" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Lettergrootte" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Om veiligheidsredenen kun je dit niet meer bekijken. Je moet een nieuw app-wachtwoord genereren als je dit app-wachtwoord kwijtraakt." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Voor de beste ervaring raden we je aan het themalettertype te gebruiken." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Voor jou" @@ -5628,7 +5599,7 @@ msgstr "Voor jou" msgid "Forever" msgstr "Voor altijd" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Wachtwoord vergeten?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "Van <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Een startpakket genereren" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Hulp krijgen" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "Aan de slag" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Geef je profiel een gezicht" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Heb je een code? <0>Klik hier." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Heb je problemen?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Hulp" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Laat mensen weten dat je geen bot bent door een foto te uploaden of een avatar te maken." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "Verborgen" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Verborgen door je moderatie-instellingen." @@ -6148,9 +6122,9 @@ msgstr "Verborgen door je moderatie-instellingen." msgid "Hidden list" msgstr "Verborgen lijst" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Verborgen lijst" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Verbergen" @@ -6198,7 +6172,7 @@ msgstr "Reactie voor iedereen verbergen" msgid "Hide reply for me" msgstr "Reactie voor mij verbergen" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Deze kaart verbergen" @@ -6218,12 +6192,12 @@ msgstr "Deze reactie verbergen?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Populaire onderwerpen verbergen" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Populaire onderwerpen verbergen?" @@ -6240,7 +6214,7 @@ msgstr "Gebruikerslijst verbergen" msgid "Hide verification badges" msgstr "Verificatiebadges verbergen" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Verbergt de inhoud" @@ -6293,8 +6267,8 @@ msgstr "Hmm, we kunnen die moderatieservice niet laden." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Wacht even! We geven geleidelijk toegang tot video en je staat nog steeds in de rij. Kom snel terug!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Populair" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "Als je je e-mailadres wijzigt, wordt 2FA via e-mail uitgeschakeld." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Als je jouw wachtwoord wilt wijzigen sturen we je een code om te verifiëren dat dit jouw account is." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Jij bent nu nog de enige! Voeg meer personen toe aan je startpakket door hierboven te zoeken." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Taak-ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "Aan het gesprek deelnemen" msgid "Journalism" msgstr "Journalistiek" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Gelabeld door {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Gelabeld door de auteur." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Labels" @@ -6852,7 +6824,7 @@ msgstr "Labels toegevoegd" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Labels zijn aantekeningen over gebruikers en inhoud. Ze kunnen worden gebruikt om het te verbergen, te waarschuwen en het netwerk te categoriseren." @@ -6864,7 +6836,7 @@ msgstr "Labels op je account" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Taalinstellingen" @@ -6874,7 +6846,7 @@ msgstr "Taalinstellingen" msgid "Languages" msgstr "Talen" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Groter" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Nieuwste" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Leer meer" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Leer meer over het zelf hosten van je PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Meer informatie over de moderatie toegepast op deze inhoud" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Leer meer over deze waarschuwing" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Leer meer." @@ -6993,8 +6965,8 @@ msgstr "Verlaten" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Je verlaat Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "nog te gaan." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Laat me kiezen" @@ -7057,7 +7029,7 @@ msgstr "Laten we gaan!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Licht" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Licht" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Leuk" @@ -7076,7 +7048,7 @@ msgstr "Leuk" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Leuk ({0, plural, one {# vind-ik-leuk} other {# vind-ik-leuks}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Vind 10 berichten leuk" @@ -7085,7 +7057,7 @@ msgstr "Vind 10 berichten leuk" msgid "Like 10 posts to train the Discover feed" msgstr "Vind 10 berichten leuk om de Ontdekken-feed te trainen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Vind deze feed leuk" @@ -7093,8 +7065,8 @@ msgstr "Vind deze feed leuk" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Leuk gevonden door" @@ -7111,27 +7083,45 @@ msgstr "Leuk gevonden door" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Leuk gevonden door {0, plural, one {# gebruiker} other {# gebruikers}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Leuk gevonden door {likeCount, plural, one {# gebruiker} other {# gebruikers}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Vind-ik-leuks" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Vind-ik-leuks op dit bericht" @@ -7144,7 +7134,7 @@ msgstr "Lineair" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lijst" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lijst niet-genegeerd" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Meer laden" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Meer voorgestelde feeds laden" @@ -7292,8 +7282,8 @@ msgstr "Meer voorgestelde feeds laden" msgid "Load new notifications" msgstr "Nieuwe meldingen laden" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Logboek" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Maak er een voor mij" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Markeren als gelezen" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media die voor bepaalde doelgroepen aanstootgevend of ongepast kunnen zijn." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "vermelde gebruikers" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Vermeldingen" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Privébericht verwijderd" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "Berichtopties" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Privéberichten" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderatie" @@ -7636,7 +7630,7 @@ msgstr "Moderatielijst bijgewerkt" msgid "Moderation lists" msgstr "Moderatielijsten" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderatielijsten" @@ -7645,7 +7639,7 @@ msgstr "Moderatielijsten" msgid "moderation settings" msgstr "moderatie-instellingen" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderatietoestanden" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Genegeerde accounts" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Genegeerde accounts" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Maakt niet uit, maak een handle voor mij aan" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nieuw" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nieuwe chat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Nieuwe lijst" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Nieuw wachtwoord" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nieuw bericht" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Nieuwste antwoorden eerst" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Nieuws" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Volgende afbeelding" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Geen feeds gevonden. Probeer naar iets anders te zoeken." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Nog geen vind-ik-leuks" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Je volgt {0} niet meer" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Nog geen privéberichten" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Nog geen citaten" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Geen resultaat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Geen resultaten" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "Geen resultaten gevonden" msgid "No results found for \"{query}\"" msgstr "Geen resultaten gevonden voor \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Nee, bedankt" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Niemand" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Niemand heeft dit nog leuk gevonden. Misschien moet je de eerste zijn!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Niemand heeft dit nog geciteerd. Misschien moet jij de eerste zijn!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Niet-seksuele naaktbeelden" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Niet gevonden" @@ -8333,7 +8330,7 @@ msgstr "Opmerking over delen" 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 "Opmerking: Bluesky is een open en openbaar netwerk. Deze instelling beperkt alleen de zichtbaarheid van je inhoud op de Bluesky-app en -website. Andere apps respecteren deze instelling mogelijk niet. Je inhoud kan nog steeds worden getoond aan afgemelde gebruikers door andere apps en websites." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Meldinginstellingen" @@ -8353,11 +8350,12 @@ msgstr "Meldinginstellingen" msgid "Notification sounds" msgstr "Meldingsgeluiden" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "O nee!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Oké" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Introductie opnieuw tonen" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Alt-tekst ontbreekt bij een of meer GIF's." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Bij een of meer afbeeldingen ontbreekt de alt-tekst." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Alt-tekst ontbreekt bij een of meer video's." @@ -8471,7 +8471,7 @@ msgstr "Alleen {0} kan reageren." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Alleen WebVTT (.vtt)-bestanden worden ondersteund" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Oeps!" @@ -8544,7 +8544,7 @@ msgstr "Oeps!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Avatar-maker openen" @@ -8570,21 +8570,22 @@ msgstr "Gespreksopties openen" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Menu openen" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Emoji-kiezer openen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Menu Feedopties openen" @@ -8627,7 +8628,7 @@ msgstr "Open moderatie debugpagina" msgid "Open muted words and tags settings" msgstr "Genegeerde woorden en tags-instellingen openen" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "Opent aanvullende details voor een debug-item" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Opent camera op apparaat" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Opent proces om een nieuw Bluesky-account aan te maken" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Opent het proces om je aan te melden bij je bestaande Bluesky-account" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Wachtwoord bijgewerkt!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pauzeren" @@ -8925,12 +8926,12 @@ msgstr "Pauzeren" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Video pauzeren" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personen" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personen gevolgd door @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personen die @{0} volgen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Afbeeldingen bedoeld voor volwassenen." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "Vastzetten op startpagina" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Vastzetten op startpagina" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Vastgezet" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} vastgemaakt aan startpagina" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Vastgezet aan je feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Afspelen" @@ -9076,8 +9077,8 @@ msgstr "{0} afspelen" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Video afspelen" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politiek" @@ -9269,7 +9270,7 @@ msgstr "Politiek" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Plaatsen" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Bericht" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Alles plaatsen" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Bericht door @{0}" @@ -9340,7 +9341,7 @@ msgstr "Bericht verborgen door jou" msgid "Post interaction settings" msgstr "Instellingen voor berichtinteractie" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Bericht vastgezet" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Bericht losgemaakt" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Berichten" @@ -9398,6 +9396,10 @@ msgstr "Berichten kunnen worden genegeerd op basis van tekst, tags of beide. We msgid "Posts hidden" msgstr "Berichten verborgen" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "Privacy en beveiliging" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy en beveiliging" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Privacybeleid" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Video verwerken..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Citaatberichten uitgeschakeld" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citaten" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citaten van dit bericht" @@ -9647,7 +9650,7 @@ msgstr "Activeer je account opnieuw" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "Lees het Bluesky-privacybeleid" msgid "Read the Bluesky Terms of Service" msgstr "Lees de Bluesky-servicevoorwaarden" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Opnieuw verbinden" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Gesprekken opnieuw laden" @@ -9766,7 +9765,7 @@ msgstr "Gesprekken opnieuw laden" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Verwijderen" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Account verwijderen" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Verwijderen uit mijn feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Verwijderen uit snelle toegang?" @@ -9862,7 +9861,7 @@ msgstr "Verwijderen uit snelle toegang?" msgid "Remove from saved feeds" msgstr "Verwijderen uit opgeslagen feeds" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Afbeelding verwijderen" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Verwijderd uit lijst" msgid "Removed from saved feeds" msgstr "Verwijderd uit opgeslagen feeds" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Antwoorden" @@ -10037,7 +10037,7 @@ msgstr "Antwoorden op dit bericht zijn uitgeschakeld." msgid "Reply" msgstr "Reageren" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Reageren" @@ -10098,8 +10098,8 @@ msgstr "Gesprek melden" msgid "Report dialog" msgstr "Dialoogvenster Melden" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Feed melden" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Herplaatst door jou" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Herplaatsingen van dit bericht" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Probeert de laatste mislukte actie opnieuw" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Terug naar de startpagina" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Terug naar de vorige pagina" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Wijzigingen opslaan" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR-code opslaan" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "In mijn feeds opslaan" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Opgeslagen feeds" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Opgeslagen in je feeds" @@ -10520,8 +10520,8 @@ msgstr "Opgeslagen in je feeds" msgid "Say hello!" msgstr "Zeg hallo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Wetenschap" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Naar boven scrollen" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Zoeken" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Zoek naar feeds die je aan anderen wilt voorstellen." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF's zoeken" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Vacatures bij Bluesky bekijken" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Zoekslider. Gebruik de pijltjestoetsen om vooruit en achteruit te zoeken en spatie om af te spelen/pauzeren" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecteer een kleur" @@ -10764,11 +10769,11 @@ msgstr "Account selecteren" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecteer een avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecteer een emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "GIF selecteren" msgid "Select GIF \"{0}\"" msgstr "GIF \"{0}\" selecteren" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecteer de {emojiName}-emoji als je avatar" @@ -10945,7 +10951,8 @@ msgstr "Privébericht verzenden" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Bericht verzenden naar..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Verificatie-e-mail verzenden" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Verzenden als privébericht" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Stelt e-mail in voor het opnieuw instellen van wachtwoorden" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Instellingen" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Toch delen" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialoogvenster Link delen" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "at://-URI van bericht delen" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "QR-code delen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Dit startpakket delen" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Deel dit startpakket en help mensen lid te worden van je gemeenschap op Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Gedeelde voorkeuren-tester" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Tonen" msgid "Show alt text" msgstr "Toon alt-tekst" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Toch laten zien" @@ -11274,9 +11281,9 @@ msgstr "Lijst toch tonen" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Meer tonen" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Waarschuwing en filter uit feeds tonen" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Afmelden?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Aanmelden vereist" @@ -11469,7 +11476,7 @@ msgstr "Overslaan" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Kleiner" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Er is iets fout gegaan, probeer het opnieuw" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Een nieuwe chat starten" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Chat starten met {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpakket" @@ -11715,12 +11722,16 @@ msgstr "Startpakket door jou" msgid "Starter pack is invalid" msgstr "Startpakket is ongeldig" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpakketten" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Met startpakketten kun je eenvoudig je favoriete feeds en personen delen met je vrienden." @@ -11728,7 +11739,7 @@ msgstr "Met startpakketten kun je eenvoudig je favoriete feeds en personen delen msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Statuspagina" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Stap {0} van {1}" @@ -11754,7 +11765,7 @@ msgstr "Opslag gewist, je moet de app nu opnieuw opstarten." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Verhalenboek" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonneer je op @{0} om deze labels te gebruiken:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systeem" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tik om te sluiten" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "Taak voltooid - 10 vind-ik-leuks!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Leer ons algoritme wat je leuk vindt" @@ -12060,7 +12073,7 @@ msgstr "Voorwaarden" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Dat startpakket kan niet worden gevonden." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Dat is alles, mensen!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "Het lijkt erop dat er problemen zijn met de server. Probeer het over enk msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Het startpakket dat je probeert te bekijken is ongeldig. Je kunt dit startpakket in plaats daarvan verwijderen." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "De verificatiecode die je hebt opgegeven is ongeldig. Controleer of je d msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Thema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Er is een probleem opgetreden bij het verbinden met de server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Er is een probleem opgetreden bij het verbinden met de server. Controleer je internetverbinding en probeer het opnieuw." @@ -12283,8 +12296,8 @@ msgstr "Er is een probleem opgetreden bij het verbinden met de server. Controlee msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Er is een probleem opgetreden bij het ophalen van meldingen. Tik hier om het opnieuw te proberen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Er is een probleem opgetreden bij het ophalen van berichten. Tik hier om het opnieuw te proberen." @@ -12309,7 +12322,7 @@ msgstr "Er is een probleem opgetreden bij het ophalen van uw servicegegevens" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Er is een probleem opgetreden bij het verwijderen van deze feed. Controleer je internetverbinding en probeer het opnieuw." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Deze instellingen zijn alleen van toepassing op de volgende feed." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Deze {screenDescription} is gemarkeerd:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Dit account verzoekt gebruikers zich aan te melden vooraleer het profiel te bekijken." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Deze feed is leeg! Mogelijk moet je meer gebruikers volgen of je taalinstellingen aanpassen." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Deze feed is leeg." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Dit handle is gereserveerd. Probeer een ander." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Dit label is aangebracht door jou." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Deze labeler heeft niet aangegeven welke labels hij publiceert en is mogelijk niet actief." @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dit bericht beweert te zijn gemaakt op <0>{0}, maar werd voor het eerst gezien door Bluesky op <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Dit bericht beweert te zijn gemaakt op <0>{0}, maar werd voor het ee msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dit bericht wordt verborgen voor feeds en gesprekken. Dit kan niet ongedaan worden gemaakt." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "De auteur van dit bericht heeft het plaatsen van citaten uitgeschakeld." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Deze gebruiker heeft geen volgers." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Deze gebruiker heeft je geblokkeerd. Je kunt de inhoud niet bekijken." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Deze gebruiker staat in de lijst <0>{0} die je negeert." msgid "This user is new here. Press for more info about when they joined." msgstr "Deze gebruiker is nieuw hier. Druk voor meer info over wanneer ze lid zijn geworden." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Deze gebruiker volgt niemand." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Hiermee wordt @{0} verwijderd uit de snelle toegangslijst." @@ -12786,7 +12801,7 @@ msgstr "Gespreksvoorkeuren" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Gespreksvoorkeuren" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Populair" @@ -12858,7 +12873,7 @@ msgstr "Populair" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Account deblokkeren?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "{0} ontvolgen" msgid "Unfollow account" msgstr "Account ontvolgen" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Gesprek niet meer negeren" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Video niet meer negeren" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Losmaken" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Losmaken van startpagina" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Moderatielijst losmaken" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "Afmelden voor deze labeler" msgid "Unsubscribed from list" msgstr "Uitgeschreven voor lijst" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Bijwerken van zichtbaarheid van reactie is mislukt" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "In plaats daarvan een foto uploaden" @@ -13355,7 +13374,7 @@ msgstr "Uploaden vanuit bestanden" msgid "Upload from Library" msgstr "Uploaden vanuit bibliotheek" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Afbeeldingen uploaden..." msgid "Uploading link thumbnail..." msgstr "Linkminiatuur uploaden..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Video uploaden..." @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "" msgid "Video failed to process" msgstr "Video kan niet worden verwerkt" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videogames" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video niet gevonden." @@ -13653,7 +13672,7 @@ msgstr "Video niet gevonden." msgid "Video settings" msgstr "Video-instellingen" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video geüpload" @@ -13662,17 +13681,17 @@ msgstr "Video geüpload" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Avatar van {0} bekijken" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Profiel van {0} bekijken" @@ -13724,13 +13743,13 @@ msgstr "Bekijk blogpost voor meer details" msgid "View debug entry" msgstr "Debug-item bekijken" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Details bekijken" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Volledig gesprek bekijken" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "De labelservice van @{0} bekijken" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Bekijk gebruikers die deze feed leuk vinden" @@ -13831,7 +13850,7 @@ msgstr "Je moderatielijsten bekijken" msgid "View your muted accounts" msgstr "Je genegeerde accounts bekijken" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Er zijn netwerkproblemen, probeer het opnieuw." #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Het spijt ons, maar we kunnen deze lijst niet ophalen. Neem contact op m msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Het spijt ons, maar we kunnen je genegeerde woorden op dit moment niet laden. Probeer het opnieuw." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Het spijt ons! Het bericht waarop je reageert is verwijderd." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Hoe gaat het?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Oeps!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Bericht schrijven" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Schrijf je reactie" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Het is niet toegestaan om video's te uploaden." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Je kunt je nu aanmelden met je nieuwe wachtwoord." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Je hebt tijdelijk de limiet voor video-uploads bereikt. Probeer het later opnieuw." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Je hebt nog geen startpakket gemaakt!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Je mag maximaal 3 feeds toevoegen" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Je moet ten minste 7 andere personen volgen om een startpakket te genereren." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Je volgt de voorgestelde gebruikers en feeds zodra je klaar bent met het maken van je account!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Je volgt de voorgestelde gebruikers zodra je klaar bent met het aanmaken van je account!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Je hebt het einde van je feed bereikt! Zoek nog meer accounts om te volgen." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Je hebt je dagelijkse limiet voor video-uploads bereikt (te veel bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Je hebt je daglimiet voor het uploaden van video's bereikt (te veel video's)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Je account" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Je account is nog niet oud genoeg om video's te uploaden. Probeer het later nog eens." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "Jouw profiel, berichten, feeds en lijsten zijn niet langer zichtbaar voor andere Bluesky-gebruikers. Je kunt je account op elk moment opnieuw activeren door aan te melden." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/pl/messages.po b/src/locale/locales/pl/messages.po index 12013851af..4e84961eb8 100644 --- a/src/locale/locales/pl/messages.po +++ b/src/locale/locales/pl/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: pl\n" +"Language: pl_PL\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Polish\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(zawiera załącznik)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# godzinę} few {# godziny} other {# godzin}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# polubienie} few {# polubienia} other {# polubień}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} obserwowanych" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Nie możesz wysłać wiadomości do {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {obserwowany} other {obserwowanych}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cytat} few {cytaty} other {cytatów}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} few {reposty} other {repostów}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {zakładka} few {zakładki} many {zakładek} #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 dni" msgid "7 days" msgstr "7 dni" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Ułatwienia dostępu" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Ustawienia ułatwień dostępu" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Konto zostało wyciszone za pomocą listy" msgid "Account options" msgstr "Ustawienia konta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Konto zostało usunięte z szybkiego dostępu" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Dodaj tekst alternatywny (opcjonalne)" msgid "Add another account" msgstr "Dodaj inne konto" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Dodaj inny wpis" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Dodaj do swoich kanałów" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Dla dorosłych" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Zezwala na dostęp do wiadomości bezpośrednich" msgid "Already have a code?" msgstr "Masz już kod?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "Email został wysłany do {0}. Zawiera on kod weryfikacyjny, który moż msgid "An error has occurred" msgstr "Wystąpił błąd" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Wystąpił błąd" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Wystąpił błąd podczas generowania pakietu startowego. Czy chcesz spróbować ponownie?" @@ -1640,11 +1600,11 @@ msgstr "Wystąpił błąd podczas generowania pakietu startowego. Czy chcesz spr msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Wystąpił błąd podczas wczytywania wideo. Spróbuj ponownie później." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Wystąpił błąd podczas wczytywania wideo. Spróbuj ponownie." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Inny problem" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Wystąpił błąd podczas otwierania czatu" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Nazwy haseł aplikacji muszą składać się z co najmniej 4 znaków" msgid "App passwords" msgstr "Hasła aplikacji" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Hasła aplikacji" @@ -1891,8 +1849,8 @@ msgstr "Odwołaj się od tej decyzji" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archiwum z dnia {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Wpis został zarchiwizowany" @@ -1980,7 +1938,7 @@ msgstr "Czy na pewno chcesz to usunąć ze swoich kanałów?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Czy na pewno chcesz odrzucić ten wpis?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Autoodtwarzanie filmów i GIF-ów" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Potwierdź swój adres email przed utworzeniem pakietu startowego." @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Data urodzenia" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Zablokowane" msgid "Blocked accounts" msgstr "Zablokowane konta" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Zablokowane konta" @@ -2282,7 +2250,7 @@ msgstr "Zablokowane konta nie mogą komentować twoich wpisów, wzmiankować ci 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 "Zablokowane konta nie mogą komentować twoich wpisów, wzmiankować cię ani w inny sposób wchodzić z tobą w interakcje. Nie będziesz widzieć ich treści, a oni nie będą widzieć twoich." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokowanie nie przeszkodzi moderacji w umieszczaniu ostrzeżeń na twoim koncie." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nie może potwierdzić autentyczności podanej daty." @@ -2330,7 +2299,7 @@ msgstr "Bluesky to otwarta sieć, w której możesz wybrać swojego dostawcę ho msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky to otwarta sieć, w której możesz wybrać swojego dostawcę usług. Dla nowych użytkowników zalecamy użycie domyślnej opcji – Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky jest lepszy ze znajomymi!" @@ -2358,7 +2327,7 @@ msgstr "Regulamin Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky wybierze zestaw polecanych kont spośród osób w Twojej sieci." @@ -2425,24 +2394,25 @@ msgstr "Wyświetl więcej rekomendacji na stronie Eksploruj" msgid "Browse other feeds" msgstr "Wyświetl pozostałe kanały" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Przeglądaj wpisy o {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Przeglądaj wpisy z tagiem {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Przeglądaj pakiet startowy {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Przeglądaj {displayName}" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Od {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Od <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Tworząc konto, akceptujesz <0>Regulamin i <1>Politykę prywatności msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Tworząc konto, akceptujesz <0>Regulamin." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Aparat" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Anuluj reaktywację i wyloguj się" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Anuluj wyszukiwanie" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Czat został wyciszony" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Ustawienia czatu" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Cofnięto wyciszenie czatu" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "Wybierz metodę weryfikacji domeny" msgid "Choose Feeds" msgstr "Wybierz kanały" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Wybierz dla mnie" @@ -2854,7 +2825,7 @@ msgstr "Wybierz osoby" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Wybierz ten kolor jako swoje zdjęcie profilowe" @@ -2879,7 +2850,7 @@ msgstr "Wybierz własną oś czasu! Kanały tworzone przez społeczność pomaga msgid "Choose your password" msgstr "Ustaw hasło" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Twoja nazwa" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Kliknij, aby spróbować wysłać wiadomość ponownie" @@ -3003,7 +2974,7 @@ msgstr "Kliknij, aby spróbować wysłać wiadomość ponownie" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Kliknij, aby spróbować wysłać wiadomość ponownie" msgid "Close" msgstr "Zamknij" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Zamknij aktywne okno" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Zamknij to okno" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Zamyka ostrzeżenie o aktualizacji hasła" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Motyw" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Komiksy" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Wytyczne dla społeczności" @@ -3141,7 +3112,7 @@ msgstr "Wytyczne dla społeczności" msgid "Complete onboarding and start using your account" msgstr "Ukończ wprowadzenie i zacznij korzystać ze swojego konta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Ukończ wyzwanie" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Utwórz nowy wpis" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "Skomentuj" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Kompresowanie wideo..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Skontaktuj się z pomocą techniczną" @@ -3253,7 +3224,7 @@ msgstr "Treści i multimedia" msgid "Content and media" msgstr "Treści i multimedia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Treści i multimedia" @@ -3265,10 +3236,6 @@ msgstr "Zawartość została zablokowana" msgid "Content filters" msgstr "Filtrowanie" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Treści z całej sieci, które naszym zdaniem mogą ci się spodobać." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Ostrzeżenie o zawartości" msgid "Content warnings" msgstr "Ostrzeżenia o zawartości" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Kliknij, aby zamknąć menu kontekstowe." @@ -3302,7 +3269,7 @@ msgstr "Kliknij, aby zamknąć menu kontekstowe." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Kontynuuj wątek..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Numer wersji został skopiowany do schowka" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Kopiuj hasło aplikacji" msgid "Copy at:// URI" msgstr "Skopiuj:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Skopiuj DID" @@ -3449,10 +3416,10 @@ msgstr "Kopiuj link" msgid "Copy link to list" msgstr "Kopiuj link do listy" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopiuj link do wpisu" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "Kopiuj tekst wiadomości" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Skopiuj wpis:// URI" @@ -3490,7 +3457,7 @@ msgstr "Kopiuj rekord TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polityka praw autorskich" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Nie udało się opuścić czatu" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nie udało się wczytać kanału" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Nie udało się wyciszyć czatu" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Utwórz" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Utwórz kod QR dla pakietu startowego" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Utwórz pakiet startowy" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Utwórz dla mnie pakiet startowy" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Zarejestruj się" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Utwórz konto" @@ -3666,15 +3633,15 @@ msgstr "Utwórz konto" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Zamiast tego utwórz zdjęcie profilowe" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Utwórz inne" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Kultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Ciemny" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Ciemny" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Ciemny motyw" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Domyślny" @@ -3894,7 +3861,7 @@ msgstr "Usuń moje konto" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Usuń wpis" @@ -3988,7 +3955,7 @@ msgstr "Okno dialogowe: dostosuj, kto może wchodzić w interakcje z tym wpisem" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Przyciemniony" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Wyłączono" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Odrzuć" msgid "Discard changes?" msgstr "Odrzucić zmiany?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Odrzucić szkic?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Odrzucić wpis?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Poproś aplikacje o niepokazywanie mojego konta niezalogowanym osobom" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Poproś aplikacje o niepokazywanie mojego konta niezalogowanym osobom" msgid "Discover new custom feeds" msgstr "Odkryj nowe kanały niestandardowe" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Odkryj nowe kanały" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Pomiń" @@ -4103,19 +4070,19 @@ msgstr "Pomiń" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Pomiń błąd" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Pomiń wprowadzenie" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Wyświetlaj większe znaczniki tekstu alternatywnego" msgid "Display name" msgstr "Wyświetlana nazwa" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Gotowe" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Kliknij dwukrotnie, aby zamknąć to okno" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Kliknij dwukrotnie, aby polubić" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Edytuj obrazek" msgid "Edit interaction settings" msgstr "Edytuj ustawienia interakcji" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edytuj moje kanały" @@ -4406,6 +4374,11 @@ msgstr "Edytuj moje kanały" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Edytuj osoby" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Wybierz, kto może komentować" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edytuj swój pakiet startowy" @@ -4500,8 +4473,8 @@ msgstr "Kod HTML do osadzenia" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Osadź wpis" @@ -4509,7 +4482,7 @@ msgstr "Osadź wpis" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Osadź ten wpis na swojej stronie internetowej. Po prostu skopiuj poniższy snippet i wklej go do kodu HTML swojej strony." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Wbudowany odtwarzacz wideo" @@ -4533,7 +4506,7 @@ msgstr "Pokazuj treści dla dorosłych" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Pokazuj multimedia spoza aplikacji" msgid "Enable media players for" msgstr "Włącz odtwarzacze dla" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "Włącz popularne klipy wideo na kanale Discover" msgid "Enabled" msgstr "Włączono" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Koniec kanału" @@ -4608,7 +4582,7 @@ msgstr "Wprowadź słowo lub tag" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Włącz tryb pełnoekranowy" @@ -4650,11 +4624,11 @@ msgstr "Wprowadź swoją nazwę i hasło" msgid "Enters full screen" msgstr "Przechodzi do trybu pełnoekranowego" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Błąd" @@ -4684,7 +4658,7 @@ msgstr "Wystąpił błąd podczas zapisywania pliku" msgid "Error receiving captcha response." msgstr "Błąd podczas odbierania odpowiedzi captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "Każdy może komentować" msgid "Everybody can reply to this post." msgstr "Każdy może komentować ten wpis." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Każdy" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Każdy" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "Wyklucz obserwowane osoby" msgid "Excludes users you follow" msgstr "Wyklucza obserwowane osoby" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Wyłącz pełny ekran" @@ -4755,11 +4729,11 @@ msgstr "Rozwiń listę osób" msgid "Expand or collapse the full post you are replying to" msgstr "Rozwiń lub zwiń cały wpis, który komentujesz" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Rozwija lub zwija tekst wpisu" @@ -4802,15 +4776,15 @@ msgstr "Nieodpowiednia lub niepokojąca treść." msgid "Explicit sexual images." msgstr "Obrazy o charakterze jednoznacznie seksualnym." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "Multimedia spoza aplikacji" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Multimedia spoza aplikacji mogą umożliwiać witrynom gromadzenie informacji o tobie i twoim urządzeniu. Żadne informacje nie są wysyłane ani udostępniane do momentu naciśnięcia przycisku odtwarzania." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferencje multimediów spoza aplikacji" @@ -4886,7 +4860,7 @@ msgstr "Nie udało się zmienić nazwy. Spróbuj ponownie." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Nie udało się wczytać preferencji kanałów" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Nie udało się wczytać polecanych kanałów" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Nie udało się wczytać polecanych osób" @@ -5027,12 +5002,12 @@ msgstr "Nie udało się wczytać polecanych osób" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Kanał" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu kanału" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Kanały zostały zaktualizowane!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Kanały, które mogą Ci się spodobać." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "Plik został zapisany pomyślnie!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Znajdź konta do obserwowania" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Obserwuj {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Obserwuj {handle}" @@ -5453,11 +5424,11 @@ msgstr "Obserwuj {handle}" msgid "Follow 10 accounts" msgstr "Zaobserwuj 10 kont" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Zaobserwuj 7 kont" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Obserwujący @{0}, których znasz" @@ -5544,7 +5515,7 @@ msgstr "Obserwujący, których znasz" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Obserwowani {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Obserwujesz {handle}" @@ -5578,21 +5549,21 @@ msgstr "Obserwujesz {handle}" msgid "Following feed preferences" msgstr "Preferencje kanału obserwowanych" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencje kanału obserwowanych" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Obserwuje cię" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Czcionka" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Rozmiar czcionki" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Ze względów bezpieczeństwa nie będzie można wyświetlić go ponownie. W przypadku utraty hasła do aplikacji konieczne będzie wygenerowanie nowego." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Aby uzyskać najlepsze wrażenia, zalecamy korzystanie z czcionki motywu." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "Na zawsze" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Nie pamiętasz hasła?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "Od <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Wygeneruj pakiet startowy" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Uzyskaj pomoc" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Zmień wygląd swojego profilu" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Masz problem?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Pomoc" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Daj znać innym, że nie jesteś botem, ustawiając zdjęcie profilowe." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "Ukryte" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Ukryte ze względu na twoje ustawienia moderacji." @@ -6148,9 +6122,9 @@ msgstr "Ukryte ze względu na twoje ustawienia moderacji." msgid "Hidden list" msgstr "Ukryta lista" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Ukryta lista" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Ukryj" @@ -6198,7 +6172,7 @@ msgstr "Ukryj komentarz dla wszystkich" msgid "Hide reply for me" msgstr "Ukryj komentarz dla mnie" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "Ukryć ten komentarz?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Ukryj popularne" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Ukryć popularne?" @@ -6240,7 +6214,7 @@ msgstr "Ukryj listę osób" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Ukrywa zawartość" @@ -6293,8 +6267,8 @@ msgstr "Nie mogliśmy wczytać tej usługi moderacji." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Poczekaj! Dostęp do materiałów wideo udostępniamy stopniowo, a ty wciąż czekasz na swoją kolej. Sprawdź ponownie za jakiś czas!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Jeśli chcesz zmienić hasło, wyślemy Ci kod, aby zweryfikować, że to Twoje konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "W tej chwili jesteś tylko ty! Dodaj więcej osób do swojego pakietu startowego, wyszukując powyżej." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "Dołącz do rozmowy" msgid "Journalism" msgstr "Dziennikarstwo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Oznaczone przez {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Oznaczone przez autora." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Ostrzeżenia" @@ -6852,7 +6824,7 @@ msgstr "Ostrzeżenia zostały dodane" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Ostrzeżenia to adnotacje dotyczące osób i treści. Mogą być używane do ukrywania, ostrzegania i kategoryzowania sieci." @@ -6864,7 +6836,7 @@ msgstr "Ostrzeżenia na twoim koncie" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Ustawienia języka" @@ -6874,7 +6846,7 @@ msgstr "Ustawienia języka" msgid "Languages" msgstr "Języki" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Większy" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Najnowsze" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Dowiedz się więcej" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Dowiedz się więcej o samodzielnym hostingu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Dowiedz się więcej na temat ostrzeżenia nałożonego na tę zawartość" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Dowiedz się więcej o tym ostrzeżeniu" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Dowiedz się więcej." @@ -6993,8 +6965,8 @@ msgstr "Opuść" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Opuszczasz Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "pozostałe." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Pozwól mi wybrać" @@ -7057,7 +7029,7 @@ msgstr "Do dzieła!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Jasny" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Jasny" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Polub" @@ -7076,7 +7048,7 @@ msgstr "Polub" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Polub ({0, plural, one {# polubienie} few {# polubienia} other {# polubień}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Polub 10 wpisów" @@ -7085,7 +7057,7 @@ msgstr "Polub 10 wpisów" msgid "Like 10 posts to train the Discover feed" msgstr "Polub 10 wpisów, aby dostosować kanał główny" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Polub ten kanał" @@ -7093,8 +7065,8 @@ msgstr "Polub ten kanał" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Polubione przez" @@ -7111,27 +7083,45 @@ msgstr "Polubione przez" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Polubione przez {0, plural, one {# osobę} few {# osoby} other {# osób}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Polubione przez {likeCount, plural, one {# osobę} few {# osoby} other {# osób}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Polubienia" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Polubienia tego wpisu" @@ -7144,7 +7134,7 @@ msgstr "W linii" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Cofnięto wyciszenie listy" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Wczytaj więcej" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Wczytaj więcej polecanych kanałów" @@ -7292,8 +7282,8 @@ msgstr "Wczytaj więcej polecanych kanałów" msgid "Load new notifications" msgstr "Wczytaj nowe powiadomienia" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Dziennik" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Utwórz go dla mnie" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Oznacz jako przeczytane" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Materiały, które mogą być niepokojące lub nieodpowiednie dla niektórych odbiorców." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "wzmianki" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Wzmianki" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Wiadomość usunięta" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Wiadomości" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderacja" @@ -7636,7 +7630,7 @@ msgstr "Zaktualizowano listę moderacji" msgid "Moderation lists" msgstr "Listy moderacji" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listy moderacji" @@ -7645,7 +7639,7 @@ msgstr "Listy moderacji" msgid "moderation settings" msgstr "ustawienia moderacji" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Status moderacji" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Wyciszone konta" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Wyciszone konta" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Jednak utwórz nazwę dla mnie" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nowa" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nowy czat" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Nowa lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Nowe hasło" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nowy wpis" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Najpierw najnowsze komentarze" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Aktualności" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Następne zdjęcie" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Nie znaleziono żadnych kanałów. Spróbuj wyszukać coś innego." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Brak polubień" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Już nie obserwujesz {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Brak wiadomości" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Brak cytatów" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Brak wyników" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Brak wyników" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "Nie znaleziono żadnych wyników" msgid "No results found for \"{query}\"" msgstr "Nie znaleziono żadnych wyników dla \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Nie, dziękuję" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Nikt" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nikt jeszcze tego nie polubił. Możesz być pierwszą osobą, która to zrobi!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nikt jeszcze tego nie zacytował. Możesz być pierwszą osobą, która to zrobi!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Nieseksualna nagość" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nie znaleziono" @@ -8333,7 +8330,7 @@ msgstr "Uwaga o udostępnianiu" 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 "Uwaga: Bluesky jest otwartą i publiczną społecznością. To ustawienie ogranicza jedynie widoczność twoich treści w aplikacji i serwisie Bluesky, inne aplikacje mogą tego nie respektować. Twoje treści mogą być nadal wyświetlane niezalogowanym osobom przez inne aplikacje i strony internetowe." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ustawienia powiadomień" @@ -8353,11 +8350,12 @@ msgstr "Ustawienia powiadomień" msgid "Notification sounds" msgstr "Dźwięki powiadomień" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "O nie!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okej" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Rozpocznij od nowa" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "W co najmniej jednym pliku GIF brakuje tekstu alternatywnego." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "W co najmniej jednym zdjęciu brakuje tekstu alternatywnego." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "W co najmniej jednym wideo brakuje tekstu alternatywnego." @@ -8471,7 +8471,7 @@ msgstr "Tylko {0} mogą komentować." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Obsługiwane są tylko pliki WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,7 +8544,7 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Otwórz kreator zdjęcia profilowego" @@ -8570,21 +8570,22 @@ msgstr "Zmień ustawienia rozmowy" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Otwórz menu" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Wybierz emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Otwórz informacje o kanale" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Zmień ustawienia kanału" @@ -8627,7 +8628,7 @@ msgstr "Otwórz stronę debugowania moderacji" msgid "Open muted words and tags settings" msgstr "Zmień ustawienia wyciszonych słów i tagów" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "Otwiera dodatkowe szczegóły debugowania" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Otwiera aplikację aparatu" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Otwiera proces tworzenia nowego konta Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Otwiera proces logowania do istniejącego konta Bluesky" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Hasło zostało zaktualizowane!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Zatrzymaj" @@ -8925,12 +8926,12 @@ msgstr "Zatrzymaj" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Zatrzymaj wideo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Osoby" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Osoby obserwowane przez @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Osoby obserwujące @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Zdjęcia przeznaczone dla dorosłych." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Przypnij kanał" @@ -9034,7 +9035,7 @@ msgstr "Przypnij kanał" msgid "Pin to home" msgstr "Przypnij do głównej" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Przypnij do głównej" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Przypięte" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} przypięto do głównej" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Przypięto kanał" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Odtwórz" @@ -9076,8 +9077,8 @@ msgstr "Odtwórz {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Odtwórz filmik" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Polityka" @@ -9269,7 +9270,7 @@ msgstr "Polityka" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Opublikuj" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Opublikuj" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Opublikuj wszystko" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Wpis od @{0}" @@ -9340,7 +9341,7 @@ msgstr "Wpis został ukryty przez ciebie" msgid "Post interaction settings" msgstr "Ustawienia interakcji wpisu" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Ustawienia interakcji wpisu" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Wpis został przypięty" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Wpis został odpięty" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Wpisy" @@ -9398,6 +9396,10 @@ msgstr "Wpisy mogą być wyciszane na podstawie zawartego w nich tekstu, tagów msgid "Posts hidden" msgstr "Wpisy zostały ukryte" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Prywatność" msgid "Privacy and security" msgstr "Prywatność i bezpieczeństwo" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Prywatność i bezpieczeństwo" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polityka prywatności" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Przetwarzanie wideo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Publiczne listy osób do zbiorowego wyciszania lub blokowania." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Cytowanie wpisów zostało wyłączone" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Cytaty" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Cytowania tego wpisu" @@ -9647,7 +9650,7 @@ msgstr "Ponownie aktywuj swoje konto" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Czytaj mniej" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Czytaj więcej" @@ -9687,11 +9690,11 @@ msgstr "Zapoznaj się z Polityką prywatności Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Zapoznaj się z Regulaminem Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Polecane" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Połącz ponownie" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Odśwież rozmowy" @@ -9766,7 +9765,7 @@ msgstr "Odśwież rozmowy" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Usuń" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Usuń konto" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Usuń z moich kanałów" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Usunąć z szybkiego dostępu?" @@ -9862,7 +9861,7 @@ msgstr "Usunąć z szybkiego dostępu?" msgid "Remove from saved feeds" msgstr "Usuń z zapisanych kanałów" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Usuń zdjęcie" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Usunięto z listy" msgid "Removed from saved feeds" msgstr "Usunięto z zapisanych kanałów" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Komentarze" @@ -10037,7 +10037,7 @@ msgstr "Komentarze do tego wpisu są wyłączone." msgid "Reply" msgstr "Skomentuj" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Skomentuj" @@ -10098,8 +10098,8 @@ msgstr "Zgłoś rozmowę" msgid "Report dialog" msgstr "Okno zgłoszenia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Zgłoś kanał" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Repostowane przez ciebie" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reposty tego wpisu" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Ponawia ostatnią akcję, która zakończyła się błędem" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Wraca do strony głównej" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Wraca do poprzedniej strony" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Zapisz zmiany" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Zapisz kod QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Dodaj do moich kanałów" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Zapisane kanały" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Dodano do twoich kanałów" @@ -10520,8 +10520,8 @@ msgstr "Dodano do twoich kanałów" msgid "Say hello!" msgstr "Przywitaj się!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Nauka" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Przewiń na górę" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Szukaj" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Szukaj wpisów od @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Szukaj kanałów, które chcesz polecać innym." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Szukaj GIF-ów" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Zobacz oferty pracy w Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Klawisze strzałek służą do wyszukiwania do przodu i do tyłu, a spacja do odtwarzania lub zatrzymywania" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Wybierz kolor" @@ -10764,11 +10769,11 @@ msgstr "Wybierz konto" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Wybierz zdjęcie profilowe" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Wybierz emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Wybierz GIF" msgid "Select GIF \"{0}\"" msgstr "Wybierz GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Wybierz emoji {emojiName} jako zdjęcie profilowe" @@ -10945,7 +10951,8 @@ msgstr "Wyślij wiadomość" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Wyślij wpis do..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Wyślij email weryfikacyjny" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Wyślij bezpośrednio" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Ustawia email do resetowania hasła" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ustawienia" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Udostępnij mimo to" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Okno udostępniania linku" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Udostępnij kod QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Udostępnij ten kanał" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Udostępnij pakiet startowy" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Udostępnij ten pakiet startowy i pomóż innym dołączyć do twojej społeczności na Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Tester współdzielonych preferencji" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Pokaż" msgid "Show alt text" msgstr "Pokaż tekst alternatywny" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Pokaż mimo to" @@ -11274,9 +11281,9 @@ msgstr "Pokaż listę mimo to" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Pokaż więcej" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Pokaż ostrzeżenie i odfiltruj z kanałów" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Pokazuje informacje o momencie utworzenia tego wpisu" @@ -11341,15 +11348,15 @@ msgstr "Pokazuje informacje o momencie utworzenia tego wpisu" msgid "Shows other accounts you can switch to" msgstr "Pokazuje inne konta, na które możesz się przełączyć" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Pokazuje zawartość" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Pokazuje zawartość" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Wylogować się?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Rejestracja wymagana" @@ -11469,7 +11476,7 @@ msgstr "Pomiń" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mniejszy" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Coś poszło nie tak, spróbuj ponownie" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Coś poszło nie tak? Daj nam znać." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Zacznij nowy czat" @@ -11682,17 +11689,17 @@ msgstr "Zacznij dodawać osoby" msgid "Start adding people!" msgstr "Zacznij dodawać osoby!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Zacznij czat z {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pakiet startowy" @@ -11715,12 +11722,16 @@ msgstr "Twój pakiet startowy" msgid "Starter pack is invalid" msgstr "Pakiet startowy jest nieprawidłowy" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pakiety" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Pakiety startowe umożliwiają łatwe udostępnianie ulubionych kanałów i osób znajomym." @@ -11728,7 +11739,7 @@ msgstr "Pakiety startowe umożliwiają łatwe udostępnianie ulubionych kanałó msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Status" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Krok {0} z {1}" @@ -11754,7 +11765,7 @@ msgstr "Pamięć została wyczyszczona, uruchom aplikację ponownie." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Historia aktywności" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subskrybuj @{0}, aby użyć tych ostrzeżeń:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Przełącz na {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systemowe" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Kliknij, aby odrzucić" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Zadanie wykonane – 10 obserwacji!" msgid "Task complete - 10 likes!" msgstr "Zadanie wykonane – 10 polubień!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Dostosuj nasz algorytm do tego, co lubisz" @@ -12060,7 +12073,7 @@ msgstr "Regulamin" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Ten pakiet startowy nie został odnaleziony." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "To już wszystko!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "To wszystko!" @@ -12216,7 +12229,7 @@ msgstr "Wygląda na to, że serwer napotyka problemy. Spróbuj ponownie za jaki msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Pakiet startowy, który próbujesz wyświetlić, jest nieprawidłowy. Możesz go usunąć." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "Podany kod weryfikacyjny jest nieprawidłowy. Sprawdź, czy został uży msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Motyw" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Wystąpił problem podczas łączenia z serwerem" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Wystąpił problem podczas łączenia z serwerem, sprawdź połączenie internetowe i spróbuj ponownie." @@ -12283,8 +12296,8 @@ msgstr "Wystąpił problem podczas łączenia z serwerem, sprawdź połączenie msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Wystąpił problem podczas wczytywania powiadomień. Kliknij tutaj, aby spróbować ponownie." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Wystąpił problem podczas wczytywania wpisów. Kliknij tutaj, aby spróbować ponownie." @@ -12309,7 +12322,7 @@ msgstr "Wystąpił problem podczas wczytywania informacji o usłudze" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Wystąpił problem podczas usuwania tego kanału. Sprawdź połączenie internetowe i spróbuj ponownie." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Ustawienia te dotyczą tylko kanału obserwowanych." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Ten {screenDescription} został zgłoszony:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Zaloguj się, aby wyświetlić profil tego konta." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ten kanał jest pusty! Możesz zaobserwować więcej osób lub dostosować ustawienia językowe." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Ten kanał jest pusty." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Ta nazwa jest zajęta. Wypróbuj inną." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Ostrzeżenie to zostało nadane przez ciebie." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Ta moderacja nie określiła, jakie ostrzeżenia publikuje i może nie być aktywna." @@ -12621,13 +12634,13 @@ msgstr "Ta lista jest pusta." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ten wpis został utworzony <0>{0}, ale po raz pierwszy pojawił się na Bluesky <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Ten wpis został utworzony <0>{0}, ale po raz pierwszy pojawił się msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ten wpis ma nieznany typ wątków. Twoja aplikacja może być nieaktualna." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ten wpis zostanie ukryty w kanałach i wątkach. Nie można tego cofnąć." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Autor tego wpisu wyłączył możliwość cytowania." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Ta osoba nie ma żadnych obserwujących." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Ta osoba cię zablokowała. Nie możesz wyświetlać jej treści." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Ta osoba znajduje się na liście <0>{0}, która została wyciszona. msgid "This user is new here. Press for more info about when they joined." msgstr "Ta osoba jest tu nowa. Kliknij, aby uzyskać więcej informacji o tym, kiedy dołączyła." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Ta osoba nikogo nie obserwuje." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Spowoduje to usunięcie @{0} z listy szybkiego dostępu." @@ -12786,7 +12801,7 @@ msgstr "Ustawienia wątków" msgid "Threaded" msgstr "Tryb wątkowy" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Ustawienia wątków" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Najlepsze" @@ -12858,7 +12873,7 @@ msgstr "Najlepsze" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Temat" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Popularne" @@ -12902,7 +12919,7 @@ msgstr "Popularne" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Odblokować konto?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Nie obserwuj {0}" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Nie obserwuj" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Nie lubię" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Anuluj wyciszenie" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Anuluj wyciszenie" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Odepnij" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Odepnij kanał" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Odepnij od głównej" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Odepnij listę moderacji" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} odpięto od głównej" @@ -13258,11 +13277,11 @@ msgstr "Nie subskrybuj tej moderacji" msgid "Unsubscribed from list" msgstr "Nie subskrybujesz już listy" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Nie udało się zaktualizować widoczności komentarzy" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Zamiast tego prześlij zdjęcie" @@ -13355,7 +13374,7 @@ msgstr "Prześlij z plików" msgid "Upload from Library" msgstr "Prześlij z biblioteki" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Przesyłanie zdjęć..." msgid "Uploading link thumbnail..." msgstr "Przesyłanie miniatury..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Przesyłanie wideo..." @@ -13408,7 +13427,7 @@ msgstr "Użyj go razem ze swoją nazwą, aby zalogować się do innej aplikacji. msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "Wideo" msgid "Video failed to process" msgstr "Przetwarzanie wideo nie powiodło się" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Kanał wideo" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Wideo od {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Gry" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Wideo jest wstrzymane" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Wideo jest odtwarzane" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Wideo nie zostało odnalezione." @@ -13653,7 +13672,7 @@ msgstr "Wideo nie zostało odnalezione." msgid "Video settings" msgstr "Ustawienia wideo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Wideo zostało przesłane" @@ -13662,17 +13681,17 @@ msgstr "Wideo zostało przesłane" msgid "Video: {0}" msgstr "Wideo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Filmiki" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Wyświetl zdjęcie profilowe {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Wyświetl profil {0}" @@ -13724,13 +13743,13 @@ msgstr "Więcej informacji można znaleźć na blogu" msgid "View debug entry" msgstr "Wyświetl dziennik systemowy" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Wyświetl szczegóły" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Wyświetl cały wątek" @@ -13761,7 +13780,7 @@ msgstr "Pokaż więcej" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Wyświetl usługę moderacji dostarczoną przez @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Wyświetl osoby, które lubią ten kanał" @@ -13831,7 +13850,7 @@ msgstr "Wyświetl swoje listy moderacji" msgid "View your muted accounts" msgstr "Wyświetl wyciszone konta" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Mamy problemy z siecią, spróbuj ponownie" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Przepraszamy, ale nie udało nam się wczytać tej listy. Jeśli problem msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Przepraszamy, ale w tej chwili nie mogliśmy wczytać wyciszonych przez ciebie słów. Spróbuj ponownie." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Przepraszamy! Wpis, który komentujesz, został usunięty." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Jak się masz?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ups!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Utwórz wpis" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Skomentuj" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Nie możesz przesyłać filmików." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Możesz teraz logować się przy użyciu nowego hasła." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Możesz to później zmienić w ustawieniach." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Limit przesłanych filmików został tymczasowo wyczerpany. Spróbuj ponownie później." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Nie utworzono jeszcze pakietu startowego!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Możesz dodać maksymalnie 3 kanały" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Aby wygenerować pakiet startowy, musisz obserwować co najmniej siedem innych osób." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Po utworzeniu konta zaobserwujesz sugerowane osoby i kanały!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Po utworzeniu konta zaobserwujesz sugerowane osoby!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "To już koniec! Znajdź więcej kont do obserwowania." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Dzienny limit przesyłania wideo został osiągnięty (zbyt dużo danych msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Dzienny limit przesyłania wideo został osiągnięty (zbyt dużo plików)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Nie mamy już więcej filmików do oglądania. Może to dobry czas na przerwę?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Twoje konto" @@ -14835,11 +14857,11 @@ msgstr "Twoje konto zostało zawieszone" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Twoje konto jest jeszcze zbyt krótko aktywne, aby przesyłać filmiki. Spróbuj ponownie później." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "Twój profil, wpisy, kanały i listy nie będą już widoczne dla innych na Bluesky. Możesz ponownie aktywować swoje konto w dowolnym momencie po zalogowaniu." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index b9359dd52d..9b5f162cda 100644 --- a/src/locale/locales/pt-BR/messages.po +++ b/src/locale/locales/pt-BR/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: pt\n" +"Language: pt_BR\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria \"{interestsDisplayName}\" (ativa)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(mensagem bloqueada oculta)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(possui conteúdo incorporado)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(mensagem excluída)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(link de convite para conversa inválido)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(mensagem enviada antes de sua entrada)" @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural, one {# rótulo aplicado na sua postagem} other {# rótulos aplicados na sua postagem}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural, one {# rótulo aplicado} other {# rótulos aplicados}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# curtida} other {# curtidas}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membro} other {# membros}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nova solicitação para entrar} other {# novas solici #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# pessoa reagiu} other {# pessoas reagiram}} – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Conta)" @@ -251,36 +252,13 @@ msgstr "{0} adicionado à conversa" msgid "{0} and {1} added to chat" msgstr "{0} e {1} adicionados à conversa" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} seguindo" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} está bloqueando você" @@ -324,14 +302,6 @@ msgstr "{0} saiu" msgid "{0} left the group" msgstr "{0} saiu do grupo" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagiu com {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} e {memberCount, plural, one {mais #} other {mais #}} adicionados à conversa" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} verificou você" msgid "{following} following" msgstr "{following} seguindo" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "Não foi possível adicionar {handle}" @@ -698,7 +660,7 @@ msgstr "Não foi possível adicionar {handle}" msgid "{handle} can't be messaged" msgstr "Não é possível enviar mensagens a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} não pode receber mensagens" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# item não lido} other {# itens não l msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contato encontrado} other {# contatos encontrados}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} se juntou ao Bluesky {timeAgoString} atrás" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} se juntou ao Bluesky através de um pacote inicial {timeAgoString} atrás" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {# caractere restante} other {# caracteres restantes}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} respondeu" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} respondeu a {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} respondeu você" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# solicitação} other {# solicitações}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ solicitações" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "há {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} é um verificador confiável" @@ -842,13 +795,13 @@ msgstr "Verificações de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -858,7 +811,7 @@ msgstr "+{computedTotal}" #: src/screens/StarterPack/Wizard/index.tsx:569 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}, <1>{1}, e {2, plural, one {# outro} other {outros #}} estão inclusos no seu pacote inicial" +msgstr "<0>{0}, <1>{1} e {2, plural, one {# outro} other {outros #}} foram incluídos em seu pacote inicial" #. placeholder {0}: getName(items[1] /* [0] is self, skip it */) #. placeholder {1}: getName(items[2]) @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citação} other {citações}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repostagem} other {repostagens}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, one {salvo} other {salvos}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, one {curtida} other {curtidas}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> adicionou você" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Entre<1> ou <2>crie uma conta<3> <4>para procurar notícias, esportes, política e tudo o mais que acontece no Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dias" msgid "7 days" msgstr "7 dias" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Uma coleção de feeds populares que você pode encontrar no Bluesky, incluindo Notícias, Booksky, Desenvolvimento de Jogos, Blacksky e Canetas Tinteiro" @@ -988,9 +941,11 @@ msgstr "Ocorreu um erro de rede. Verifique sua conexão com a internet" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Um novo código foi enviado" msgid "A new form of verification" msgstr "Uma nova forma de verificação" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Uma resposta a uma mensagem enviada antes de sua entrada" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Uma captura de tela do editor de postagens com um novo botão ao lado do botão de postagens que diz \"Rascunhos\", com um efeito de fogo de artifício de arco-íris. Abaixo, o texto no editor diz \"Ei, você soube da novidade? O Bluesky possui rascunhos agora\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Um destinatário selecionado não é seguido pelo remetente." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Acesso solicitado! O dono do grupo irá revisar sua solicitação." msgid "Accessibility" msgstr "Acessibilidade" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Acessibilidade" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Conta silenciada pela lista" msgid "Account options" msgstr "Opções da conta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Conta removida do acesso rápido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Contas com um ponto de verificação azul ondulado <0><1/> podem verificar outras contas. Esses verificadores confiáveis são selecionados pelo Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Atividade de terceiros" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Adicionar texto alternativo (opcional)" msgid "Add another account" msgstr "Adicionar outra conta" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Adicionar outra postagem" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Adicionar outra postagem ao tópico" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Adicionar outro filtro de busca" @@ -1253,7 +1213,7 @@ msgstr "Adicionar rótulo de automação à conta" msgid "Add emoji reaction" msgstr "Adicionar reação de emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Adicionar filtro" @@ -1338,7 +1298,7 @@ msgstr "Adicione este feed aos seus feeds" msgid "Add to lists" msgstr "Adicionar às listas" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Adicionar às postagens salvas" @@ -1400,7 +1360,7 @@ msgstr "Adulto" msgid "Adult content" msgstr "Conteúdo adulto" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permite acesso a mensagens diretas" msgid "Already have a code?" msgstr "Já tem um código?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Já tem uma conta?" @@ -1614,7 +1574,7 @@ msgstr "Um e-mail foi enviado para {0}. Nele possui um código de confirmação msgid "An error has occurred" msgstr "Ocorreu um erro" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Ocorreu um erro" @@ -1631,7 +1591,7 @@ msgstr "Ocorreu um erro ao obter as contas sugeridas." msgid "An error occurred while fetching the feed." msgstr "Ocorreu um erro ao recuperar o feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ocorreu um erro ao gerar seu pacote inicial. Tentar novamente?" @@ -1640,11 +1600,11 @@ msgstr "Ocorreu um erro ao gerar seu pacote inicial. Tentar novamente?" msgid "An error occurred while hiding suggestion. {0}" msgstr "Ocorreu um erro ao ocultar a sugestão. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Ocorreu um erro ao carregar o vídeo. Tente novamente mais tarde." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Ocorreu um erro ao carregar o vídeo. Tente novamente." @@ -1684,7 +1644,7 @@ msgstr "Ocorreu um erro. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Uma ilustração retratando avatares de usuário fluindo de um livro de contatos para o aplicativo Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Uma ilustração de várias postagens do Bluesky junto dos ícones de repostar, curtir e comentar" @@ -1705,17 +1665,15 @@ msgstr "Um link de convite permite que pessoas entrem nesta conversa em grupo se msgid "An issue not included in these options" msgstr "Outro problema" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Ocorreu um problema ao criar a conversa em grupo. Por favor, tente novamente." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Ocorreu um problema ao iniciar a conversa. Por favor, tente novamente." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Ocorreu um problema ao tentar abrir a conversa" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Qualquer data" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Todos" @@ -1802,7 +1760,7 @@ msgstr "Qualquer um que me segue" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Qualquer pessoa que o tenha não poderá mais entrar ou solicitar entrada. Você sempre pode criar um novo." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1829,7 +1787,7 @@ msgstr "A senha do app deve ser única" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" -msgstr "" +msgstr "Senhas de app só podem conter letras, números, espaços, hífen e underline" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" @@ -1840,7 +1798,7 @@ msgstr "A senha do app deve conter no mínimo 4 caracteres" msgid "App passwords" msgstr "Senhas de aplicativo" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Senhas de Aplicativo" @@ -1858,7 +1816,7 @@ msgstr "Contestar rótulo \"{0}\"" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "Contestar rótulo" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1847,10 @@ msgstr "Recorrer desta decisão" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "Contestar este rótulo" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Aplicar Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arquivado desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Postagem arquivada" @@ -1980,7 +1938,7 @@ msgstr "Deseja mesmo remover isso de seus feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Tem certeza de que deseja cancelar sua solicitação para entrar em {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Tem certeza de que deseja descartar esta postagem?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Conta automatizada" @@ -2033,7 +1991,7 @@ msgstr "Automático" msgid "Automation label" msgstr "Rótulo de automação" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Rótulo de Automação" @@ -2050,12 +2008,16 @@ msgstr "Reproduzir vídeos e GIFs automaticamente" msgid "Available" msgstr "Disponível" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Para criar ou responder uma postagem, você deve primeiro verificar o seu email." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Para criar um pacote inicial, você precisa verificar seu email." @@ -2135,10 +2097,10 @@ msgstr "Para que possa receber notificações das postagens de {name}, você dev #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2122,28 @@ msgstr "Comece o processo de verificação de idade preenchendo os campos abaixo msgid "Beta Feature" msgstr "Recurso em Teste" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "Recursos em teste" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Recursos em teste podem ser instáveis. Algumas alterações podem exigir recarregar o aplicativo." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Recursos em teste podem ser instáveis. Algumas alterações podem exigir reiniciar o aplicativo." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "Data de nascimento" msgid "Birthday" msgstr "Aniversário" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contas bloqueadas" @@ -2282,7 +2250,7 @@ msgstr "Contas bloqueadas não podem te responder, mencionar ou interagir." 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 "Contas bloqueadas não podem responder aos seus tópicos, te mencionar, ou interagir com você. Você não verá seus conteúdos e eles não conseguirão ver os seus." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Bloquear o rotulador não impede que ele adicione rótulos a sua conta." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "O Bluesky não pode confirmar que a data mostrada é legítima." @@ -2330,7 +2299,7 @@ msgstr "O Bluesky é uma rede aberta onde você pode escolher seu fornecedor de msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "O Bluesky é uma rede aberta em que você pode escolher seu próprio provedor. Se você é novo aqui, recomendamos que continue usando a opção Bluesky Social padrão." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "O Bluesky é bem melhor com amigos!" @@ -2358,7 +2327,7 @@ msgstr "Termos de Serviço do Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "O Bluesky armazena seus contatos como dados codificados. Remover seus contatos irá excluir esses dados imediatamente." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "O Bluesky selecionará um grupo de contas recomendadas da sua rede." @@ -2425,24 +2394,25 @@ msgstr "Navegue por mais sugestões na página Explorar" msgid "Browse other feeds" msgstr "Navegar por mais feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Navegar por mais postagens sobre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Navegar por mais postagens marcadas com {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Buscar pacote inicial {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Navegar pelo assunto {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Navegar tópico {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Botão para voltar à linha do tempo inicial" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Por {0}" @@ -2473,9 +2443,9 @@ msgstr "por @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Por <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Ao criar uma conta você concorda com os <0>Termos de Serviço e a < msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ao criar uma conta você concorda com os <0>Termos de Serviço." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Por você" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Câmera" @@ -2534,7 +2504,7 @@ msgstr "Acesso à câmera necessário" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Acesso à câmera necessário" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,13 +2555,13 @@ msgstr "Cancelar reativação e desconectar" msgid "Cancel reply" msgstr "Cancelar resposta" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelar pesquisa" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 msgid "Cancels signing in so you can check your username" -msgstr "" +msgstr "Cancela o login para poder verificar seu nome de usuário" #: src/components/PostControls/index.tsx:108 #: src/components/PostControls/index.tsx:138 @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Alterações no pacote inicial não serão aplicadas à lista após a criação. A lista será uma cópia independente." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Conversa silenciada" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Conversa não encontrada." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Opções de conversa" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Donos de conversas não podem sair da conversa em grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "O destinatário da conversa não é seguido pelo remetente." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Caixa de entrada de pedidos de conversa" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Pedidos de conversa" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Configurações de conversa" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Conversa dessilenciada" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Conversas" @@ -2810,7 +2781,7 @@ msgstr "Acesse <0>{currentEmail} e procure um email com o código de confirm #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Volte mais tarde!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "Selecionar método de verificação de domínio" msgid "Choose Feeds" msgstr "Escolher feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Escolha para mim" @@ -2854,7 +2825,7 @@ msgstr "Escolher pessoas" msgid "Choose post languages" msgstr "Escolher idiomas da postagem" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Selecionar esta cor como sua foto de perfil" @@ -2879,7 +2850,7 @@ msgstr "Escolha sua própria linha do tempo! Feeds feitos pela comunidade ajudam msgid "Choose your password" msgstr "Escolha sua senha" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Seu nome de usuário" @@ -2966,7 +2937,7 @@ msgstr "Clique aqui para ver o link de convite para esta conversa em grupo" msgid "Click to open tag menu for {0}" msgstr "Clique para abrir o menu de tag para {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clique para tentar enviar novamente a mensagem" @@ -3003,7 +2974,7 @@ msgstr "Clique para tentar enviar novamente a mensagem" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Clique para tentar enviar novamente a mensagem" msgid "Close" msgstr "Fechar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Fechar janela ativa" @@ -3047,7 +3018,7 @@ msgstr "Fechar banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Fechar visualizador de imagens" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Fechar menu" @@ -3090,7 +3061,7 @@ msgstr "Fechar o banner de solicitações recebidas" msgid "Close this dialog" msgstr "Fechar esta janela" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Fechar janela de boas-vindas" @@ -3098,7 +3069,7 @@ msgstr "Fechar janela de boas-vindas" msgid "Closes password update alert" msgstr "Fecha o alerta de alteração de senha" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Fecha a janela de nova postagem e descarta o rascunho" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Cor" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Esquema de cor" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Quadrinhos" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -3141,7 +3112,7 @@ msgstr "Diretrizes da Comunidade" msgid "Complete onboarding and start using your account" msgstr "Complete e comece a utilizar sua conta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Complete o captcha" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Escrever nova postagem" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Escreva postagens de até {0, plural, other {# caracteres}}" @@ -3160,11 +3131,11 @@ msgstr "Escreva postagens de até {0, plural, other {# caracteres}}" msgid "Compose reply" msgstr "Escrever resposta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Comprimindo GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimindo vídeo..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Contatar nossa equipe de apoio" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Entrar em contato com o suporte" @@ -3253,7 +3224,7 @@ msgstr "Conteúdo e mídia" msgid "Content and media" msgstr "Conteúdo e mídia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Conteúdo e mídia" @@ -3265,10 +3236,6 @@ msgstr "Conteúdo bloqueado" msgid "Content filters" msgstr "Filtros de conteúdo" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Conteúdo da rede que acreditamos que talvez você curta." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Idiomas do conteúdo" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Conteúdo promovendo ou representando auto-mutilação" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Aviso de conteúdo" msgid "Content warnings" msgstr "Avisos de conteúdo" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fundo do menu, clique para fechá-lo." @@ -3302,7 +3269,7 @@ msgstr "Fundo do menu, clique para fechá-lo." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3315,7 +3282,7 @@ msgstr "Continuar como {0} (já conectado)" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 msgid "Continue signing in" -msgstr "" +msgstr "Continuar registrando" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Continuar tópico..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Prosseguir para o nome do grupo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Conversa não encontrada." msgid "Copied build version to clipboard" msgstr "Número de versão do app copiada" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Link copiado para área de transferência" @@ -3376,7 +3343,7 @@ msgstr "Link copiado para área de transferência" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copiar senha do app" msgid "Copy at:// URI" msgstr "Copiar URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiar DID do autor" @@ -3449,10 +3416,10 @@ msgstr "Copiar link" msgid "Copy link to list" msgstr "Copiar link da lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar link da postagem" @@ -3470,8 +3437,8 @@ msgstr "Copiar link para o pacote inicial" msgid "Copy message text" msgstr "Copiar texto da mensagem" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiar URI at:// da postagem" @@ -3490,7 +3457,7 @@ msgstr "Copiar valor do registro TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de direitos autorais" @@ -3540,11 +3507,11 @@ msgstr "Não foi possível seguir todas as correspondências. {0}" msgid "Could not leave chat" msgstr "Não foi possível sair desta conversa" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Não foi possível sair da conversa." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Não foi possível carregar o feed" @@ -3562,7 +3529,7 @@ msgstr "Não foi possível carregar o perfil" msgid "Could not mute chat" msgstr "Não foi possível silenciar esta conversa" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Não foi possível remover o membro." @@ -3606,8 +3573,8 @@ msgstr "vacas porcos" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Criar" @@ -3624,26 +3591,26 @@ msgstr "Criar uma lista a partir deste pacote inicial" msgid "Create a QR code for a starter pack" msgstr "Criar um QR code para o pacote inicial" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Criar um pacote inicial" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Criar um pacote inicial" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crie um pacote inicial para mim" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Criar conta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Criar uma conta" @@ -3666,15 +3633,15 @@ msgstr "Criar uma conta" msgid "Create an account without using this starter pack" msgstr "Criar uma conta sem usar este pacote inicial" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Adicionar uma foto de perfil" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Criar outro" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Criar conversa em grupo" @@ -3741,9 +3708,9 @@ msgstr "Cultura" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Recursos em teste atuais" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Conversa atual" @@ -3770,8 +3737,8 @@ msgstr "Substâncias perigosas ou abuso de drogas" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Escuro" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuro" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema escuro" @@ -3814,7 +3781,7 @@ msgstr "Recusar esta sugestão de idioma" msgid "Deepfake adult content" msgstr "Conteúdo adulto com deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Padrão" @@ -3894,7 +3861,7 @@ msgstr "Excluir minha conta" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Excluir postagem" @@ -3988,7 +3955,7 @@ msgstr "Ajuste quem pode interagir com esta postagem" msgid "Dialog: Set search filters" msgstr "Diálogo: Definir filtros de busca" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Menos escuro" @@ -4002,7 +3969,7 @@ msgstr "Desativar" msgid "Disable 2FA" msgstr "Desabilitar 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Desativar legendas" @@ -4045,9 +4012,9 @@ msgstr "Desativado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar alterações?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Descartar rascunho?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Descartar postagem?" @@ -4079,6 +4046,10 @@ msgstr "Desconectar Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Impedir que apps exibam minha conta para usuários não registrados" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Impedir que apps exibam minha conta para usuários não registrados" msgid "Discover new custom feeds" msgstr "Descobrir novos feeds personalizados" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Descobrir novos feeds" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descobrir novos feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Dispensar" @@ -4103,19 +4070,19 @@ msgstr "Dispensar" msgid "Dismiss banner" msgstr "Dispensar banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Dispensar erro" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Ignorar guia de primeiros passos" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Dispensar interesses" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Dispensar banner de evento ao vivo" @@ -4142,7 +4109,7 @@ msgstr "Exibir ícones maiores de texto alternativo" msgid "Display name" msgstr "Nome de exibição" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Largue os trolls e o clickbait. Encontre pessoas reais e conversas que importam para você." @@ -4205,8 +4172,8 @@ msgstr "Não se preocupe! Todas as mensagens e configurações existentes estão #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Não se preocupe! Todas as mensagens e configurações existentes estão msgid "Done" msgstr "Concluído" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Toque duas vezes ou pressione longamente a mensagem para adicionar uma reação" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Toque duas vezes para fechar diálogo" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Toque duas vezes para curtir" @@ -4328,6 +4295,7 @@ msgstr "Transtornos alimentares" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Editar imagem" msgid "Edit interaction settings" msgstr "Editar opções de interação" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Editar interesses" @@ -4397,7 +4365,7 @@ msgstr "Editar status ao vivo" msgid "Edit moderation list" msgstr "Editar lista de moderação" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar meus feeds" @@ -4406,6 +4374,11 @@ msgstr "Editar meus feeds" msgid "Edit name" msgstr "Editar nome" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Pessoas" @@ -4444,7 +4417,7 @@ msgstr "Editar lista de usuários" msgid "Edit who can reply" msgstr "Editar quem pode responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Editar pacote inicial" @@ -4500,8 +4473,8 @@ msgstr "Código HTML para incorporação" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incorporar postagem" @@ -4509,7 +4482,7 @@ msgstr "Incorporar postagem" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorpore esta postagem no seu site. É só copiar o trecho seguinte e colar no código HTML do seu site." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reprodutor interno de vídeo" @@ -4531,9 +4504,9 @@ msgstr "Habilitar conteúdo adulto" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Ativar recursos em teste" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Ativar legendas" @@ -4550,12 +4523,13 @@ msgstr "Ativar mídia externa" msgid "Enable media players for" msgstr "Ativar reprodutores de mídia para" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Ative as notificações de uma conta ao visitar seu perfil e pressionar no <0>ícone de sino <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Ativar notificações no dispositivo" @@ -4581,7 +4555,7 @@ msgstr "Ativar vídeos em alta no feed Descobrir" msgid "Enabled" msgstr "Ativado" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fim do feed" @@ -4608,7 +4582,7 @@ msgstr "Digite uma palavra ou tag" msgid "Enter code" msgstr "Inserir código" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Entrar em tela cheia" @@ -4650,11 +4624,11 @@ msgstr "Insira seu nome de usuário e senha" msgid "Enters full screen" msgstr "Entra em tela cheia" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Entretenimento" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erro" @@ -4684,7 +4658,7 @@ msgstr "Não foi possível salvar o arquivo" msgid "Error receiving captcha response." msgstr "Não foi possível processar o captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Erro: {error}" @@ -4696,8 +4670,8 @@ msgstr "Todos podem responder" msgid "Everybody can reply to this post." msgstr "Todos podem responder esta postagem." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Todos" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Demais itens" @@ -4738,7 +4712,7 @@ msgstr "Excluir usuário que você segue" msgid "Excludes users you follow" msgstr "Exclui usuários que você segue" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Sair da tela cheia" @@ -4755,11 +4729,11 @@ msgstr "Expandir lista de usuário" msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou esconder a postagem que você está respondendo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expandir texto da postagem" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Expande ou esconde o texto da postagem" @@ -4802,15 +4776,15 @@ msgstr "Mídia explícita ou pertubadora" msgid "Explicit sexual images." msgstr "Imagens sexualmente explícitas." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Explorar o aplicativo" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferências de Mídia Externa" @@ -4886,7 +4860,7 @@ msgstr "Não foi possível alterar o nome de usuário. Por favor tente novamente #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Falha ao copiar link" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Falha ao sair da conversa em grupo" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Falha ao carregar conversas" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Não foi possível carregar os feeds" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Falha ao carregar preferências de feeds" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Falha ao carregar configurações de notificação." @@ -5012,14 +4987,14 @@ msgstr "Falha ao carregar preferências." msgid "Failed to load profiles" msgstr "Falha ao carregar perfis" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Falha ao carregar feeds sugeridos" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Falha ao carregar sugestões a seguir" @@ -5027,12 +5002,12 @@ msgstr "Falha ao carregar sugestões a seguir" msgid "Failed to lock group chat" msgstr "Falha ao trancar conversa em grupo" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Falhou ao marcar todas as conversas como lidas" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Falha ao cancelar sua solicitação. Por favor, tente novamente." msgid "Failed to resolve location. Please try again." msgstr "Falha ao determinar localização. Por favor, tente novamente." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Não foi possível salvar o rascunho" @@ -5191,7 +5166,7 @@ msgstr "Conta falsa ou bot" msgid "False information about elections" msgstr "Informações falsas sobre eleições" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "Criador do feed" msgid "Feed identifier" msgstr "Identificador do feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu do feed" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Comentários enviados para o operador do feed" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds atualizados!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds que talvez você goste." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Buscar atualização" @@ -5273,11 +5244,11 @@ msgstr "Buscar atualização" msgid "File saved successfully!" msgstr "Arquivo salvo com sucesso!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Filtrar por autor" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrar por autor (atual: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Filtrar esta busca por {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtre quem pode optar por receber notificações da sua atividade" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtre de quem você receberá notificações" @@ -5352,8 +5323,8 @@ msgstr "Encontre contas para seguir" msgid "Find and invite friends" msgstr "Encontrar e convidar amigos" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Encontrar Contatos" @@ -5387,7 +5358,7 @@ msgstr "Encontrar seus amigos" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Encontre seus amigos no Bluesky verificando o seu número de telefone e combinando com os seus contatos. Nós protegemos suas informações e você controla o que acontece a seguir. <0>Saiba mais" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Encontre a sua turma" @@ -5429,7 +5400,7 @@ msgstr "Focar o campo de busca" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Seguir {0}" msgid "Follow {displayName}" msgstr "Seguir {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Seguir {handle}" @@ -5453,11 +5424,11 @@ msgstr "Seguir {handle}" msgid "Follow 10 accounts" msgstr "Seguir 10 contas" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Siga 10 pessoas para começar" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Seguir 7 contas" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Seguidores podem entrar" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que você conhece" @@ -5544,7 +5515,7 @@ msgstr "Seguidores que você conhece" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Seguindo {0}" msgid "Following {displayName}" msgstr "Seguindo {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Seguindo {handle}" @@ -5578,21 +5549,21 @@ msgstr "Seguindo {handle}" msgid "Following feed preferences" msgstr "Preferências do feed principal" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferências do feed principal" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Segue você" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fonte" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tamanho da fonte" @@ -5612,13 +5583,13 @@ msgstr "Por motivos de segurança, precisamos enviar um código de confirmação msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por motivos de segurança, você não poderá ver esta tela novamente. Se você perder esta senha de aplicativo, precisará criar uma nova." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Para a melhor experiência, nós recomendamos usar a fonte padrão." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Para Você" @@ -5628,7 +5599,7 @@ msgstr "Para Você" msgid "Forever" msgstr "Para sempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Esqueça o ruído" @@ -5647,11 +5618,13 @@ msgstr "Esqueceu a senha?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Quatro balões de mensagem representando uma conversa em grupo. Primeira mensagem: \"Você soube a novidade? O Bluesky agora tem conversas em grupo!\" Segunda mensagem: \"nossa, sem chance\" Terceira mensagem: \"Uau, 50 pessoas em uma única conversa!\" Quarta mensagem: \"Você também pode enviar links de convite!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Libere o seu feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5647,7 @@ msgstr "Por <0/>" msgid "From these people" msgstr "Dessas pessoas" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Gere um pacote inicial" @@ -5712,45 +5685,45 @@ msgstr "Germ DM reconectado" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features we’re testing." -msgstr "" +msgstr "Obtenha acesso antecipado a recursos experimentais que estamos testando." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obter ajuda" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Receba notificações sobre adesões a pacotes iniciais, verificações e outras atividades." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Seja notificado quando pessoas começam a te seguir." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Seja notificado quando pessoas curtem suas postagens." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Receba notificações quando pessoas curtirem suas repostagens." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Seja notificado quando pessoas te mencionarem." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Seja notificado quando pessoas citarem suas postagens." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Seja notificado quando pessoas responderem suas postagens." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Seja notificado quando pessoas repostam suas postagens." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Receba notificações quando pessoas repostarem suas repostagens." @@ -5762,15 +5735,15 @@ msgstr "Receba notificações quando as pessoas enviarem solicitações de conve msgid "Get notifications when people send you messages." msgstr "Receba notificações quando as pessoas enviarem mensagens para você." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Receba notificações quando houver atividade em postagens que você está acompanhando." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Seja notificado sobre novas postagens" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Seja notificado de novas postagens de {name}" @@ -5799,11 +5772,11 @@ msgstr "Vamos começar" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF enviado" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Dê uma cara nova pro seu perfil" @@ -5813,20 +5786,20 @@ msgstr "Glorificação da violência" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5849,9 @@ msgid "Go live for" msgstr "Entrar ao vivo por" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "Ir para o perfil de {0}" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nome da conversa em grupo atualizado" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Configurações da conversa em grupo" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Conversas em grupo podem ter no máximo {0, plural, other {# pessoas}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "O grupo está bloqueado" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nome do grupo" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "O nome do grupo é muito longo. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {O número máximo de caracteres é #.}}" @@ -6077,7 +6051,7 @@ msgstr "Atividades nocivas ou de alto risco" msgid "Harming or endangering minors" msgstr "Prejudicar ou colocar menores em perigo" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Tem um código? <0>Clique aqui." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Sua localização está errada? <0>Toque aqui para atualizar sua localização com GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Precisa de ajuda?" @@ -6114,7 +6088,7 @@ msgstr "Mantido pelo Bluesky por 7 dias para evitar abusos, e depois excluído" msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 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." @@ -6140,7 +6114,7 @@ msgstr "Olá!" msgid "Hidden" msgstr "Oculto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Oculto por suas opções de moderação." @@ -6148,9 +6122,9 @@ msgstr "Oculto por suas opções de moderação." msgid "Hidden list" msgstr "Lista oculta" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Lista oculta" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Ocultar" @@ -6198,7 +6172,7 @@ msgstr "Ocultar resposta para todos" msgid "Hide reply for me" msgstr "Ocultar resposta para mim" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ocultar este cartão" @@ -6218,12 +6192,12 @@ msgstr "Ocultar esta resposta?" msgid "Hide translation" msgstr "Ocultar tradução" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Ocultar assuntos em alta" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Ocultar assuntos em alta?" @@ -6240,7 +6214,7 @@ msgstr "Ocultar lista de usuários" msgid "Hide verification badges" msgstr "Ocultar insígnias de verificação" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Oculta o conteúdo" @@ -6293,8 +6267,8 @@ msgstr "Hmmmm, não foi possível carregar este serviço de moderação." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espere! Estamos gradualmente dando acesso ao vídeo, e você ainda está esperando na fila. Volte em breve!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Provedor de hospedagem: {0}" msgid "Hosting provider: Bluesky" msgstr "Provedor de hospedagem: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Em alta" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Como funciona:" @@ -6409,6 +6379,7 @@ msgstr "Se você atualizar seu endereço de email, o 2FA via email será desativ msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se você quiser alterar sua senha, enviaremos um código para verificar sua identidade." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Se você deseja restringir quem pode receber notificações da atividade da sua conta, você pode alterar isto em <0>Configurações → Privacidade e Segurança." @@ -6548,7 +6519,7 @@ msgstr "No app, no dispositivo, todos" msgid "In-app, push, people you follow" msgstr "No app, no dispositivo, pessoas que você segue" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Caixa de entrada vazia" @@ -6560,6 +6531,7 @@ msgstr "Caixa de entrada vazia!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "É só você por enquanto! Adicione mais pessoas ao seu pacote inicial pesquisando acima." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID da requisição: {0}" @@ -6816,8 +6788,8 @@ msgstr "Participar da conversa" msgid "Journalism" msgstr "Jornalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continuar editando" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Página web do KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Rotulado por {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Rotulado pelo autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Rótulos" @@ -6850,9 +6822,9 @@ msgstr "Rótulos adicionados" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "Rótulos aplicados nesta postagem" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Rótulos são identificações aplicadas sobre perfis e conteúdos. Eles são utilizados para esconder, avisar e categorizar o conteúdo da rede." @@ -6864,7 +6836,7 @@ msgstr "Rótulos sobre sua conta" msgid "Language" msgstr "Idioma" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Configurações de Idiomas" @@ -6874,7 +6846,7 @@ msgstr "Configurações de Idiomas" msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Maior" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Iniciado pela última vez agora mesmo" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Mais recentes" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Saiba mais (em inglês)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Saiba Mais" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Saiba mais sobre <0>como usar a busca avançada." @@ -6937,8 +6909,8 @@ msgstr "Saiba mais sobre a importação de contatos" msgid "Learn more about self hosting your PDS." msgstr "Saiba mais sobre a auto-hospedagem do seu Servidor de Dados Pessoais." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Saber mais sobre o aviso colocado no conteúdo" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Saiba mais sobre essas mudanças e como compartilhar suas ideias conosco lendo nossa postagem no blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Saiba mais sobre este aviso" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Saiba mais nas suas <0>configurações da conta." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Saiba mais." @@ -6993,8 +6965,8 @@ msgstr "Sair" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Saindo do Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Sair desta conversa irá bloqueá-la permanentemente e você não poderá entrar novamente." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Você saiu da conversa em grupo." @@ -7042,7 +7014,7 @@ msgstr "Você saiu da conversa em grupo." msgid "left to go." msgstr "na sua frente." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Deixe-me escolher" @@ -7057,7 +7029,7 @@ msgstr "Vamos lá!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Claro" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Curtir" @@ -7076,7 +7048,7 @@ msgstr "Curtir" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Curtidas ({0, plural, one {# curtida} other {# curtidas}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Curtir 10 postagens" @@ -7085,7 +7057,7 @@ msgstr "Curtir 10 postagens" msgid "Like 10 posts to train the Discover feed" msgstr "Curta 10 postagens para treinar o feed de Descobertas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Curtir este feed" @@ -7093,8 +7065,8 @@ msgstr "Curtir este feed" msgid "Like this labeler" msgstr "Curtir este rotulador" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Curtido por" @@ -7111,27 +7083,45 @@ msgstr "Curtido Por" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Curtido por {0, plural, one {# usuário} other {# usuários}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Curtido por {likeCount, plural, one {# usuário} other {# usuários}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Curtidas" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Curtidas das suas repostagens" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Curtidas nesta postagem" @@ -7144,7 +7134,7 @@ msgstr "Linear" msgid "Link copied to clipboard" msgstr "Link copiado para a área de transferência" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista dessilenciada" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "AO VIVO" msgid "Live event happening now: {0}" msgstr "Evento ao vivo acontecendo agora: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Evento ao vivo ocultado" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Ocultação de evento ao vivo removida" @@ -7279,12 +7269,12 @@ msgstr "O recurso Ao Vivo está em fase de testes" msgid "Live link" msgstr "Link ao vivo" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Carregar mais" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Carregar mais sugestões de feeds" @@ -7292,8 +7282,8 @@ msgstr "Carregar mais sugestões de feeds" msgid "Load new notifications" msgstr "Carregar novas notificações" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Trancar esta conversa em grupo" msgid "Locked" msgstr "Trancado" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Registros" @@ -7387,7 +7377,7 @@ msgstr "GIFs amorosos" msgid "Make adjustments to email settings for your account" msgstr "Faça ajustes nas configurações de email para sua conta" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Faça um para mim" @@ -7418,15 +7408,15 @@ msgstr "Manual" msgid "Mark all as read" msgstr "Marcar todas como lidas" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marcar todas as conversas como lidas" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,23 +7431,27 @@ msgstr "Marcar como lida" msgid "Marked all as read" msgstr "Todas foram marcadas como lidas" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Todas as conversas foram marcadas como lidas" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" -msgstr "" +msgstr "Todos os pedidos foram marcados como lidos" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Talvez mais tarde" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Mídia" @@ -7475,7 +7469,7 @@ msgstr "Mídia armazenada em outro dispositivo" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Mídia que pode ser perturbadora ou inapropriada para algumas pessoas." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membro removido da conversa em grupo." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "usuários mencionados" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menções" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mensagem excluída" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Falha ao enviar mensagem." @@ -7563,15 +7557,15 @@ msgstr "A mensagem é muito longa ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Opções de mensagem" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensagens" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Mensagens dessa pessoa são ocultas enquanto ela está bloqueando você." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Mensagens dessa pessoa são ocultas enquanto ela está bloqueando você." @@ -7592,7 +7586,7 @@ msgstr "Enganoso" msgid "Missing media" msgstr "Mídia ausente" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderação" @@ -7636,7 +7630,7 @@ msgstr "Lista de moderação atualizada" msgid "Moderation lists" msgstr "Listas de moderação" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de Moderação" @@ -7645,7 +7639,7 @@ msgstr "Listas de Moderação" msgid "moderation settings" msgstr "configurações de Moderação" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderação" @@ -7786,7 +7780,7 @@ msgstr "Silenciado" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -7867,7 +7861,6 @@ msgstr "Precisa relatar uma violação de direitos autorais, uma solicitação l msgid "Nevermind, create a handle for me" msgstr "Deixa pra lá, crie um nome de usuário pra mim" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Novo" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {Nova postagem} other {Novas postagens}} de {fi #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nova conversa" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Novo Recurso" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Novos seguidores" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nova conversa em grupo" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nova conversa em grupo" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nova conversa em grupo com:" @@ -7966,13 +7959,13 @@ msgstr "Nova lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Novas solicitações de mensagem" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Novas mensagens" @@ -7982,12 +7975,12 @@ msgstr "Novas mensagens" msgid "New password" msgstr "Nova senha" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Postar" @@ -8011,7 +8004,7 @@ msgstr "Novo pacote inicial" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "Chegando agora no Bluesky? <0>Cadastre-se" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Respostas mais recentes primeiro" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Notícias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Próxima imagem" msgid "Night" msgstr "Noite" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Sem anúncios, sem rastreamento invasivo, sem armadilhas de engajamento. O Bluesky respeita seu tempo e atenção." @@ -8067,7 +8060,7 @@ msgstr "Sem senhas de aplicativo no momento" #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Nenhum recurso em teste no momento." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8091,7 @@ msgstr "Sem expiração definida" msgid "No feeds found. Try searching for something else." msgstr "Nenhum feed encontrado. Tente pesquisar por outra coisa." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Ainda não há seguidores" @@ -8118,7 +8111,7 @@ msgstr "Sem imagem" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Sem curtidas ainda" @@ -8135,7 +8128,7 @@ msgstr "Sem listas" msgid "No longer following {0}" msgstr "Você não está mais seguindo {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Ainda não há mídia" @@ -8143,7 +8136,7 @@ msgstr "Ainda não há mídia" msgid "No messages yet" msgstr "Nenhuma mensagem ainda" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Chega de algoritmos de rolagem eterna cheios de lixo. Encontre feeds que trabalham para você, não contra você." @@ -8184,12 +8177,12 @@ msgstr "Ninguém pode enviar mensagens" msgid "No posts here" msgstr "Não há postagens aqui" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Ainda não há postagens" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Sem citações ainda" @@ -8202,7 +8195,7 @@ msgstr "Ainda não há GIFs recentes. Escolha um para vê-lo aqui." msgid "No replies" msgstr "Sem respostas" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Ainda não há respostas" @@ -8217,13 +8210,13 @@ msgstr "Nenhum resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Nenhum resultados" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Sem resultados para \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Nenhum resultado encontrado" msgid "No results found for \"{query}\"" msgstr "Nenhum resultado encontrado para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." -msgstr "" +msgstr "Nenhum resultado encontrado para “<0>{query}” com os filtros de busca avançada." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Nenhum resultado encontrado para \"<0>{query}”." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Nenhum resultado encontrado para sua busca com filtros de busca avançada." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Sem resultados." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Ainda não há Pacotes Iniciais" @@ -8265,7 +8258,7 @@ msgstr "Não, obrigado" msgid "No translation received from your device." msgstr "Nenhuma tradução recebida do seu dispositivo." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Ainda não há postagens de vídeo" @@ -8278,7 +8271,7 @@ msgstr "Ninguém" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ninguém curtiu isso ainda. Você pode se tornar o primeiro!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ninguém citou isso ainda. Você pode se tornar o primeiro!" @@ -8298,6 +8291,10 @@ msgstr "Imagens íntimas não consensuais" msgid "Non-sexual Nudity" msgstr "Nudez não-erótica" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Indisponível nesta plataforma." msgid "Not followed by anyone you’re following" msgstr "Não é seguido por ninguém que você segue" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Não encontrado" @@ -8333,7 +8330,7 @@ msgstr "Nota sobre compartilhamento" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: o Bluesky é uma rede aberta e pública. Esta configuração limita somente a visibilidade do seu conteúdo no site e aplicativo do Bluesky, e outros aplicativos podem não respeitar esta configuração. Seu conteúdo ainda poderá ser exibido para usuários não autenticados por outros aplicativos e sites." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: Esta postagem só é visível para usuários conectados." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Nada foi salvo ainda" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Configurações de notificação" @@ -8353,11 +8350,12 @@ msgstr "Configurações de notificação" msgid "Notification sounds" msgstr "Sons de notificação" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Ah, não!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Ok" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Resetar tutoriais" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Um dos destinatários selecionados não permite chats em grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Um dos destinatários selecionados bloqueou você e não pode ser enviado." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Um ou mais GIFs estão sem texto alternativo." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens estão sem texto alternativo." @@ -8454,11 +8454,11 @@ msgstr "Um ou mais arquivos selecionados não são suportados." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Um ou mais arquivos selecionados são muito grandes. O tamanho máximo é {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Uma ou mais postagens são muito longas para salvar como um rascunho. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {O número máximo de caracteres é # caractere.} other {O número máximo de caracteres é # caracteres.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Um ou mais vídeos estão sem texto alternativo." @@ -8471,7 +8471,7 @@ msgstr "Apenas {0} pode responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Apenas {0} de {1} {2, plural, one {imagem adicionada} other {imagens adicionadas}}; o limite é {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "Apenas postagens com vídeos" msgid "Only replies" msgstr "Apenas respostas" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Somente arquivos WebVTT (.vtt) são suportados" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ops, este perfil não existe. Tente escanear outro." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ops!" @@ -8544,7 +8544,7 @@ msgstr "Ops!" msgid "Open advanced search options" msgstr "Abrir opções de busca avançada" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Abrir criador de avatar" @@ -8570,21 +8570,22 @@ msgstr "Abrir opções de conversa" msgid "Open draft" msgstr "Abrir rascunho" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Abrir menu" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Abrir seletor de emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Abri tela de informações do feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Abrir opções do feed" @@ -8627,7 +8628,7 @@ msgstr "Abrir página de debug da moderação" msgid "Open muted words and tags settings" msgstr "Abrir opções de palavras/tags silenciadas" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Abrir pacote" @@ -8681,7 +8682,7 @@ msgstr "Abre uma janela para adicionar um aviso de conteúdo para a sua postagem #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "Abre uma janela para alterar o provedor de hospedagem em que você registrará" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8700,7 @@ msgstr "Abre detalhes adicionais para um registro de depuração" msgid "Opens alt text dialog" msgstr "Abrir janela de texto alternativo" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Abre a câmera do dispositivo" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Abre o fluxo de criação de conta do Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Abre a tela para entrar com uma conta Bluesky existente" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Senha atualizada!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausar" @@ -8925,12 +8926,12 @@ msgstr "Pausar" msgid "Pause GIF" msgstr "Pausar GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar vídeo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Pessoas" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Pessoas que {ownerName} segue podem pedir para entrar" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Pessoas seguindo @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Pessoas que eu sigo" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Pessoas que eu sigo podem solicitar entrada" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Pessoas que você segue" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar feed" @@ -9034,7 +9035,7 @@ msgstr "Fixar feed" msgid "Pin to home" msgstr "Fixar na tela inicial" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixar na Tela Inicial" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Fixado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} fixado na Tela Inicial" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Fixado em seus feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Tocar" @@ -9076,8 +9077,8 @@ msgstr "Reproduzir {0}" msgid "Play GIF" msgstr "Reproduzir GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproduzir vídeo" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Escreva sua mensagem abaixo:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Política" @@ -9269,7 +9270,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Postar" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Postagem" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Postar uma foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Postar um vídeo" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Postar Tudo" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Postar mesmo assim" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Postagem bloqueada" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Postagem por @{0}" @@ -9340,7 +9341,7 @@ msgstr "Postagem Escondida por Você" msgid "Post interaction settings" msgstr "Configurações de interação de postagem" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Opções de interação em postagens" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Postagem fixada" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Postagem salva" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Postagem desafixada" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postagens" @@ -9398,6 +9396,10 @@ msgstr "As postagens podem ser silenciadas com base em seu texto, suas tags ou a msgid "Posts hidden" msgstr "Postagens ocultadas" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potencialmente enganoso" @@ -9449,20 +9451,21 @@ msgstr "Privacidade" msgid "Privacy and security" msgstr "Privacidade e segurança" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidade e Segurança" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Configurações de Privacidade e Segurança" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Política de Privacidade" msgid "Privacy violation of a minor" msgstr "Violação da privacidade de um menor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Processando GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Processando vídeo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listas públicas e compartilháveis de usuários para silenciar ou bloquear em massa." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicar postagem" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicar postagens" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicar respostas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicar resposta" @@ -9599,12 +9602,12 @@ msgstr "Citações desabilitadas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citações" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citações desta postagem" @@ -9647,7 +9650,7 @@ msgstr "Reative sua conta" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Ler {0, plural, one {mais # resposta} other {mais # respostas}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Leia sobre como usar filtros de busca avançada" @@ -9657,11 +9660,11 @@ msgstr "Leia sobre como usar filtros de busca avançada" msgid "Read blog post" msgstr "Ler postagem do blog (em inglês)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Ver menos" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Ver mais" @@ -9687,11 +9690,11 @@ msgstr "Leia a Política de Privacidade do Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leia os Termos de Serviço do Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Conversas reais." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Pessoas reais." @@ -9721,10 +9724,6 @@ msgstr "Pesquisas recentes" msgid "Recently used" msgstr "Usados recentemente" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomendado" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconectar" @@ -9748,7 +9747,7 @@ msgstr "Recusar pedido de conversa" msgid "Reject join request" msgstr "Recusar solicitação para entrar" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recarregar conversas" @@ -9766,7 +9765,7 @@ msgstr "Recarregar conversas" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Remover" @@ -9792,8 +9791,8 @@ msgstr "Remover {displayName}?" msgid "Remove {q}" msgstr "Remover {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Remover conta" @@ -9845,15 +9844,15 @@ msgstr "Remover filtro" msgid "Remove from chat" msgstr "Remover da conversa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Remover do acesso rápido?" @@ -9862,7 +9861,7 @@ msgstr "Remover do acesso rápido?" msgid "Remove from saved feeds" msgstr "Remover dos feeds salvos" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Remover das postagens salvas" @@ -9880,8 +9879,8 @@ msgstr "Remover imagem" msgid "Remove live status" msgstr "Remover status ao vivo" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Remover membro" @@ -9943,7 +9942,7 @@ msgstr "Removido da lista" msgid "Removed from saved feeds" msgstr "Removido dos feeds salvos" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Removido das postagens salvas" @@ -9952,7 +9951,7 @@ msgstr "Removido das postagens salvas" msgid "Removed from starter pack" msgstr "Removido do pacote inicial" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Respondeu a você" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Mensagem respondida de {senderName}, toque para rolar até ela" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "A mensagem respondida foi enviada antes de sua entrada" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Mensagem respondida, toque para rolar até ela" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respostas" @@ -10037,7 +10037,7 @@ msgstr "Respostas para esta postagem estão desativadas." msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Denunciar conversa" msgid "Report dialog" msgstr "Janela de denúncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Denunciar feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Repostado por você" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Repostagens" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Repostagens" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Repostagens das suas repostagens" @@ -10253,7 +10253,7 @@ msgstr "Solicitado" msgid "Requests" msgstr "Solicitações" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10266,7 +10266,7 @@ msgstr "Exigir texto alternativo antes de postar" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." -msgstr "Requer um código de e-mail para entrar em sua conta." +msgstr "Requer um código de email para entrar em sua conta." #: src/screens/Signup/StepInfo/index.tsx:207 msgid "Required for this provider" @@ -10358,10 +10358,10 @@ msgstr "Tenta a última ação, que deu erro" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Voltar para a tela inicial" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Voltar para página anterior" @@ -10446,27 +10446,27 @@ msgstr "Salvar data de nascimento" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salvar alterações" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Salvar alterações?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Salvar rascunho" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Salvar rascunho?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Salvar QR code" msgid "Save these options for next time" msgstr "Salvar estas opções para a próxima vez" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Salvar nos meus feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feeds Salvos" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Postagens Salvas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Adicionado aos seus feeds" @@ -10520,8 +10520,8 @@ msgstr "Adicionado aos seus feeds" msgid "Say hello!" msgstr "Diga olá!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Diga olá para alguém" @@ -10535,7 +10535,7 @@ msgstr "Escanear" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Escanear código QR" @@ -10543,15 +10543,15 @@ msgstr "Escanear código QR" msgid "Science" msgstr "Ciência" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Rolar à esquerda" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Rolar à direita" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Rolar até a mensagem respondida" @@ -10564,8 +10564,8 @@ msgstr "Ir para o topo" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Pesquisar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Pesquisar postagens de @{0}" @@ -10606,17 +10606,17 @@ msgstr "Buscar por “{searchText}”" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "Buscar por {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "Procure por feeds que você queira sugerir para outros." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Pesquisar por mais contas" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Pesquisar por mais feeds" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Pesquisar por GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "A pesquisa está indisponível quando desconectado" @@ -10661,7 +10661,7 @@ msgstr "Pesquisar por usuários" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 msgid "Search query" -msgstr "" +msgstr "Busca" #: src/screens/Profile/ProfileSearch.tsx:38 msgid "Search..." @@ -10709,6 +10709,7 @@ msgstr "Veja empregos na Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Ver mais" @@ -10716,8 +10717,12 @@ msgstr "Ver mais" msgid "See more suggested profiles" msgstr "Ver mais perfis sugeridos" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Ver contas sugeridas" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Controle deslizante de busca. Use os botões de seta para avançar e retroceder, e espaço para pausar/continuar" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Selecionar categoria \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Selecionar {0}" msgid "Select {langName}" msgstr "Selecionar {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecione uma cor" @@ -10764,11 +10769,11 @@ msgstr "Selecione uma conta" msgid "Select an app language" msgstr "Selecionar um idioma para o app" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecione um avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecione um emoji" @@ -10780,12 +10785,13 @@ msgstr "Selecionar opção" msgid "Select app language" msgstr "Selecionar idioma do app" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Selecione o arquivo de legenda (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Selecione o chat \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Selecionar GIF" msgid "Select GIF \"{0}\"" msgstr "Selecionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Selecionar membros do grupo" @@ -10864,7 +10870,7 @@ msgstr "Selecionar idioma principal" msgid "Select telephone code" msgstr "Selecionar código de telefone" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecione o emoji {emojiName} como avatar" @@ -10945,7 +10951,8 @@ msgstr "Enviar mensagem" msgid "Send post to {name}" msgstr "Enviar postagem para {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Enviar postagem para..." @@ -10963,12 +10970,12 @@ msgstr "Envie a mensagem do seu telefone" msgid "Send verification email" msgstr "Enviar e-mail de verificação" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Enviar por mensagem direta" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Defina seu provedor de hospedagem manualmente" msgid "Sets email for password reset" msgstr "Configura o e-mail para recuperação de senha" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Configurações" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Configurações para atividade de terceiros" @@ -11036,49 +11043,49 @@ msgstr "Configurações para atividade de terceiros" msgid "Settings for allowing others to be notified of your posts" msgstr "Configurações para permitir que outros sejam notificados das suas postagens" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Configurações para notificações de curtidas" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Configurações para notificações de menções" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Configurações para notificações de novo seguidor" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Configurações para as demais notificações" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Configurações para notificações de curtidas das suas repostagens" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Opções para notificações de novas solicitações de mensagem" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Opções para notificações de novas mensagens" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Configurações para notificações de repostagens das suas repostagens" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Configurações para notificações de citação" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Configurações para notificações de resposta" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Configurações para notificações de repostagem" @@ -11115,8 +11122,8 @@ msgstr "Compartilhar faixa etária" msgid "Share anyway" msgstr "Compartilhar mesmo assim" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Compartilhar DID do autor" @@ -11125,9 +11132,9 @@ msgstr "Compartilhar DID do autor" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Compartilhar comentário" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Compartilhar Link de diálogo" msgid "Share my profile" msgstr "Compartilhar meu perfil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Compartilhar URI at:// da postagem" @@ -11169,12 +11176,12 @@ msgstr "Compartilhar Perfil" msgid "Share QR code" msgstr "Compartilhar QR code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Compartilhar este feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Compartilhar esta busca" @@ -11186,8 +11193,8 @@ msgstr "Compartilhar este pacote inicial" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Compartilhe este pacote inicial e ajude as pessoas a se juntarem à sua comunidade no Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Compartilhe os seus contatos para encontrar amigos" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughts…" -msgstr "" +msgstr "Compartilhe seus pensamentos…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testador de Preferências Compartilhadas" @@ -11219,7 +11226,7 @@ msgstr "Compartilhar sua faixa etária revela somente a faixa associada à sua c msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Compartilhar sua faixa etária revela somente a faixa associada à sua conta do Google. – por exemplo, se você tiver pelo menos 18 anos. <0>Sua idade exata e aniversário nunca são compartilhadas, e estes dados nunca saem do dispositivo. Portanto, ele só permite acesso a este dispositivo. Alternativamente <1>você pode usar nosso parceiro confiável, KWS, para concluir sua verificação e habilitar acesso em todas as plataformas." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Mostrar" msgid "Show alt text" msgstr "Mostrar texto alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Mostrar mesmo assim" @@ -11274,9 +11281,9 @@ msgstr "Mostrar lista de qualquer maneira" msgid "Show lists of users to select from" msgstr "Mostrar listas de usuários para selecionar" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Mostrar Mais" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Ver mais" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Mostrar aviso e filtrar dos feeds" msgid "Show when you’re live" msgstr "Mostrar quando você estiver ao vivo" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Mostra informações sobre quando esta postagem foi criada" @@ -11341,15 +11348,15 @@ msgstr "Mostra informações sobre quando esta postagem foi criada" msgid "Shows other accounts you can switch to" msgstr "Exibe suas outras contas que você pode acessar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Exibe o conteúdo" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Exibe o conteúdo" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11434,9 +11441,9 @@ msgstr "Sair?" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "Cadastrar-se" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "É Necessário Fazer Login" @@ -11469,7 +11476,7 @@ msgstr "Pular" msgid "Skip contact sharing and continue to the app" msgstr "Pular compartilhamento de contatos e continuar para o app" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Pular publicações vazias?" @@ -11487,7 +11494,7 @@ msgstr "Pular para a próxima etapa" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Menor" @@ -11499,7 +11506,7 @@ msgstr "Adiar o lembrete" msgid "So many thoughts, you should post one" msgstr "Tantos pensamentos, você deveria postar um deles" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "A rede social que você controla." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Alguém saiu do grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Alguém reagiu com {0}" @@ -11554,7 +11561,7 @@ msgstr "Alguém reagiu com {0}" msgid "Someone reacted {0} to {target}" msgstr "Alguém reagiu com {0} a {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Alguém respondeu" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Algo deu errado, tente novamente" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Algo deu errado. Por favor, tente novamente mais tarde." msgid "Something went wrong. Please try again." msgstr "Algo deu errado. Por favor, tente novamente." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Algo de errado? Nos avise." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam ou outros comportamentos inautênticos ou enganosos" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Esportes" @@ -11668,7 +11675,7 @@ msgstr "Inicie uma conversa e ela aparecerá aqui." msgid "Start a group chat" msgstr "Iniciar uma conversa em grupo" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Começar uma nova conversa" @@ -11682,17 +11689,17 @@ msgstr "Comece a adicionar pessoas" msgid "Start adding people!" msgstr "Comece a adicionar pessoas!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Iniciar conversa" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Comece a conversar com {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacote Inicial" @@ -11715,12 +11722,16 @@ msgstr "Seu pacote inicial" msgid "Starter pack is invalid" msgstr "Pacote inicial é inválido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pacotes Iniciais" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Pacotes iniciais permitem que você compartilhe facilmente seus feeds e pessoas favoritas com seus amigos." @@ -11728,7 +11739,7 @@ msgstr "Pacotes iniciais permitem que você compartilhe facilmente seus feeds e msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Pacotes iniciais permitem que você compartilhe facilmente seus feeds e pessoas favoritas com seus amigos." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Pacotes Iniciais permitem que você compartilhe facilmente seus feeds e pessoas favoritas com seus amigos." @@ -11742,7 +11753,7 @@ msgstr "Página de status" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Etapa {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Armazenamento limpo, você precisa reiniciar o aplicativo agora." msgid "Stored as part of a secure code for matching with others" msgstr "Armazenado como parte de um código seguro para correspondência com outros" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "Enviar Recurso" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Enviar comentário" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Inscrever-se para {publicationTitle} em {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Inscreva-se em @{0} para utilizar estes rótulos:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Verificado com sucesso" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Sugestões" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Contas sugeridas" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Entardecer" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "O suporte para este recurso no seu país ainda não foi habilitado! Por favor, volte mais tarde." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Contas suspensas não podem participar de um chat em grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Contas suspensas não podem participar de um chat em grupo." @@ -11921,8 +11934,8 @@ msgstr "Alterar para {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Leve a conversa para o particular." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Toque abaixo para permitir o acesso à sua localização GPS. Usaremos esses dados para determinar com mais precisão o conteúdo e os recursos disponíveis em sua região." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Toque para mais detalhes" @@ -11976,7 +11989,7 @@ msgstr "Toque para fechar o menu de contexto" msgid "Tap to copy this invite link" msgstr "Toque para copiar este link de convite" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toque para dispensar" @@ -12003,7 +12016,7 @@ msgstr "Toque para remover sua reação {0}" msgid "Tap to request access to join this group chat" msgstr "Toque para solicitar acesso para entrar nesta conversa em grupo" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Toque para tentar novamente" @@ -12016,7 +12029,7 @@ msgstr "Toque para mostrar reações {0}" msgid "Tap to show all reactions" msgstr "Toque para mostrar todas as reações" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Toque para ver as reações" @@ -12032,7 +12045,7 @@ msgstr "Tarefa completa - seguir 10 pessoas!" msgid "Task complete - 10 likes!" msgstr "Tarefa concluída - 10 curtidas!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Ensine ao nosso algoritmo o que você curte" @@ -12060,7 +12073,7 @@ msgstr "Termos" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Obrigado por seu comentário! Ele foi enviado ao operador." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Obrigado pelo seu comentário!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Este pacote inicial não pôde ser encontrado." msgid "That username is already taken" msgstr "Este nome de usuário já está em uso" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Isso é tudo, pessoal!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Isso é tudo!" @@ -12171,7 +12184,7 @@ msgstr "Este feed foi substituído pelo Discover." #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "Os seguintes rótulos foram aplicados nesta postagem." #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "O servidor parece estar passando por instabilidade. Por favor tente nova msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "O pacote inicial que você está tentando visualizar é inválido. Você pode excluir este pacote inicial em vez disso." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "O assunto do menu de contexto" @@ -12238,7 +12251,7 @@ msgstr "O código de verificação que você forneceu é inválido. Certifique-s msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "O provedor de verificação não conseguiu enviar um código para o seu número de telefone. Por favor, verifique o seu número de telefone e tente novamente." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Houve um problema ao carregar GIFs. Verifique sua conexão e tente novam msgid "There was a problem with your internet connection, please try again" msgstr "Houve um problema com a sua conexão de internet, por favor tente novamente" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Houve um problema com a sua conexão de internet, por favor tente novame msgid "There was an issue contacting the server" msgstr "Tivemos um problema ao contatar o servidor deste feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Houve um problema ao comunicar com o servidor, por favor verifique sua conexão de internet e tente novamente." @@ -12283,8 +12296,8 @@ msgstr "Houve um problema ao comunicar com o servidor, por favor verifique sua c msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Tivemos um problema ao carregar notificações. Toque aqui para tentar de novo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Tivemos um problema ao carregar as postagens. Toque aqui para tentar de novo." @@ -12309,7 +12322,7 @@ msgstr "Houve um problema ao recuperar suas informações de serviço" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Houve um problema ao remover este feed. Por favor verifique sua conexão de internet e tente novamente." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Estas configurações só se aplicam ao feed principal (Following)." msgid "These URLs" msgstr "Estas URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Eles são donos desta conversa" @@ -12392,7 +12405,7 @@ msgstr "Eles são donos desta conversa" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Eles não poderão voltar a entrar a menos que você os convide novamente." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Este {screenDescription} foi reportado:" @@ -12408,7 +12421,7 @@ msgstr "Esta conta foi marcada como automatizada pelo seu proprietário." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Esta conta tem uma ou mais tentativas de verificação, mas não está verificada no momento." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta conta solicitou que os usuários fizessem login para visualizar seu perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Este feed está vazio! Talvez você precise seguir mais usuários ou configurar os idiomas filtrados." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Este feed está vazio." @@ -12554,7 +12567,7 @@ msgstr "Este grupo está trancado por uma ação de moderação sobre o dono" msgid "This handle is reserved. Please try a different one." msgstr "Este nome de usuário está reservado. Por favor tente um nome de usuário diferente." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Não foi possível usar essa imagem. Tente um formato diferente como .jpg ou .png." @@ -12594,9 +12607,9 @@ msgstr "Este rótulo foi aplicado por você." #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "Este rótulo foi aplicado para a conta inteira do usuário e aparecerá em todas as postagens." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este rotulador não declarou quais rótulos utiliza e pode não estar funcionando ainda." @@ -12621,13 +12634,13 @@ msgstr "Esta lista está vazia." msgid "This message is hidden" msgstr "Esta mensagem está oculta" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Esta mensagem está oculta porque este usuário está bloqueando você." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Esta mensagem está oculta porque você está bloqueando este usuário." @@ -12641,7 +12654,7 @@ msgstr "Esta pessoa está bloqueando você" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta postagem alega ter sido criada em <0>{0}, mas ela apareceu no Bluesky em <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Esta postagem alega ter sido criada em <0>{0}, mas ela apareceu no B msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Essa postagem possui uma configuração desconhecida de interações permitidas. O app talvez esteja desatualizado." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Esta postagem só é visível para usuários conectados." @@ -12661,7 +12674,7 @@ msgstr "Esta postagem foi excluída pelo autor" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta postagem será ocultada dos feeds e tópicos. Isso não pode ser desfeito." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "O autor desta postagem desabilitou as postagens de citação." @@ -12698,11 +12711,12 @@ msgstr "Isto deve demorar apenas alguns minutos." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Este usuário não possui um nome de exibição e por isso não pode ser verificado." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Este usuário não é seguido por ninguém ainda." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Este usuário bloqueou você e não pode receber mensagens." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Este usuário te bloqueou. Você não pode ver este conteúdo." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Este usuário desativou conversas e não pode receber mensagens." @@ -12733,11 +12748,11 @@ msgstr "Este usuário está incluído na lista <0>{0}, que você silenciou." msgid "This user is new here. Press for more info about when they joined." msgstr "Este usuário é novo aqui. Toque para mais informações sobre quando ele entrou." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Este usuário não segue ninguém ainda." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Este vídeo não pode ser reproduzido no seu dispositivo. Seu navegador ou sistema pode estar sem os codecs de vídeo necessários (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Isso irá excluir irreversivelmente sua conta Bluesky <0>{currentHandle} e todos os dados associados. Note que isto afetará qualquer outro serviço do <1>Protocolo AT que você usa com esta conta." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Isso removerá @{0} da lista de acesso rápido." @@ -12786,7 +12801,7 @@ msgstr "Preferências dos Tópicos" msgid "Threaded" msgstr "Aninhado" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferências dos Tópicos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Muitos contatos - você excedeu o número de contatos que você pode importar para encontrar seus amigos" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Principais" @@ -12858,7 +12873,7 @@ msgstr "Principais" msgid "Top replies first" msgstr "Respostas populares primeiro" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Assunto" @@ -12893,7 +12908,9 @@ msgstr "Tradução para o mesmo idioma não está disponível no seu dispositivo msgid "Tree view" msgstr "Visualização em árvore" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Em alta" @@ -12902,7 +12919,7 @@ msgstr "Em alta" msgid "Trending GIFs" msgstr "GIFs em alta" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opções dos assuntos em alta" @@ -12918,11 +12935,11 @@ msgstr "Trollagem" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "A confiança emerge de relacionamentos, comunidades e contexto compartilhado, por isso também estamos permitindo <0>verificadores confiáveis: organizações que podem conceder verificação diretamente." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Tente um termo de busca diferente ou remova alguns filtros." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Tente um termo de busca diferente." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Não foi possível carregar as solicitações para entrar." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Não foi possível encontrar um destinatário selecionado." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Não foi possível encontrar o destinatário selecionado." @@ -13024,12 +13043,12 @@ msgstr "Indisponível" msgid "Unavailable feed information" msgstr "Informação do feed indisponível" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Desbloquear Conta?" msgid "Unblock list" msgstr "Desbloquear lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Deixar de seguir {0}" msgid "Unfollow account" msgstr "Parar de seguir conta" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Para de seguir o usuário" @@ -13132,7 +13151,7 @@ msgstr "Conteúdo adulto não sinalizado" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Conteúdo adulto não sinalizado, abusivo ou não consensual" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Descurtir" @@ -13192,7 +13211,7 @@ msgstr "Dessilenciar esta conversa em grupo" msgid "Unmute thread" msgstr "Dessilenciar tópico" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Ativar o áudio do vídeo" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Desafixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desafixar feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Desafixar da tela inicial" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Desafixar lista de moderação" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} desafixado da Tela Inicial" @@ -13258,11 +13277,11 @@ msgstr "Cancelar inscrição deste rotulador" msgid "Unsubscribed from list" msgstr "Cancelada inscrição na lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Conteúdo da área de transferência não suportado" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Formato de vídeo não suportado: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Falha na atualização da visibilidade da resposta" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Enviar uma foto" @@ -13355,7 +13374,7 @@ msgstr "Carregar um arquivo" msgid "Upload from Library" msgstr "Carregar da galeria" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Enviando GIF..." @@ -13369,7 +13388,7 @@ msgstr "Enviando imagens..." msgid "Uploading link thumbnail..." msgstr "Enviando prévia de link..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Enviando vídeo..." @@ -13408,7 +13427,7 @@ msgstr "Use isso para registrar-se no outro app junto ao seu nome de usuário." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Use o endereço de email da sua conta ou outro email que você tenha acesso para caso o KWS ou o Bluesky precisem entrar em contato." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "usuário" @@ -13510,7 +13529,7 @@ msgstr "Falha na verificação, por favor tente novamente." msgid "Verification settings" msgstr "Configurações de verificação" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Configurações de Verificação" @@ -13618,7 +13637,7 @@ msgstr "Vídeo" msgid "Video failed to process" msgstr "Falha no processamento do vídeo" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Feed de vídeos" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Vídeo de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Vídeo de {0}. Toque para reproduzir ou pausar o vídeo" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videogames" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "O vídeo está pausado" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "O vídeo está reproduzindo" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Vídeo não encontrado." @@ -13653,7 +13672,7 @@ msgstr "Vídeo não encontrado." msgid "Video settings" msgstr "Configurações de vídeo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Vídeo enviado" @@ -13662,17 +13681,17 @@ msgstr "Vídeo enviado" msgid "Video: {0}" msgstr "Vídeo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vídeos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Vídeos devem ter menos de 3 minutos de duração." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Visualizar" @@ -13691,9 +13710,9 @@ msgstr "Ver o avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ver perfil de {0}" @@ -13724,13 +13743,13 @@ msgstr "Veja a postagem no blog para mais detalhes" msgid "View debug entry" msgstr "Ver depuração" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ver detalhes" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ver tópico completo" @@ -13761,7 +13780,7 @@ msgstr "Ver mais" msgid "View more trending videos" msgstr "Ver mais vídeos em alta" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Visualizar postagem" @@ -13798,11 +13817,11 @@ msgstr "Ver o link de convite para esta conversa em grupo" msgid "View the labeling service provided by @{0}" msgstr "Ver este rotulador fornecido por @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Ver as verificações deste usuário" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Ver usuários que curtiram este feed" @@ -13831,7 +13850,7 @@ msgstr "Veja suas listas de moderação" msgid "View your muted accounts" msgstr "Veja suas contas silenciadas" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Ver suas verificações" @@ -14001,7 +14020,7 @@ msgstr "Nós lhe notificaremos quando encontrarmos seus amigos." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "We’d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Adoraríamos ouvir sobre sua experiência usando os recursos em teste!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Estamos com problemas de rede, tente novamente" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Estamos com problemas de rede, tente novamente" @@ -14043,7 +14062,7 @@ msgstr "Estamos com problemas de rede, tente novamente" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Estamos introduzindo uma nova camada de verificação no Bluesky — uma marca de verificação fácil de ver." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Estamos muito contentes em receber você!" @@ -14064,13 +14083,15 @@ msgstr "Tivemos um problema ao exibir esta lista. Se continuar acontecendo, cont 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/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." -msgstr "" +msgstr "Desculpe, mas sua busca não pôde ser concluída." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lamentamos, mas sua pesquisa não pôde ser concluída. Por favor, tente novamente em alguns minutos." @@ -14078,7 +14099,7 @@ msgstr "Lamentamos, mas sua pesquisa não pôde ser concluída. Por favor, tente msgid "We're sorry, you cannot access this screen at this time." msgstr "Desculpe, você não pode acessar esta tela no momento." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentimos muito! A postagem que você está respondendo foi excluída." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "e aí" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "E aí, qual é a boa?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Quem pode verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ops!" @@ -14220,21 +14241,21 @@ msgstr "Gostaria de bloquear este usuário e/ou sair desta conversa?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Gostaria de salvar isto como um rascunho antes de visualizar os seus rascunhos?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Gostaria de salvar isto como um rascunho para editar mais tarde?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Escrever uma postagem" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Escrever postagem" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escreva sua resposta" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Você está acessando o Bluesky de uma região que exige legalmente a verificação da sua idade antes de permitir o acesso ao app." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Você está bloqueando {0}" @@ -14342,7 +14363,7 @@ msgstr "Você não está mais ao vivo" msgid "You are not allowed to upload videos." msgstr "Você não tem permissão para enviar vídeos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Você ainda não está seguindo ninguém" @@ -14362,7 +14383,7 @@ msgstr "Você foi verificado. Você perderá seu estado de verificação se muda msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Você foi verificado. Você perderá seu estado de verificação se mudar seu nome de usuário. <0>Saiba mais." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Você pode ajustar seus interesses a qualquer momento nas configurações de \"Conteúdo e mídia\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Agora você pode entrar com a sua nova senha." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Você pode adicionar no máximo {MAX_GALLERY_IMAGES, plural, other {# imagens}} por postagem" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Você só pode salvar rascunhos com até 1000 caracteres." @@ -14439,9 +14460,9 @@ msgstr "Você pode ler o histórico da conversa, mas não pode enviar novas mens msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Você pode selecionar até {MAX_GALLERY_IMAGES, plural, other {# imagens}} no total." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Você pode alterar esta opção depois nas suas configurações." @@ -14451,13 +14472,14 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Você não pode adicionar mais que {EMOJI_REACTION_LIMIT, plural, one {# reação com emoji} other {# reações com emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Você ainda não pode criar uma conversa em grupo." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:27 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." -msgstr "Você não pode atualizar sua data de nascimento ao usar uma senha de aplicativo. Por favor, entre com sua senha principal para atualizar sua data de nascimento." +msgstr "Você não pode atualizar sua data de nascimento enquanto usa uma senha de aplicativo. Por favor, entre com sua senha principal para atualizar sua data de nascimento." #: src/screens/Profile/KnownFollowers.tsx:103 msgid "You don't follow any users who follow @{name}." @@ -14555,7 +14577,7 @@ msgstr "Você verificou com sucesso o seu endereço de e-mail. Você pode fechar msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Você atingiu temporariamente o limite de envios de vídeo. Tente novamente mais tarde." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Você tem alterações não salvas neste rascunho, gostaria de salvá-las?" @@ -14563,7 +14585,7 @@ msgstr "Você tem alterações não salvas neste rascunho, gostaria de salvá-la msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Você tem alterações não salvas. Gostaria de salvá-las antes de visualizar os seus rascunhos?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Você ainda não criou um pacote inicial!" @@ -14614,7 +14636,7 @@ msgstr "Você pode adicionar no máximo {STARTER_PACK_MAX_SIZE, plural, other {{ msgid "You may only add up to 3 feeds" msgstr "Você pode adicionar no máximo 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Você precisa ser dono da conversa para remover um membro." @@ -14622,7 +14644,7 @@ msgstr "Você precisa ser dono da conversa para remover um membro." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Você deve ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Termos de Serviço para obter mais informações." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Você deve estar seguindo pelo menos sete outras pessoas para gerar um pacote inicial." @@ -14639,7 +14661,7 @@ msgstr "Você precisa permitir acesso à sua biblioteca de mídia." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Você precisa verificar seu endereço de e-mail antes de poder habilitar 2FA via e-mail." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Você é dono desta conversa" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Talvez você queira reiniciar o app agora." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Você reagiu com {0}" @@ -14667,15 +14689,15 @@ msgstr "Você reagiu com {0} a {target}" msgid "You recently changed your birthdate" msgstr "Você alterou sua data de nascimento recentemente" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Você respondeu" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Você respondeu a {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Você respondeu a si mesmo" @@ -14715,11 +14737,11 @@ msgstr "Você não poderá voltar a entrar a menos que seja convidado." msgid "You: {message}" msgstr "Você: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Você seguirá os usuários e feeds sugeridos após terminar de criar sua conta!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Você seguirá os usuários sugeridos após terminar de criar sua conta!" @@ -14791,7 +14813,7 @@ msgstr "Você chegou ao fim do conteúdo ativo." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Você chegou ao fim do seu feed! Encontre novas contas para seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Você atingiu o número máximo de rascunhos" @@ -14799,7 +14821,7 @@ msgstr "Você atingiu o número máximo de rascunhos" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Você atingiu o número máximo de solicitações permitidas. Tente novamente mais tarde." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Você alcançou o limite máximo de {MAX_FILTERS, plural, one {# filtro} other {# filtros}}. Adicione mais valores a um filtro existente em vez de criar novos." @@ -14815,11 +14837,11 @@ msgstr "Você atingiu seu limite diário de uploads de vídeo (muitos bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Você atingiu seu limite diário de uploads de vídeos (muitos vídeos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Você esgotou os vídeos disponíveis para assistir. Que tal descansar um pouco?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Sua conta" @@ -14835,11 +14857,11 @@ msgstr "Sua conta foi suspensa" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Sua conta ainda não tem idade suficiente para enviar vídeos. Por favor, tente novamente mais tarde." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Sua conta é muito nova" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Sua conta deve ter pelo menos 7 dias para criar uma nova conversa em grupo." @@ -14930,8 +14952,8 @@ msgstr "Seu provedor de hospedagem não pode ser detectado a partir de um endere msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Seu provedor de hospedagem é detectado automaticamente pelo nome de usuário que você inserir." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Seus interesses foram atualizados!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Seus interesses nos ajudam a encontrar o que você gosta!" @@ -14967,11 +14989,11 @@ msgstr "Sua senha foi alterada com sucesso! Use a sua nova senha quando entrar n msgid "Your password must be at least 8 characters long." msgstr "Sua senha deve ter no mínimo 8 caracteres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Sua postagem foi enviada" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Suas postagens foram enviadas" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Seu idioma de preferência" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Sua foto de perfil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Sua foto de perfil cercada por círculos concêntricos das fotos de perfil de outros usuários" @@ -14992,7 +15014,7 @@ msgstr "Sua foto de perfil cercada por círculos concêntricos das fotos de perf msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Seu perfil, postagens, feeds e listas não serão mais visíveis para outros usuários do Bluesky. Você pode reativar sua conta a qualquer momento fazendo login." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Sua resposta foi enviada" @@ -15005,7 +15027,7 @@ msgstr "Sua denúncia será enviada para <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Seus interesses escolhidos nos ajudam a entregar o conteúdo que interessa a você." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Seu tópico tem postagens vazias que serão ignoradas. As postagens restantes serão publicadas como um tópico." diff --git a/src/locale/locales/pt-PT/messages.po b/src/locale/locales/pt-PT/messages.po index f06fb6da6d..c6284947b9 100644 --- a/src/locale/locales/pt-PT/messages.po +++ b/src/locale/locales/pt-PT/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: pt\n" +"Language: pt_PT\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria \"{interestsDisplayName}\" (ativo)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(mensagem bloqueada oculta)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contém conteúdo incorporado)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(mensagem eliminada)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(link de convite da conversa inválido)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(mensagem enviada antes de ter entrado)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# rótulo aplicado à sua publicação} other {# rótulos aplicados à sua publicação}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# rótulo aplicado} other {# rótulos aplicados}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# gosto} other {# gostos}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membro} other {# membros}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# novo pedido de adesão} other {# novos pedidos de ade #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# pessoa} other {# pessoas}} reagiu – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Conta)" @@ -251,36 +252,13 @@ msgstr "{0} foi adicionado/a à conversa" msgid "{0} and {1} added to chat" msgstr "{0} e {1} adicionados à conversa" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} e {1} gostaram disto" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} e {others, plural, one {{1} outro} other {{2} outros}} gostaram disto" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} e {othersLabel} gostaram disto" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} a seguir" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "Está bloqueado por {0}" @@ -324,14 +302,6 @@ msgstr "{0} saiu" msgid "{0} left the group" msgstr "{0} saiu do grupo" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} gostou disto" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagiu com {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} e {memberCount, plural, one {# outro} other {# outros}} adicionados à conversa" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1}, e {others, plural, one {{2} outro} other {{3} outros}} gostaram disto" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} e {othersLabel} gostaram disto" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} verificou-te" msgid "{following} following" msgstr "{following} a seguir" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} não pode ser adicionado/a" @@ -698,7 +660,7 @@ msgstr "{handle} não pode ser adicionado/a" msgid "{handle} can't be messaged" msgstr "Não pode enviar mensagens a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "Não é possível enviar mensagens a {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# item não lido} other {# itens não l msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contacto encontrado} other {# contactos encontrados}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} outro} other {{1} outros}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} aderiu ao Bluesky há {timeAgoString}" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} aderiu ao Bluesky utilizando um pacote de iniciante há {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {# caracter restante} other {# caracteres restantes}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} respondeu" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} respondeu a {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} respondeu-te" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# pedido} other {# pedidos}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ pedidos" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "Há {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} é um verificador confiável" @@ -842,13 +795,13 @@ msgstr "Verificações de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {a seguir} other {a seguir}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citação} other {citações}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicação} other {republicações}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {guardado} other {guardados}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {gosto} other {gostos}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> adicionou-te" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Inicie sessão<1> ou <2>crie uma conta<3> <4>para procurar por notícias, desporto, política e tudo resto que acontece no Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dias" msgid "7 days" msgstr "7 dias" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Uma coleção de feeds populares que pode encontrar no Bluesky, incluindo News, Booksky, Game Dev, Blacksky, e Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Ocorreu um erro de rede. Por favor, verifique a sua conexão à internet #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Um novo código foi enviado" msgid "A new form of verification" msgstr "Uma nova forma de verificação" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Uma resposta a uma mensagem enviada antes de ter entrado" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Uma captura de ecrã do compositor de publicações com um novo botão ao lado do botão post que diz \"Rascunhos\", com um efeito de fogo de artifício de arco-íris. Abaixo, o texto no compositor diz \"Oi, ouviu a notícia? O Bluesky agora tem rascunhos!!!\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Um destinatário selecionado não é seguido pelo remetente." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Acesso solicitado! O proprietário do grupo irá rever o seu pedido." msgid "Accessibility" msgstr "Acessibilidade" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Definições de acessibilidade" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Conta silenciada pela Lista" msgid "Account options" msgstr "Definições da conta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Conta removida do acesso rápido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Contas com um selo de verificação azul recortado <0><1/> podem verificar outras. Estes verificadores confiáveis são selecionados pelo Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Atividade de outros" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Notificações de atividade" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Adicionar texto alternativo (opcional)" msgid "Add another account" msgstr "Adicionar outra conta" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Adicionar outra publicação" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Adicionar outra publicação ao fio" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Adicionar outro filtro de pesquisa" @@ -1253,7 +1213,7 @@ msgstr "Adicionar rótulo de automação à conta" msgid "Add emoji reaction" msgstr "Adicionar reação de emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Adicionar filtro" @@ -1338,7 +1298,7 @@ msgstr "Adicionar este feed aos seus feeds" msgid "Add to lists" msgstr "Adicionar a Listas" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Adicionar a publicações guardadas" @@ -1400,7 +1360,7 @@ msgstr "Adulto" msgid "Adult content" msgstr "Conteúdo adulto" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permite acesso às mensagens em direto" msgid "Already have a code?" msgstr "Já tem um código?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Já possui uma conta?" @@ -1614,7 +1574,7 @@ msgstr "Um e-mail foi enviado para {0}. Ele inclui um código de confirmação q msgid "An error has occurred" msgstr "Ocorreu um erro" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Ocorreu um erro" @@ -1631,7 +1591,7 @@ msgstr "Ocorreu um erro ao obter as contas sugeridas." msgid "An error occurred while fetching the feed." msgstr "Ocorreu um erro ao obter o feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ocorreu um erro enquanto gerava o seu pacote de iniciante. Deseja tentar novamente?" @@ -1640,11 +1600,11 @@ msgstr "Ocorreu um erro enquanto gerava o seu pacote de iniciante. Deseja tentar msgid "An error occurred while hiding suggestion. {0}" msgstr "Ocorreu um erro ao ocultar a sugestão. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Ocorreu um erro enquanto carregava o vídeo. Tente novamente mais tarde." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Ocorreu um erro enquanto carregava o vídeo. Tente novamente." @@ -1684,7 +1644,7 @@ msgstr "Ocorreu um erro. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Uma ilustração que retrata avatares de utilizadores a fluir de um livro de contactos para a aplicação do Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Uma ilustração de várias publicações do Bluesky ao lado dos ícones de republicar, gostar e comentar" @@ -1705,17 +1665,15 @@ msgstr "Um link de convite permite que pessoas entrem nesta conversa de grupo se msgid "An issue not included in these options" msgstr "Um problema não incluído nestas opções" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Ocorreu um problema ao criar a conversa de grupo. Por favor, tente novamente." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Ocorreu um problema ao iniciar a conversa. Por favor, tente novamente." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Ocorreu um problema ao tentar abrir a conversa" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Ocorreu um problema ao iniciar a conversa de grupo. Por favor, tente novamente." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Qualquer data" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Todos" @@ -1802,7 +1760,7 @@ msgstr "Qualquer um que me segue" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Qualquer pessoa que o tenha deixará de poder entrar ou pedir para entrar. Pode sempre criar um novo." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "A palavra-passe da aplicação deve conter pelo menos 4 caracteres" msgid "App passwords" msgstr "Palavras-passe da Aplicação" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Palavras-passe da Aplicação" @@ -1891,8 +1849,8 @@ msgstr "Recorrer desta decisão" msgid "Appeal this label" msgstr "Recorrer deste rótulo" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Aplicar Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arquivado desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publicação arquivada" @@ -1980,7 +1938,7 @@ msgstr "Tem a certeza que deseja eliminar isto dos seus feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Tem a certeza de que quer cancelar o seu pedido para aderir a {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Tem a certeza que deseja descartar esta publicação?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Conta automatizada" @@ -2033,7 +1991,7 @@ msgstr "Automático" msgid "Automation label" msgstr "Rótulo de automação" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Rótulo de Automação" @@ -2050,12 +2008,16 @@ msgstr "Reproduzir vídeos e GIFs automaticamente" msgid "Available" msgstr "Disponível" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Antes de criar uma publicação ou responder, deve verificar o seu e-mail." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Antes de criar um pacote de iniciante, deve verificar o seu e-mail." @@ -2135,10 +2097,10 @@ msgstr "Antes de poder receber notificações de publicações de {name}, primei #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2122,28 @@ msgstr "Comece o processo de verificação de idade, preenchendo os campos abaix msgid "Beta Feature" msgstr "Funcionalidade Beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "Funcionalidades beta" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Funcionalidades beta ativadas" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Funcionalidades beta podem ser instáveis. Algumas alterações podem precisar que a aplicação seja recarregada." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "As funcionalidades beta podem ser instáveis. Algumas alterações podem precisar que a aplicação seja reiniciada." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "Data de nascimento" msgid "Birthday" msgstr "Aniversário" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contas Bloqueadas" @@ -2282,7 +2250,7 @@ msgstr "Contas bloqueadas não conseguem responder aos seus fios, mencionar ou i 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 "Contas bloqueadas não conseguem responder aos seus fios, mencionar ou interagir de qualquer outra forma consigo. Não irá ver o conteúdo delas e elas serão impedidas de verem o seu." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Bloquear não impede o rotulador de aplicar rótulos na sua conta." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "O Bluesky não pode confirmar a veracidade da data aplicada." @@ -2330,7 +2299,7 @@ msgstr "O Bluesky é uma rede aberta em que pode escolher o seu fornecedor de ho msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky é uma rede aberta em que pode escolher o seu provedor de hospedagem. Se é novo aqui, recomendamos que continue com a configuração padrão do Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky é melhor com amigos!" @@ -2358,7 +2327,7 @@ msgstr "Termos de Serviço de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "O Bluesky guarda os seus contactos como dados codificados. Ao remover os seus contactos, esses dados são eliminados imediatamente." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "O Bluesky escolherá um conjunto de contas recomendadas de pessoas na sua rede." @@ -2425,24 +2394,25 @@ msgstr "Procure mais sugestões na página Explorar" msgid "Browse other feeds" msgstr "Procurar outros feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Procurar por publicações sobre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Procurar por publicações marcadas com {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Procurar pacote de iniciante {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Navegar tópico {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Procurar tópico {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Botão para voltar à cronologia do início" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Por {0}" @@ -2473,9 +2443,9 @@ msgstr "por @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Por <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Ao criar uma conta, concorda com os <0>Termos de Aplicação e a <1> msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ao criar uma conta, concorda com os <0>Termos de Aplicação." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Por si" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Câmara" @@ -2534,7 +2504,7 @@ msgstr "Acesso à câmara necessário" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Acesso à câmara necessário" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Cancelar reativação e terminar sessão" msgid "Cancel reply" msgstr "Cancelar resposta" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelar pesquisa" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Alterações ao pacote de iniciante não se irão refletir na lista após a sua criação. A lista será uma cópia independente." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Conversa silenciada" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Conversa não encontrada." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Opções de conversa" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Os proprietários da conversa não podem sair de uma conversa de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "O destinatário da conversa não é seguido pelo remetente." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Caixa de pedidos de conversa" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Pedidos de conversa" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Definições das conversas" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Removeu o silenciamento da conversa" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Conversas" @@ -2810,7 +2781,7 @@ msgstr "Procure em <0>{currentEmail} por um e-mail com o código de confirma #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Volte mais tarde!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "Escolher método de verificação de domínio" msgid "Choose Feeds" msgstr "Escolher feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Escolha por mim" @@ -2854,7 +2825,7 @@ msgstr "Escolher pessoas" msgid "Choose post languages" msgstr "Escolher idiomas da publicação" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Escolher esta cor como a sua foto de perfil" @@ -2879,7 +2850,7 @@ msgstr "Escolha a sua própria cronologia! Feeds construídos pela comunidade pe msgid "Choose your password" msgstr "Escolha a sua palavra-passe" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Escolha o seu nome de utilizador" @@ -2966,7 +2937,7 @@ msgstr "Clique aqui para ver o link de convite para esta conversa de grupo" msgid "Click to open tag menu for {0}" msgstr "Clique para abrir o menu de tags para {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clique para reenviar a mensagem falha" @@ -3003,7 +2974,7 @@ msgstr "Clique para reenviar a mensagem falha" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Clique para reenviar a mensagem falha" msgid "Close" msgstr "Fechar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Fechar janela de diálogo em execução" @@ -3047,7 +3018,7 @@ msgstr "Fechar banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Fechar visualizador de imagens" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Fechar menu" @@ -3090,7 +3061,7 @@ msgstr "Fechar o banner de pedidos de adesão" msgid "Close this dialog" msgstr "Fechar esta janela de diálogo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Fechar modal de boas-vindas" @@ -3098,7 +3069,7 @@ msgstr "Fechar modal de boas-vindas" msgid "Closes password update alert" msgstr "Fecha o aviso de atualização de palavra-passe" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Fecha o compositor de publicação e descarta o rascunho de publicação" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Cor" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modo de cor" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Banda Desenhada" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -3141,7 +3112,7 @@ msgstr "Diretrizes da Comunidade" msgid "Complete onboarding and start using your account" msgstr "Complete e comece a utilizar a sua conta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Conclua o desafio" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Escrever nova publicação" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Compor publicações com até {0, plural, other {# caracteres}} de comprimento" @@ -3160,11 +3131,11 @@ msgstr "Compor publicações com até {0, plural, other {# caracteres}} de compr msgid "Compose reply" msgstr "Escrever resposta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "A comprimir GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "A comprimir vídeo..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Contacte a nossa equipa de suporte" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contactar suporte" @@ -3253,7 +3224,7 @@ msgstr "Conteúdo e Multimédia" msgid "Content and media" msgstr "Conteúdo e multimédia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Conteúdo e Multimédia" @@ -3265,10 +3236,6 @@ msgstr "Conteúdo Bloqueado" msgid "Content filters" msgstr "Filtros de conteúdo" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Conteúdo de toda a rede que acreditamos que possa gostar." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Idiomas de conteúdo" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Conteúdo promovendo ou representando automutilação" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Alerta de Conteúdo" msgid "Content warnings" msgstr "Alertas de conteúdo" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Backdrop do menu de contexto, toque para fechar o ecrã." @@ -3302,7 +3269,7 @@ msgstr "Backdrop do menu de contexto, toque para fechar o ecrã." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Continuar fio..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continuar para o nome do grupo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Conversa não encontrada." msgid "Copied build version to clipboard" msgstr "Versão de compilação copiada para a área de transferência" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Link copiado para a área de transferência" @@ -3376,7 +3343,7 @@ msgstr "Link copiado para a área de transferência" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copiar Palavra-passe da Aplicação" msgid "Copy at:// URI" msgstr "Copiar at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiar DID do autor" @@ -3449,10 +3416,10 @@ msgstr "Copiar Link" msgid "Copy link to list" msgstr "Copiar Link para a Lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar Link para a Publicação" @@ -3470,8 +3437,8 @@ msgstr "Copiar link para pacote de iniciante" msgid "Copy message text" msgstr "Copiar texto da mensagem" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiar at:// URI da publicação" @@ -3490,7 +3457,7 @@ msgstr "Copiar valor de registo TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de Direitos de Autor" @@ -3540,11 +3507,11 @@ msgstr "Não foi possível seguir todas as correspondências. {0}" msgid "Could not leave chat" msgstr "Não foi possível sair da conversa" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Não foi possível sair da conversa." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Não foi possível carregar o feed" @@ -3562,7 +3529,7 @@ msgstr "Não foi possível carregar o perfil" msgid "Could not mute chat" msgstr "Não foi possível silenciar a conversa" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Não foi possível remover o membro." @@ -3606,8 +3573,8 @@ msgstr "vacas porcos" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Criar" @@ -3624,26 +3591,26 @@ msgstr "Criar uma lista a partir deste pacote de iniciante" msgid "Create a QR code for a starter pack" msgstr "Criar um código QR para um pacote de iniciante" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Criar um pacote de iniciante" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Criar um Pacote de Iniciante" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Criar um pacote de iniciante para mim" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Criar conta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Criar uma conta" @@ -3666,15 +3633,15 @@ msgstr "Criar uma conta" msgid "Create an account without using this starter pack" msgstr "Criar uma conta sem usar este pacote de iniciante" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Criar uma foto de perfil" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Criar outra" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Criar conversa de grupo" @@ -3741,9 +3708,9 @@ msgstr "Cultura" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Funcionalidades beta atuais" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Conversa atual" @@ -3770,8 +3737,8 @@ msgstr "Substâncias perigosas ou abuso de drogas" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Escuro" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuro" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema escuro" @@ -3814,7 +3781,7 @@ msgstr "Recusar esta sugestão de idioma" msgid "Deepfake adult content" msgstr "Conteúdo adulto Deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Padrão" @@ -3894,7 +3861,7 @@ msgstr "Eliminar a minha conta" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Eliminar publicação" @@ -3988,7 +3955,7 @@ msgstr "Janela de diálogo: ajustar quem pode interagir com esta publicação" msgid "Dialog: Set search filters" msgstr "Diálogo: Definir filtros de pesquisa" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Escuro" @@ -4002,7 +3969,7 @@ msgstr "Desativar" msgid "Disable 2FA" msgstr "Desativar 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Desativar legendas" @@ -4045,9 +4012,9 @@ msgstr "Desativado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar alterações?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Descartar rascunho?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Descartar publicação?" @@ -4079,6 +4046,10 @@ msgstr "Desconectar Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Impedir que aplicações exibam o meu perfil para utilizadores sem sessão iniciada" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Descobrir feeds" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Impedir que aplicações exibam o meu perfil para utilizadores sem sess msgid "Discover new custom feeds" msgstr "Descobrir novos feeds personalizados" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Descobrir novos feeds" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descobrir Feeds Novos" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignorar" @@ -4103,19 +4070,19 @@ msgstr "Ignorar" msgid "Dismiss banner" msgstr "Ignorar banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Ignorar falha" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Ignorar guia de introdução" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Descartar interesses" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Ignorar banner de evento ao vivo" @@ -4142,7 +4109,7 @@ msgstr "Exibir insígnias de texto alternativo maiores" msgid "Display name" msgstr "Nome de exibição" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Abandone os trolls e o clickbait. Encontre pessoas reais e conversas que são importantes para si." @@ -4205,8 +4172,8 @@ msgstr "Não se preocupe! Todas as mensagens e configurações existentes serão #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Não se preocupe! Todas as mensagens e configurações existentes serão msgid "Done" msgstr "Concluído" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Toque duplo ou toque prolongadamente a mensagem para adicionar uma reação" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Toque duplo para fechar janela de diálogo" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Toque duplo para dar um gosto" @@ -4328,6 +4295,7 @@ msgstr "Desordens alimentares" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Editar imagem" msgid "Edit interaction settings" msgstr "Editar definições de interação" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Editar interesses" @@ -4397,7 +4365,7 @@ msgstr "Editar estado \"em direto\"" msgid "Edit moderation list" msgstr "Editar lista de moderação" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar os Meus Feeds" @@ -4406,6 +4374,11 @@ msgstr "Editar os Meus Feeds" msgid "Edit name" msgstr "Editar nome" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Editar notificações de {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Pessoas" @@ -4444,7 +4417,7 @@ msgstr "Editar lista de utilizadores" msgid "Edit who can reply" msgstr "Editar quem pode responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Editar o seu pacote de iniciante" @@ -4500,8 +4473,8 @@ msgstr "Código HTML incorporado" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incorporar publicação" @@ -4509,7 +4482,7 @@ msgstr "Incorporar publicação" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorpore esta publicação no seu site. Simplesmente copie o seguinte excerto e cole-o no código HTML do seu site." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reprodutor de vídeos incorporado" @@ -4531,9 +4504,9 @@ msgstr "Permitir conteúdo adulto" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Ativar funcionalidades beta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Ativar legendas" @@ -4550,12 +4523,13 @@ msgstr "Permitir conteúdo multimédia externo" msgid "Enable media players for" msgstr "Permitir reprodutores de multimédia para" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Ative as notificações de uma conta visitando o perfil desta e pressionando o <0>ícone de sino <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Ativar notificações push" @@ -4581,7 +4555,7 @@ msgstr "Permitir vídeos do momento no seu feed Descobrir" msgid "Enabled" msgstr "Permitido" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fim do feed" @@ -4608,7 +4582,7 @@ msgstr "Insira uma palavra ou tag" msgid "Enter code" msgstr "Insira o código" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Entrar em ecrã cheio" @@ -4650,11 +4624,11 @@ msgstr "Insira o seu nome de utilizador e palavra-passe" msgid "Enters full screen" msgstr "Entra em ecrã cheio" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Entretenimento" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erro" @@ -4684,7 +4658,7 @@ msgstr "Ocorreu um erro ao guardar o ficheiro" msgid "Error receiving captcha response." msgstr "Ocorreu um erro ao obter a resposta do captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Erro: {error}" @@ -4696,8 +4670,8 @@ msgstr "Todos podem responder" msgid "Everybody can reply to this post." msgstr "Todos podem responder a esta publicação." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Todos" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Tudo o resto" @@ -4738,7 +4712,7 @@ msgstr "Excluir utilizadores que eu sigo" msgid "Excludes users you follow" msgstr "Exclui utilizadores que sigo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Sair do ecrã cheio" @@ -4755,11 +4729,11 @@ msgstr "Expandir lista de utilizadores" msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou colapsar a publicação completa a que está a responder" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expandir texto da publicação" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Expande ou colapsa o texto da publicação" @@ -4802,15 +4776,15 @@ msgstr "Conteúdo multimédia explícito ou perturbador." msgid "Explicit sexual images." msgstr "Imagens sexuais explícitas." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Explorar a aplicação" @@ -4844,7 +4818,7 @@ msgstr "Conteúdo Multimédia Externo" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "O conteúdo multimédia externo pode permitir que sites recolham informações sobre si ou o seu dispositivo. Nenhuma informação é enviada ou solicitada até pressionar o botão \"Reproduzir\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferências de Conteúdo Multimédia Externo" @@ -4886,7 +4860,7 @@ msgstr "Falha ao tentar alterar nome de utilizador. Tente novamente." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Falha ao copiar o link" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Falha ao sair da conversa de grupo" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Falha ao carregar as conversas" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Falha ao carregar feeds" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Falha ao carregar preferências de feeds" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Falha ao carregar definições de notificações." @@ -5012,14 +4987,14 @@ msgstr "Falha ao carregar preferência." msgid "Failed to load profiles" msgstr "Falha ao carregar perfis" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Falha ao carregar feeds sugeridos" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Falha ao carregar contas sugeridas" @@ -5027,12 +5002,12 @@ msgstr "Falha ao carregar contas sugeridas" msgid "Failed to lock group chat" msgstr "Falha ao trancar a conversa de grupo" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Falha ao marcar todas as conversas como lidas" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Falha ao rescindir o seu pedido. Por favor, tente novamente." msgid "Failed to resolve location. Please try again." msgstr "Falha ao determinar localização. Por favor, tente novamente." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Falha ao guardar rascunho" @@ -5191,7 +5166,7 @@ msgstr "Conta falsa ou bot" msgid "False information about elections" msgstr "Informação falsa sobre eleições" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5187,7 @@ msgstr "Criador do feed" msgid "Feed identifier" msgstr "Identificador do feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu de feed" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback enviado ao operador do feed" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds atualizados!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds que pensamos que poderá gostar." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Obter atualização" @@ -5273,11 +5244,11 @@ msgstr "Obter atualização" msgid "File saved successfully!" msgstr "Ficheiro guardado com sucesso!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Filtrar por autor" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrar por autor (atualmente: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Filtrar esta pesquisa por {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrar quem pode optar por receber notificações da sua atividade" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrar de quem você recebe notificações" @@ -5352,8 +5323,8 @@ msgstr "Encontrar contas para seguir" msgid "Find and invite friends" msgstr "Encontrar e convidar amigos" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Encontrar Contactos" @@ -5387,7 +5358,7 @@ msgstr "Encontre os seus amigos" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Encontre os seus amigos no Bluesky verificando o seu número de telefone e estabelecendo correspondências com o dos seus contactos. Nós protegemos a sua informação e o que acontece a seguir é controlado por si. <0>Saiba mais" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Encontre o seu povo" @@ -5429,7 +5400,7 @@ msgstr "Focar o campo de pesquisa" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Seguir {0}" msgid "Follow {displayName}" msgstr "Seguir {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Seguir {handle}" @@ -5453,11 +5424,11 @@ msgstr "Seguir {handle}" msgid "Follow 10 accounts" msgstr "Siga 10 contas" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Siga 10 pessoas para começar" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Siga 7 contas" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Seguidores podem aderir" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que conhece" @@ -5544,7 +5515,7 @@ msgstr "Seguidores que conhece" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "A seguir {0}" msgid "Following {displayName}" msgstr "A seguir {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "A seguir {handle}" @@ -5578,21 +5549,21 @@ msgstr "A seguir {handle}" msgid "Following feed preferences" msgstr "Preferências do feed A seguir" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferências do feed A seguir" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Segue-te" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Tipo de letra" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tamanho de letra" @@ -5612,13 +5583,13 @@ msgstr "Por motivos de segurança, precisamos de enviar um código de confirmaç msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por motivos de segurança, não poderá ver isto novamente. Se você perder esta palavra-passe da aplicação, precisará de gerar uma nova." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Para a melhor experiência, recomendamos o uso do tipo de letra do tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Para si" @@ -5628,7 +5599,7 @@ msgstr "Para si" msgid "Forever" msgstr "Para sempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Esqueça o ruído" @@ -5647,11 +5618,13 @@ msgstr "Esqueceu-se da palavra-passe?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Quatro balões de mensagem a representar uma conversa de grupo. Primeira mensagem: \"Soubeste da novidade? O Bluesky agora tem conversas de grupo!\" Segunda mensagem: \"omg, não acredito\" Terceira mensagem: \"Uau, 50 pessoas numa só conversa!\" Quarta mensagem: \"Também podes enviar links de convite!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Liberte o seu feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5647,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "Destas pessoas" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Gerar um pacote de iniciante" @@ -5712,45 +5685,45 @@ msgstr "Germ DM reconectada" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features we’re testing." -msgstr "" +msgstr "Receba acesso antecipado a funcionalidades experimentais que estamos a testar." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obter ajuda" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Receber notificações de adesões através de pacotes de iniciante, verificação e outra atividade." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Receber notificações quando pessoas te seguirem." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Receber notificações quando pessoas gostarem das suas publicações." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Receber notificações quando as pessoas gostarem das suas republicações." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Receber notificações quando pessoas te mencionarem." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Receber notificações quando pessoas citarem suas publicações." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Receber notificações quando pessoas responderem às suas publicações." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Receber notificações quando pessoas republicarem as suas publicações." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Receber notificações quando as pessoas republicarem as suas republicações." @@ -5762,15 +5735,15 @@ msgstr "Receba notificações quando alguém lhe enviar pedidos de mensagem." msgid "Get notifications when people send you messages." msgstr "Receba notificações quando as pessoas lhe enviarem mensagens." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Receber notificações quando houver atividade em publicações subscrevidas por si." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Receber notificações de novas publicações" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Receba notificações sobre publicações e respostas de contas que escolher." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Receber notificações de novas publicações de {name}" @@ -5799,11 +5772,11 @@ msgstr "Vamos começar" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF carregado" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Dê um rosto ao seu perfil" @@ -5813,20 +5786,20 @@ msgstr "Glorificação de violência" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Entrar em direto por" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Ir para o perfil de {0}" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nome da conversa de grupo atualizado" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Definições de conversa de grupo" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "As conversas de grupo podem ter no máximo {0, plural, one {}other {# pessoas}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "O grupo está trancado" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nome do grupo" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "O nome do grupo é demasiado longo {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {}other {O número máximo de caracteres é #.}}" @@ -6077,7 +6051,7 @@ msgstr "Atividades perigosas ou de alto risco" msgid "Harming or endangering minors" msgstr "Prejudicar ou colocar menores em perigo" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Tem um código? <0>Clique aqui." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "A sua localização está errada? <0>Toque aqui para atualizar a sua localização com o GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Está com problemas?" @@ -6114,7 +6088,7 @@ msgstr "Retido pelo Bluesky por 7 dias para evitar abusos, e depois eliminado" msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Carregue uma foto de perfil para ajudar as pessoas a saber que não é um bot." @@ -6140,7 +6114,7 @@ msgstr "Olá!" msgid "Hidden" msgstr "Oculto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Oculto pelas suas definições de moderação." @@ -6148,9 +6122,9 @@ msgstr "Oculto pelas suas definições de moderação." msgid "Hidden list" msgstr "Lista oculta" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Lista oculta" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Ocultar" @@ -6198,7 +6172,7 @@ msgstr "Ocultar resposta para todos" msgid "Hide reply for me" msgstr "Ocultar resposta para mim" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ocultar este cartão" @@ -6218,12 +6192,12 @@ msgstr "Ocultar essa resposta?" msgid "Hide translation" msgstr "Ocultar tradução" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Ocultar tendências" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Ocultar tendências?" @@ -6240,7 +6214,7 @@ msgstr "Ocultar lista de utilizadores" msgid "Hide verification badges" msgstr "Ocultar selos de verificação" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Oculta o conteúdo" @@ -6293,8 +6267,8 @@ msgstr "Hmmmm, não foi possível carregar esse serviço de moderação." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Aguarde! Estamos a dar acesso a vídeo gradualmente e ainda está em fila de espera. Volte mais tarde!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Fornecedor de hospedagem: {0}" msgid "Hosting provider: Bluesky" msgstr "Fornecedor de hospedagem: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Popular" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Como funciona:" @@ -6409,6 +6379,7 @@ msgstr "Se atualizar o seu endereço de e-mail, a 2FA por e-mail será desativad msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se pretende alterar a sua palavra-passe, vamos enviar-lhe um código para verificar que esta é a sua conta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Se quer restringir quem pode receber notificações da atividade da sua conta, pode alterar isso em <0>Definições → Privacidade e Segurança." @@ -6548,7 +6519,7 @@ msgstr "Na aplicação, push, de todos" msgid "In-app, push, people you follow" msgstr "Na aplicação, push, de pessoas que sigo" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Caixa de entrada vazia" @@ -6560,6 +6531,7 @@ msgstr "Caixa de entrada vazia!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "De momento é só você! Adicione mais pessoas ao seu pacote de iniciante pesquisando acima." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID do trabalho: {0}" @@ -6816,8 +6788,8 @@ msgstr "Junte-se à conversa" msgid "Journalism" msgstr "Jornalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continuar a editar" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Website da KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Rotulado por {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Rotulado pelo autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Rótulos" @@ -6852,7 +6824,7 @@ msgstr "Rótulos adicionados" msgid "Labels applied to this post" msgstr "Rótulos aplicados a esta publicação" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Rótulos são anotações em utilizadores e conteúdo. Eles podem ser usados para ocultar, avisar e categorizar a rede." @@ -6864,7 +6836,7 @@ msgstr "Rótulos na sua conta" msgid "Language" msgstr "Idioma" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Definições de Idioma" @@ -6874,7 +6846,7 @@ msgstr "Definições de Idioma" msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Maior" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Iniciado pela última vez agora mesmo" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Mais recentes" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Saber mais (em inglês)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Saber mais" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Saiba mais sobre <0>como utilizar a pesquisa avançada." @@ -6937,8 +6909,8 @@ msgstr "Saiba mais sobre importar contactos" msgid "Learn more about self hosting your PDS." msgstr "Saiba mais sobre como hospedar o seu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Saiba mais sobre a moderação aplicada a este conteúdo" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Saiba mais sobre estas alterações e como partilhar as suas ideias connosco, lendo a nossa publicação no blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Saiba mais sobre este aviso" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Saiba mais nas suas <0>definições de conta." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Saber mais." @@ -6993,8 +6965,8 @@ msgstr "Sair" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Sair do Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Sair desta conversa irá trancá-la permanentemente e não poderá voltar a entrar." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Saiu da conversa de grupo." @@ -7042,7 +7014,7 @@ msgstr "Saiu da conversa de grupo." msgid "left to go." msgstr "à sua frente na fila." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Deixe-me escolher" @@ -7057,7 +7029,7 @@ msgstr "Vamos lá!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Claro" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Gostar" @@ -7076,7 +7048,7 @@ msgstr "Gostar" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gosto ({0, plural, one {# gosto} other {# gostos}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Deixe um \"gosto\" em 10 publicações" @@ -7085,7 +7057,7 @@ msgstr "Deixe um \"gosto\" em 10 publicações" msgid "Like 10 posts to train the Discover feed" msgstr "Deixe um \"gosto\" em 10 publicações para ajudar a treinar o seu feed \"Descobrir\"" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Gostar deste feed" @@ -7093,8 +7065,8 @@ msgstr "Gostar deste feed" msgid "Like this labeler" msgstr "Gostar deste rotulador" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Gostado por" @@ -7111,27 +7083,45 @@ msgstr "Gostado por" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gostado por {0, plural, one {# utilizador} other {# utilizadores}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Gostado por {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Gostado por {0} e {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gostado por {likeCount, plural, one {# utilizador} other {# utilizadores}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Gostos" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Gostos das suas republicações" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Gostos nesta publicação" @@ -7144,7 +7134,7 @@ msgstr "Linear" msgid "Link copied to clipboard" msgstr "Link copiado para área de transferência" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Silenciamento da lista removido " -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "EM DIRETO" msgid "Live event happening now: {0}" msgstr "Evento ao vivo a acontecer agora: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Evento ao vivo ocultado" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Evento ao vivo a ser exibido" @@ -7279,12 +7269,12 @@ msgstr "A funcionalidade \"Entrar em direto\" está em beta" msgid "Live link" msgstr "Link de transmissão em direto" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Carregar mais" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Carregar mais feeds sugeridos" @@ -7292,8 +7282,8 @@ msgstr "Carregar mais feeds sugeridos" msgid "Load new notifications" msgstr "Carregar novas notificações" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Trancar esta conversa de grupo" msgid "Locked" msgstr "Trancada" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Registo" @@ -7387,7 +7377,7 @@ msgstr "GIFs de amor" msgid "Make adjustments to email settings for your account" msgstr "Ajustar as definições de e-mail para a sua conta" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Faça um para mim" @@ -7418,15 +7408,15 @@ msgstr "Manual" msgid "Mark all as read" msgstr "Marcar tudo como lido" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marcar todas as conversas como lidas" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marcar como lido" msgid "Marked all as read" msgstr "Tudo marcado como lido" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Todas as conversas foram marcadas como lidas" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Todos os pedidos foram marcados como lidos" @@ -7456,8 +7446,12 @@ msgstr "Todos os pedidos foram marcados como lidos" msgid "Maybe later" msgstr "Talvez mais tarde" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Eu" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimédia" @@ -7475,7 +7469,7 @@ msgstr "Conteúdo multimédia armazenado noutro dispositivo" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Conteúdo multimédia que pode ser perturbador ou inapropriado para algumas audiências." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membro removido da conversa de grupo." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "utilizadores mencionados" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menções" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mensagem eliminada" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Falha ao enviar mensagem." @@ -7563,15 +7557,15 @@ msgstr "A mensagem é demasiado longa ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH}) msgid "Message options" msgstr "Opções de mensagem" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensagens" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "As mensagens desta pessoa estão ocultas enquanto estiver bloqueado por ela." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "As mensagens desta pessoa estão ocultas enquanto a estiver a bloquear." @@ -7592,7 +7586,7 @@ msgstr "Enganador" msgid "Missing media" msgstr "Conteúdo multimédia em falta" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderação" @@ -7636,7 +7630,7 @@ msgstr "Lista de moderação atualizada" msgid "Moderation lists" msgstr "Listas de moderação" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de Moderação" @@ -7645,7 +7639,7 @@ msgstr "Listas de Moderação" msgid "moderation settings" msgstr "definições de moderação" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Estados de moderação" @@ -7786,7 +7780,7 @@ msgstr "Silenciado" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -7867,7 +7861,6 @@ msgstr "Precisa de denunciar uma violação de direitos de autor, uma solicitaç msgid "Nevermind, create a handle for me" msgstr "Deixe estar, crie um nome de utilizador para mim" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Novo" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {Nova publicação} other {Novas publicações} #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nova conversa" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Nova Funcionalidade" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Novos seguidores" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nova conversa de grupo" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nova conversa de grupo" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nova conversa de grupo com:" @@ -7966,13 +7959,13 @@ msgstr "Nova lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Novos pedidos de mensagem" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Novas mensagens" @@ -7982,12 +7975,12 @@ msgstr "Novas mensagens" msgid "New password" msgstr "Nova palavra-passe" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nova publicação" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Respostas mais recentes primeiro" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Notícias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Imagem seguinte" msgid "Night" msgstr "Noite" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Sem anúncios, sem rastreamento invasivo, sem armadilhas de engajamento. O Bluesky respeita o seu tempo e atenção." @@ -8067,7 +8060,7 @@ msgstr "Sem palavras-passe de aplicação ainda" #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Nenhuma funcionalidade beta de momento." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8091,7 @@ msgstr "Sem expiração definida" msgid "No feeds found. Try searching for something else." msgstr "Não foram encontrados feeds. Tente procurar por algo diferente." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Sem seguidores ainda" @@ -8118,7 +8111,7 @@ msgstr "Sem imagem" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Sem gostos ainda" @@ -8135,7 +8128,7 @@ msgstr "Nenhuma lista" msgid "No longer following {0}" msgstr "Já não segue {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Sem conteúdo multimédia ainda" @@ -8143,7 +8136,7 @@ msgstr "Sem conteúdo multimédia ainda" msgid "No messages yet" msgstr "Sem mensagens ainda" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Chega de \"doomscrolling\" em algoritmos cheios de lixo. Encontre feeds que funcionam para si, não contra si." @@ -8184,12 +8177,12 @@ msgstr "Ninguém pode enviar mensagens" msgid "No posts here" msgstr "Sem publicações aqui" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Sem publicações ainda" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ainda sem citações" @@ -8202,7 +8195,7 @@ msgstr "Sem GIFs recentes ainda. Escolha um para vê-lo aqui." msgid "No replies" msgstr "Sem respostas" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Sem respostas ainda" @@ -8217,13 +8210,13 @@ msgstr "Nenhum resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sem resultados" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Sem resultados para \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Nenhum resultado encontrado" msgid "No results found for \"{query}\"" msgstr "Não foram encontrados resultados para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "Nenhum resultado encontrado para \"<0>{query}\" com os filtros de pesquisa avançada aplicados." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Nenhum resultado encontrado para “<0>{query}”." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Nenhum resultado encontrado para a sua pesquisa com os filtros de pesquisa avançada aplicados." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Sem resultados." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Nenhum Pacote de Iniciante ainda" @@ -8265,7 +8258,7 @@ msgstr "Não, obrigado" msgid "No translation received from your device." msgstr "Nenhuma tradução recebida do seu dispositivo." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Sem vídeos ainda" @@ -8278,7 +8271,7 @@ msgstr "Ninguém" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ainda ninguém gostou disto. Talvez deva ser o primeiro!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ainda ninguém citou isto. Talvez deva ser o primeiro!" @@ -8298,6 +8291,10 @@ msgstr "Imagens íntimas não consensuais" msgid "Non-sexual Nudity" msgstr "Nudez não sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Nenhuma" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Indisponível nesta plataforma." msgid "Not followed by anyone you’re following" msgstr "Não é seguido por ninguém seguido por si" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Não Encontrado" @@ -8333,7 +8330,7 @@ msgstr "Nota sobre partilhar" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: o Bluesky é uma rede aberta e pública. Esta definição limita somente a visibilidade do seu conteúdo no site e aplicação do Bluesky, e outras aplicações podem não respeitar essa definição. O seu conteúdo pode ainda ser exibido para utilizadores sem sessão iniciada através de outras aplicações e sites." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: Esta publicação é apenas visível para utilizadores com sessão iniciada." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Nada foi guardado ainda" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Definições de notificações" @@ -8353,11 +8350,12 @@ msgstr "Definições de notificações" msgid "Notification sounds" msgstr "Sons de notificações" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Oh não!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "OK" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Reiniciar a introdução" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Um dos destinatários selecionados não permite conversas de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Foi bloqueado por um dos destinatários selecionados e não o pode contactar." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Um ou mais GIFs sem texto alternativo." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens sem texto alternativo." @@ -8454,11 +8454,11 @@ msgstr "Um ou mais dos seus ficheiros selecionados não são suportados." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Um ou mais dos ficheiros selecionados são demasiado grandes. O tamanho máximo é {VIDEO_MAX_SIZE_MB}  MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Uma ou mais publicações são demasiado longas para guardar como um rascunho {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {O número máximo de caracteres é # caracter.} other {O número máximo de caracteres é # caracteres.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Um ou mais vídeos sem texto alternativo." @@ -8471,7 +8471,7 @@ msgstr "Apenas {0} pode responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Somente {0} de {1} {2, plural, one {imagem} other {imagens}} foram adicionadas; o limite é {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "Apenas publicações com vídeos" msgid "Only replies" msgstr "Apenas respostas" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Apenas ficheiros WebVTT (.vtt) são suportados" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ups, este perfil não existe. Tente ler outro." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,7 +8544,7 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "Abrir opções de pesquisa avançada" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Abrir criador de foto de perfil" @@ -8570,21 +8570,22 @@ msgstr "Abrir opções de conversa" msgid "Open draft" msgstr "Abrir rascunho" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Abrir menu lateral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Abrir selecionador de emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Abrir ecrã de informação do feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Abrir menu de opções de feed" @@ -8627,7 +8628,7 @@ msgstr "Abrir página de debug da moderação" msgid "Open muted words and tags settings" msgstr "Abrir definições de palavras e tags silenciadas" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Abrir pacote" @@ -8699,7 +8700,7 @@ msgstr "Abre detalhes adicionais para uma entrada de debug" msgid "Opens alt text dialog" msgstr "Abre janela de diálogo de texto alternativo" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Abre câmara no dispositivo" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Abre processo para criar uma nova conta no Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Abre o processo para iniciar sessão com a sua conta Bluesky existente" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Palavra-passe atualizada!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausa" @@ -8925,12 +8926,12 @@ msgstr "Pausa" msgid "Pause GIF" msgstr "Meter GIF em pausa" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar vídeo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Pessoas" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Pessoas seguidas por {ownerName} podem pedir para se juntar" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Pessoas a seguir @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Pessoas que eu sigo" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Pessoas que eu sigo podem pedir para se juntar" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Pessoas que segue" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Afixar feed" @@ -9034,7 +9035,7 @@ msgstr "Afixar feed" msgid "Pin to home" msgstr "Afixar a início" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Afixar a Início" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Afixado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} afixado a Início" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Afixado aos seus feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reproduzir" @@ -9076,8 +9077,8 @@ msgstr "Reproduzir {0}" msgid "Play GIF" msgstr "Reproduzir GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproduzir vídeo" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Por favor, escreva a sua mensagem abaixo:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Política" @@ -9269,7 +9270,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicação" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Publicação" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Publicar uma foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Publicar um vídeo" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar tudo" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Publicar mesmo assim" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Publicação bloqueada" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Publicação por @{0}" @@ -9340,7 +9341,7 @@ msgstr "Publicação ocultada por si" msgid "Post interaction settings" msgstr "Definições de interação com publicação" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Definições de Interação com Publicação" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Publicação afixada" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Publicação guardada" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Publicação desafixada" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicações" @@ -9398,6 +9396,10 @@ msgstr "As publicações podem ser silenciadas com base no seu texto, nas suas t msgid "Posts hidden" msgstr "Publicações ocultas" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Publicações, Respostas" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potencialmente enganador" @@ -9449,20 +9451,21 @@ msgstr "Privacidade" msgid "Privacy and security" msgstr "Privacidade e segurança" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidade e Segurança" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Definições de privacidade e segurança" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Política de Privacidade" msgid "Privacy violation of a minor" msgstr "Violação da privacidade de um menor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "A processar GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "A processar o vídeo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listas públicas e partilháveis de utilizadores para silenciar ou bloquear em massa." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicar publicação" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicar publicações" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicar respostas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicar resposta" @@ -9599,12 +9602,12 @@ msgstr "Citações desativadas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citações" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citações desta publicação" @@ -9647,7 +9650,7 @@ msgstr "Reative a sua conta" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Ler mais {0, plural, one {# resposta} other {# respostas}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Leia sobre como usar os filtros de pesquisa avançada" @@ -9657,11 +9660,11 @@ msgstr "Leia sobre como usar os filtros de pesquisa avançada" msgid "Read blog post" msgstr "Ler a publicação do blog (em inglês)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Ler menos" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Ler mais" @@ -9687,11 +9690,11 @@ msgstr "Leia a Política de Privacidade do Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leia os Termos de Serviço do Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Conversas reais." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Pessoas reais." @@ -9721,10 +9724,6 @@ msgstr "Pesquisas recentes" msgid "Recently used" msgstr "Usados recentemente" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomendados" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconectar" @@ -9748,7 +9747,7 @@ msgstr "Rejeitar solicitação de conversa" msgid "Reject join request" msgstr "Rejeitar pedido de adesão" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recarregar conversas" @@ -9766,7 +9765,7 @@ msgstr "Recarregar conversas" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Remover" @@ -9792,8 +9791,8 @@ msgstr "Remover {displayName}?" msgid "Remove {q}" msgstr "Remover {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Remover conta" @@ -9845,15 +9844,15 @@ msgstr "Remover filtro" msgid "Remove from chat" msgstr "Remover da conversa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Remover de acesso rápido?" @@ -9862,7 +9861,7 @@ msgstr "Remover de acesso rápido?" msgid "Remove from saved feeds" msgstr "Remover dos feeds guardados" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Remover das publicações salvas" @@ -9880,8 +9879,8 @@ msgstr "Remover imagem" msgid "Remove live status" msgstr "Remover estado \"em direto\"" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Remover membro" @@ -9943,7 +9942,7 @@ msgstr "Removido da lista" msgid "Removed from saved feeds" msgstr "Removido dos feeds guardados" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Removida das publicações salvas" @@ -9952,7 +9951,7 @@ msgstr "Removida das publicações salvas" msgid "Removed from starter pack" msgstr "Removido do pacote de iniciante" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Respondeu-te" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Mensagem de {senderName} a que respondeu, toque para ir até ela" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "A mensagem respondida foi enviada antes de ter entrado" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Mensagem a que respondeu, toque para ir até ela" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respostas" @@ -10037,7 +10037,7 @@ msgstr "As respostas a esta publicação estão desativadas." msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Denunciar conversa" msgid "Report dialog" msgstr "Janela de denúncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Denunciar feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republicado por si" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Republicações" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicações desta publicação" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Republicações das suas republicações" @@ -10253,7 +10253,7 @@ msgstr "Solicitado" msgid "Requests" msgstr "Pedidos" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Repete a última ação, que resultou em erro" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Voltar à página de início" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Volta à página anterior" @@ -10446,27 +10446,27 @@ msgstr "Guardar data de nascimento" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Guardar alterações" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Guardar alterações?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Guardar rascunho" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Guardar rascunho?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Guardar código QR" msgid "Save these options for next time" msgstr "Guardar estas opções para a próxima vez" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Guardar nos meus feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feeds Guardados" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Publicações Guardadas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardado nos seus feeds" @@ -10520,8 +10520,8 @@ msgstr "Guardado nos seus feeds" msgid "Say hello!" msgstr "Diga olá!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Diga olá a alguém" @@ -10535,7 +10535,7 @@ msgstr "Ler" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Ler código QR" @@ -10543,15 +10543,15 @@ msgstr "Ler código QR" msgid "Science" msgstr "Ciência" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Scroll para a esquerda" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Scroll para a direita" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Ir até à mensagem a que esta resposta se refere" @@ -10564,8 +10564,8 @@ msgstr "Voltar ao topo" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Procurar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Pesquisar nas publicações de @{0}" @@ -10612,11 +10612,11 @@ msgstr "Pesquisar por {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Procurar por feeds que deseja sugerir para outros." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Procurar por mais contas" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Procurar mais feeds" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Procurar GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "A pesquisa está indisponível quando não tiver sessão iniciada" @@ -10709,6 +10709,7 @@ msgstr "Ver empregos no Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Ver mais" @@ -10716,8 +10717,12 @@ msgstr "Ver mais" msgid "See more suggested profiles" msgstr "Ver mais perfis sugeridos" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "Ver mais assuntos do momento" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Ver contas sugeridas" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Controlo deslizante. Use as setas do teclado para avançar ou retroceder e a barra de espaço para reproduzir/colocar em pausa" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Selecionar categoria \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Selecionar {0}" msgid "Select {langName}" msgstr "Selecionar {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecionar uma cor" @@ -10764,11 +10769,11 @@ msgstr "Selecionar conta" msgid "Select an app language" msgstr "Selecionar um idioma da aplicação" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecionar uma foto de perfil" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecionar um emoji" @@ -10780,12 +10785,13 @@ msgstr "Selecione uma opção" msgid "Select app language" msgstr "Selecione o idioma da aplicação" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Selecionar ficheiro de legendas (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Selecionar conversa \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Selecionar GIF" msgid "Select GIF \"{0}\"" msgstr "Selecionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Selecionar membros da conversa de grupo" @@ -10864,7 +10870,7 @@ msgstr "Selecionar idioma principal" msgid "Select telephone code" msgstr "Selecionar código de telefone" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecione o emoji {emojiName} como foto de perfil" @@ -10945,7 +10951,8 @@ msgstr "Enviar mensagem" msgid "Send post to {name}" msgstr "Enviar publicação para {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Enviar publicação para..." @@ -10963,12 +10970,12 @@ msgstr "Enviar mensagem a partir do seu telefone" msgid "Send verification email" msgstr "Enviar e-mail de verificação" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Enviar através de mensagem direta" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Enviar via chat" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Definir o seu provedor de hospedagem manualmente" msgid "Sets email for password reset" msgstr "Define o e-mail para recuperação de senha" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Definições" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Definições de atividade de outros" @@ -11036,49 +11043,49 @@ msgstr "Definições de atividade de outros" msgid "Settings for allowing others to be notified of your posts" msgstr "Definições para permitir que outros sejam notificados sobre as suas publicações" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Definições para notificações de gostos" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Definições para notificações de menções" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Definições para notificações de novo seguidor" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Definições para notificações de tudo o resto" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Definições para notificações de gostos nas suas republicações" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Definições para notificações de novos pedidos de mensagem" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Definições para notificações de novas mensagens" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Definições para notificações de republicações das suas republicações" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Definições para notificações de citações" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Definições para notificações de respostas" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Definições para notificações de republicações" @@ -11115,8 +11122,8 @@ msgstr "Partilhar intervalo etário" msgid "Share anyway" msgstr "Partilhar mesmo assim" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Partilhar DID do autor" @@ -11125,9 +11132,9 @@ msgstr "Partilhar DID do autor" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Partilhar feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Janela de diálogo para partilha de link" msgid "Share my profile" msgstr "Partilhar o meu perfil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Partilhar publicação em:// URI" @@ -11169,12 +11176,12 @@ msgstr "Partilhar perfil" msgid "Share QR code" msgstr "Partilhar código QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Partilhar este feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Partilhar esta pesquisa" @@ -11186,8 +11193,8 @@ msgstr "Partilhar este pacote de iniciante" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Partilhe este pacote de iniciante e ajude pessoas a juntarem-se à sua comunidade no Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Partilhe os seus contactos para encontrar amigos" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughts…" -msgstr "" +msgstr "Partilhe o que achou…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testador de Preferências Partilhadas" @@ -11219,7 +11226,7 @@ msgstr "Partilhar o seu intervalo etário revela apenas o intervalo associado à msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Partilhar o seu intervalo etário revela apenas o intervalo associado à sua Conta Google – por exemplo, que tem pelo menos 18 anos. <0>A sua idade exata e a sua data de nascimento nunca são partilhadas, e estes dados nunca saem deste dispositivo. Por isso, apenas permitem o acesso neste dispositivo. Em alternativa, <1>pode utilizar o nosso parceiro de confiança, o KWS, para concluir a verificação e ativar o acesso em todas as plataformas." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Mostrar" msgid "Show alt text" msgstr "Mostrar texto alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Mostrar mesmo assim" @@ -11274,9 +11281,9 @@ msgstr "Mostrar lista mesmo assim" msgid "Show lists of users to select from" msgstr "Mostrar listas de utilizadores de onde escolher" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Mostrar Mais" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Ver mais" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Mostrar aviso e filtrar de feeds" msgid "Show when you’re live" msgstr "Mostre quando você estiver ao vivo" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Mostra informação sobre quando esta publicação foi criada" @@ -11341,15 +11348,15 @@ msgstr "Mostra informação sobre quando esta publicação foi criada" msgid "Shows other accounts you can switch to" msgstr "Mostra outras contas para as quais pode mudar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Mostra o conteúdo" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Mostra o conteúdo" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Terminar sessão?" msgid "Sign up" msgstr "Criar conta" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Requer início de sessão" @@ -11469,7 +11476,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "Ignorar partilha de contactos e continuar para a aplicação" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Ignorar publicações vazias?" @@ -11487,7 +11494,7 @@ msgstr "Saltar para o próximo passo" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Menor" @@ -11499,14 +11506,14 @@ msgstr "Adia o lembrete" msgid "So many thoughts, you should post one" msgstr "Tantos pensamentos, deveria publicar um" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "A rede social que você controla." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Provas sociais nas publicações" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Alguém saiu do grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Alguém reagiu {0}" @@ -11554,7 +11561,7 @@ msgstr "Alguém reagiu {0}" msgid "Someone reacted {0} to {target}" msgstr "Alguém reagiu {0} a {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Alguém respondeu" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Aconteceu algo de errado, por favor tente novamente" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Aconteceu algo de errado. Por favor, tente novamente dentro de um moment msgid "Something went wrong. Please try again." msgstr "Aconteceu algo de errado. Por favor, tente novamente." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Aconteceu algo de errado? Informe-nos." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam ou outros comportamentos inautênticos ou enganadores" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Desportos" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Destaque publicações que os seus amigos e pessoas que segue gostaram." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Inicie uma conversa, e ela aparecerá aqui." msgid "Start a group chat" msgstr "Iniciar uma conversa de grupo" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Iniciar uma nova conversa" @@ -11682,17 +11689,17 @@ msgstr "Comece a adicionar pessoas" msgid "Start adding people!" msgstr "Comece a adicionar pessoas!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Iniciar conversa" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Iniciar conversa com {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacote de Iniciante" @@ -11715,12 +11722,16 @@ msgstr "Pacote de iniciante por si" msgid "Starter pack is invalid" msgstr "Pacote de iniciante é inválido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Pacotes de iniciante" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pacotes de Iniciante" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Pacotes de iniciante permitem-lhe compartilhar facilmente os seus feeds e pessoas favoritos com os seus amigos." @@ -11728,7 +11739,7 @@ msgstr "Pacotes de iniciante permitem-lhe compartilhar facilmente os seus feeds msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Pacotes de iniciante permitem-lhe partilhar os seus feeds e pessoas favoritos com os seus amigos." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Pacotes de Iniciante permitem-lhe partilhar os seus feeds e utilizadores preferidos com os seus amigos." @@ -11742,7 +11753,7 @@ msgstr "Página de estado" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Passo {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Armazenamento limpo, precisa de reiniciar a aplicação agora." msgid "Stored as part of a secure code for matching with others" msgstr "Armazenado como parte de um código seguro para correspondência com outros" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "Submeter Recurso" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Enviar feedback" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Subscrever a {publicationTitle} no {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscrever @{0} para usar estes rótulos:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Verificado com sucesso" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Sugeridos" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Contas sugeridas" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Pôr do sol" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Esta funcionalidade ainda não está disponível no seu país! Por favor, volte mais tarde." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Contas suspensas não podem participar na conversa de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Contas suspensas não podem participar na conversa." @@ -11921,8 +11934,8 @@ msgstr "Trocar para {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Torne a conversa privada." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Toque abaixo para permitir que o Bluesky aceda à sua localização GPS. Em seguida, usaremos esses dados para determinar com maior precisão o conteúdo e as funcionalidades disponíveis na sua região." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Toque para mais detalhes" @@ -11976,7 +11989,7 @@ msgstr "Toque para fechar menu de contexto" msgid "Tap to copy this invite link" msgstr "Toque para copiar este link de convite" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toque para ignorar" @@ -12003,7 +12016,7 @@ msgstr "Toque para remover a sua reação {0}" msgid "Tap to request access to join this group chat" msgstr "Toque para pedir para aderir a esta conversa de grupo" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Toque para tentar novamente" @@ -12016,7 +12029,7 @@ msgstr "Toque para mostrar reações {0}" msgid "Tap to show all reactions" msgstr "Toque para mostrar todas as reações" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Toque para ver as reações" @@ -12032,7 +12045,7 @@ msgstr "Tarefa concluída - seguiu 10 contas!" msgid "Task complete - 10 likes!" msgstr "Tarefa concluída - 10 gostos!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Ensine ao nosso algoritmo aquilo de que gosta" @@ -12060,7 +12073,7 @@ msgstr "Termos" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Obrigado pelo seu feedback! Ele foi enviado para o operador do feed." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Obrigado pelo seu feedback!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Não foi possível encontrar esse pacote de iniciante." msgid "That username is already taken" msgstr "Este nome de utilizador já está em uso" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "É tudo!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "É tudo!" @@ -12216,7 +12229,7 @@ msgstr "O servidor parece estar a passar por problemas. Por favor, tente novamen msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "O pacote de iniciante que está a tentar visualizar é inválido. Em vez disso, pode eliminar este pacote de iniciante." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "O assunto do menu de contexto" @@ -12238,7 +12251,7 @@ msgstr "O código de verificação que forneceu é inválido. Certifique-se de q msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "O fornecedor de verificação não conseguiu enviar um código para o seu número de telefone. Por favor, verifique o seu número de telefone e tente novamente." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Houve um problema ao carregar os GIFs. Verifique a sua conexão à inter msgid "There was a problem with your internet connection, please try again" msgstr "Houve um problema com a sua conexão à internet. Por favor, tente novamente" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Houve um problema com a sua conexão à internet. Por favor, tente novam msgid "There was an issue contacting the server" msgstr "Ocorreu um problema ao contactar o servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Ocorreu um problema ao contactar o servidor. Por favor, verifique a sua conexão de internet e tente novamente." @@ -12283,8 +12296,8 @@ msgstr "Ocorreu um problema ao contactar o servidor. Por favor, verifique a sua msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Houve um problema ao obter as notificações. Toque aqui para tentar novamente." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Houve um problema ao obter as publicações. Toque aqui para tentar novamente." @@ -12309,7 +12322,7 @@ msgstr "Houve um problema ao obter a sua informação de serviço" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Ocorreu um problema ao remover este feed. Por favor, verifique a sua conexão de internet e tente novamente." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Estas definições só se aplicam ao feed \"A seguir\"." msgid "These URLs" msgstr "Estes URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "São proprietários desta conversa" @@ -12392,7 +12405,7 @@ msgstr "São proprietários desta conversa" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Não poderão voltar a entrar a não ser que os convide novamente." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Este {screenDescription} foi sinalizado:" @@ -12408,7 +12421,7 @@ msgstr "Esta conta foi marcada como sendo automatizada pelo seu proprietário." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Esta conta tem uma ou mais tentativas de verificação, mas não é atualmente verificada." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta conta solicitou que utilizadores iniciem sessão para ver o seu perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Este feed está vazio! Talvez precise de seguir mais utilizadores ou ajustar as definições de idioma." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Este feed está vazio." @@ -12554,7 +12567,7 @@ msgstr "Este grupo está bloqueado por uma ação de moderação sobre o proprie msgid "This handle is reserved. Please try a different one." msgstr "Este nome de utilizador é reservado. Por favor, tente um diferente." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Esta imagem não pôde ser usada. Tente um formato diferente como .jpg ou .png." @@ -12596,7 +12609,7 @@ msgstr "Este rótulo foi aplicado por si." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Este rótulo foi aplicado a toda a conta do utilizador e aparecerá em todas as publicações da mesma." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este rotulador não declarou que rótulos utiliza e pode não estar ativo." @@ -12621,13 +12634,13 @@ msgstr "Esta lista está vazia." msgid "This message is hidden" msgstr "Esta mensagem está oculta" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Esta mensagem está oculta porque está bloqueado por este utilizador." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Esta mensagem está oculta porque tem este utilizador bloqueado." @@ -12641,7 +12654,7 @@ msgstr "Está bloqueado por esta pessoa" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Este post afirma ter sido criado em <0>{0}, mas foi primeiro visto por Bluesky em <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Este post afirma ter sido criado em <0>{0}, mas foi primeiro visto p msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicação tem um tipo de \"threadgate\" desconhecido. É possível que a sua aplicação esteja desatualizada." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Esta publicação é apenas visível para utilizadores com sessão iniciada." @@ -12661,7 +12674,7 @@ msgstr "Esta publicação foi eliminada pelo seu autor" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicação será ocultada de feeds e fios. Isto não pode ser revertido." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "O autor desta publicação desativou as citações." @@ -12698,11 +12711,12 @@ msgstr "Isto deve demorar apenas alguns minutos." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Este utilizador não possui um nome de exibição, e como tal não pode ser verificado." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Este utilizador não tem seguidores." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Foi bloqueado por este utilizador e não o pode contactar." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Foi bloqueado por este utilizador. Não pode ver o conteúdo dele." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Este utilizador desativou as conversas e não o pode contactar." @@ -12733,11 +12748,11 @@ msgstr "Este utilizador está incluído na lista <0>{0} que tem silenciada." msgid "This user is new here. Press for more info about when they joined." msgstr "Este utilizador é novo aqui. Toque para mais informações acerca do momento da sua adesão." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Este utilizador não segue ninguém." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Este vídeo não pode ser reproduzido no seu dispositivo. O seu navegador ou sistema podem estar sem os codecs de vídeo necessários (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Isto irá eliminar de forma irreversível a sua conta no Bluesky <0>{currentHandle} e todos os dados associados. Isto afetará qualquer outro serviço <1>AT Protocol que use com esta conta." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Isto irá remover @{0} da lista de acesso rápido." @@ -12786,7 +12801,7 @@ msgstr "Preferências de Resposta" msgid "Threaded" msgstr "Em fio" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferências de Fios" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Demasiados contactos - excedeu o número de contactos que pode importar para encontrar os seus amigos" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Melhor" @@ -12858,7 +12873,7 @@ msgstr "Melhor" msgid "Top replies first" msgstr "Respostas principais primeiro" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tópico" @@ -12893,7 +12908,9 @@ msgstr "A tradução para o mesmo idioma não está disponível no seu dispositi msgid "Tree view" msgstr "Vista em árvore" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendências" @@ -12902,7 +12919,7 @@ msgstr "Tendências" msgid "Trending GIFs" msgstr "GIFs nas tendências" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opções de assuntos do momento" @@ -12918,11 +12935,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "A confiança surge de relações, comunidades e contexto compartilhado, por isso também estamos a permitir <0>verificadores de confiança: organizações que podem fornecer verificações diretamente." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Tente um termo de pesquisa diferente ou remova alguns filtros." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Tente um termo de pesquisa diferente." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Não foi possível obter pedidos de adesão." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Não foi possível encontrar um destinatário selecionado." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Não foi possível encontrar o destinatário selecionado." @@ -13024,12 +13043,12 @@ msgstr "Indisponível" msgid "Unavailable feed information" msgstr "Informação do feed indisponível" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Desbloquear conta?" msgid "Unblock list" msgstr "Desbloquear lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Deixar de seguir {0}" msgid "Unfollow account" msgstr "Deixar de seguir conta" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Deixa de seguir o utilizador" @@ -13132,7 +13151,7 @@ msgstr "Conteúdo adulto não rotulado" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Conteúdo adulto não rotulado, abusivo ou não consensual" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Remover gosto" @@ -13192,7 +13211,7 @@ msgstr "Remover silenciamento desta conversa de grupo" msgid "Unmute thread" msgstr "Deixar de silenciar fio" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Remover silenciamento do vídeo" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Desafixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desafixar feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Desafixar de início" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Desafixar lista de moderação" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} desafixado de início" @@ -13258,11 +13277,11 @@ msgstr "Deixar de subscrever este rotulador" msgid "Unsubscribed from list" msgstr "Removeu subscrição da lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Conteúdo da área de transferência não suportado" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Tipo de vídeo não suportado: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Falha ao atualizar a visibilidade da resposta" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Carregar uma foto em vez disso" @@ -13355,7 +13374,7 @@ msgstr "Carregar de Ficheiros" msgid "Upload from Library" msgstr "Carregar da Biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "A carregar GIF..." @@ -13369,7 +13388,7 @@ msgstr "A carregar imagens..." msgid "Uploading link thumbnail..." msgstr "A carregar miniatura do link..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "A carregar vídeo..." @@ -13408,7 +13427,7 @@ msgstr "Use isto para iniciar sessão na outra aplicação em conjunto com o seu msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Use o seu endereço de e-mail ou outro endereço de e-mail real que controle, caso a KWS ou o Bluesky precisem de entrar em contacto consigo." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "utilizador" @@ -13510,7 +13529,7 @@ msgstr "Falha na verificação. Por favor, tente novamente." msgid "Verification settings" msgstr "Definições de verificação" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Definições de Verificação" @@ -13618,7 +13637,7 @@ msgstr "Vídeo" msgid "Video failed to process" msgstr "Falha ao processar o vídeo" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Feed de Vídeo" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Vídeo de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Vídeo de {0}. Toque para reproduzir ou meter em pausa o vídeo" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Videojogos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Vídeo em pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Vídeo em reprodução" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Vídeo não encontrado." @@ -13653,7 +13672,7 @@ msgstr "Vídeo não encontrado." msgid "Video settings" msgstr "Definições de vídeo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Vídeo carregado" @@ -13662,17 +13681,17 @@ msgstr "Vídeo carregado" msgid "Video: {0}" msgstr "Vídeo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vídeos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Os vídeos devem ter menos de 3 minutos." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Visualizar" @@ -13691,9 +13710,9 @@ msgstr "Ver foto de perfil de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ver perfil de {0}" @@ -13724,13 +13743,13 @@ msgstr "Veja a publicação no blog para mais detalhes" msgid "View debug entry" msgstr "Ver entrada de debug" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ver detalhes" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ver fio completo" @@ -13761,7 +13780,7 @@ msgstr "Ver mais" msgid "View more trending videos" msgstr "Ver mais vídeos do momento" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Visualizar publicação" @@ -13798,11 +13817,11 @@ msgstr "Ver o link de convite para esta conversa de grupo" msgid "View the labeling service provided by @{0}" msgstr "Ver o serviço de rotulação fornecido por @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Ver as verificações deste utilizador" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Ver utilizadores que gostaram deste feed" @@ -13831,7 +13850,7 @@ msgstr "Ver as suas listas de moderação" msgid "View your muted accounts" msgstr "Ver as contas que silenciou" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Ver as suas verificações" @@ -14001,7 +14020,7 @@ msgstr "Será notificado quando encontrarmos os seus amigos." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "We’d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Adoraríamos saber como está a ser a sua experiência a testar as funcionalidades beta!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Estamos com problemas de rede, tente novamente" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Estamos a ter problemas de rede, tente novamente" @@ -14043,7 +14062,7 @@ msgstr "Estamos a ter problemas de rede, tente novamente" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Estamos a introduzir uma nova camada de verificação no Bluesky — um selo de verificação fácil de ver." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Estamos muito contentes por se ter juntado a nós!" @@ -14064,13 +14083,15 @@ msgstr "Lamentamos, mas não conseguimos resolver esta lista. Se isto persistir, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Pedimos desculpa, mas não conseguimos carregar as suas palavras silenciadas neste momento. Por favor, tente novamente." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." -msgstr "" +msgstr "Lamentamos, mas a sua pesquisa não pôde ser concluída." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lamentamos, mas não foi possível concluir a sua pesquisa. Por favor, tente novamente dentro de alguns minutos." @@ -14078,7 +14099,7 @@ msgstr "Lamentamos, mas não foi possível concluir a sua pesquisa. Por favor, t msgid "We're sorry, you cannot access this screen at this time." msgstr "Pedimos desculpa, não pode aceder de momento a esta janela." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Pedimos desculpa! A publicação à qual está a responder foi eliminada." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "tudo bem?" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Como está?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Quem pode verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ups!" @@ -14220,21 +14241,21 @@ msgstr "Gostaria de bloquear este utilizador e/ou deixar esta conversa?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Gostaria de guardar isto como rascunho antes de ver os seus rascunhos?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Gostaria de guardar isto como rascunho para editar mais tarde?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Escrever uma publicação" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Escrever publicação" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escreva a sua resposta" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Está a aceder ao Bluesky a partir de uma região cuja lei nos obriga a verificar a sua idade antes de permitir que aceda à aplicação." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0} está bloqueado por si" @@ -14342,7 +14363,7 @@ msgstr "Já não está em direto" msgid "You are not allowed to upload videos." msgstr "Não tem permissão para carregar vídeos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Ainda não segue ninguém" @@ -14362,7 +14383,7 @@ msgstr "É verificado. Irá perder a sua verificação se alterar o seu nome de msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "A sua conta é verificada. Perderá a sua verificação se alterar o seu nome de utilizador. <0>Saiba mais." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Pode ajustar os seus interesses a qualquer momento nas definições de \"Conteúdo e média\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Agora pode iniciar sessão com a sua nova palavra-passe." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Só pode adicionar até {MAX_GALLERY_IMAGES, plural, one {}other {# imagens}} por publicação" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Só pode guardar rascunhos com um máximo de 1000 caracteres." @@ -14439,9 +14460,9 @@ msgstr "Pode ler o histórico da conversa, mas não pode enviar novas mensagens. msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Pode selecionar {MAX_GALLERY_IMAGES, plural, one {# imagem}other {# imagens}} no total." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Pode atualizar isto mais tarde a partir das suas definições." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Não pode adicionar mais de {EMOJI_REACTION_LIMIT, plural, one {# reação de emoji} other {# reações de emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Ainda não pode criar uma conversa de grupo." @@ -14555,7 +14577,7 @@ msgstr "Verificou o seu endereço de e-mail com sucesso. Pode fechar esta janela msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Atingiu temporariamente o limite para carregamento de vídeos. Por favor, tente novamente mais tarde." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Tem alterações não guardadas a este rascunho. Gostaria de guardá-las?" @@ -14563,7 +14585,7 @@ msgstr "Tem alterações não guardadas a este rascunho. Gostaria de guardá-las msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Tem alterações não guardadas. Gostaria de guardá-las antes de ver os seus rascunhos?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Ainda não criou um pacote de iniciante!" @@ -14614,7 +14636,7 @@ msgstr "Pode adicionar até {STARTER_PACK_MAX_SIZE, plural, one {}other {{STARTE msgid "You may only add up to 3 feeds" msgstr "Pode adicionar um máximo de 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Tem de ser proprietário da conversa para remover um membro." @@ -14622,7 +14644,7 @@ msgstr "Tem de ser proprietário da conversa para remover um membro." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Tem de ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Termos de Serviço para mais informação." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Deve seguir pelo menos sete outras pessoas para gerar um pacote de iniciante." @@ -14639,7 +14661,7 @@ msgstr "Precisa de conceder acesso à sua biblioteca de conteúdo multimédia." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Precisa de verificar o seu endereço de e-mail antes de poder ativar a 2FA por e-mail." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Você é o proprietário desta conversa" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Provavelmente quer reiniciar a aplicação agora." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Reagiu {0}" @@ -14667,15 +14689,15 @@ msgstr "Reagiu {0} a {target}" msgid "You recently changed your birthdate" msgstr "Alterou recentemente a sua data de nascimento" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Respondeu" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Respondeu a {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Respondeu a si mesmo" @@ -14715,11 +14737,11 @@ msgstr "Não poderá voltar a entrar sem ser convidado." msgid "You: {message}" msgstr "Você: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirá os utilizadores sugeridos e feeds assim que terminar a criação da sua conta!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirá os utilizadores sugeridos assim que terminar a criação da sua conta!" @@ -14791,7 +14813,7 @@ msgstr "Chegou ao fim do conteúdo ativo." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Chegou ao fim do seu feed! Encontre mais algumas contas para seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Alcançou o número máximo de rascunhos" @@ -14799,7 +14821,7 @@ msgstr "Alcançou o número máximo de rascunhos" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Atingiu o número máximo de solicitações permitidas. Tente novamente mais tarde." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Atingiu o máximo de {MAX_FILTERS, plural, one {# filtro} other {# filtros}}. Adicione mais valores a um filtro existente em vez de criar novos." @@ -14815,11 +14837,11 @@ msgstr "Atingiu o seu limite diário de carregamento de vídeos (demasiados byte msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Atingiu o seu limite diário de carregamento de vídeos (demasiados vídeos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Esgotou os vídeos disponíveis para assistir. Que tal uma pausa?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "A sua conta" @@ -14835,11 +14857,11 @@ msgstr "A sua conta foi suspensa" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A sua conta não tem antiguidade suficiente para carregar vídeos. Por favor, tente novamente mais tarde." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "A sua conta é demasiado recente" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "A sua conta precisa de ter pelo menos 7 dias antes de poder criar uma nova conversa de grupo." @@ -14930,8 +14952,8 @@ msgstr "O seu fornecedor de hospedagem não pode ser detetado a partir de um end msgid "Your hosting provider is detected automatically from the username you enter." msgstr "O seu fornecedor de hospedagem é detetado automaticamente a partir do nome de utilizador que inserir." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Os seus interesses foram atualizados!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Os seus interesses ajudam-nos a encontrar aquilo que gosta!" @@ -14967,11 +14989,11 @@ msgstr "A sua palavra-passe foi alterada com sucesso! Por favor, use a sua nova msgid "Your password must be at least 8 characters long." msgstr "A sua palavra-passe deve ter pelo menos 8 caracteres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "A sua publicação foi enviada" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "As suas publicações foram enviadas" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "O seu idioma preferido" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "A sua foto de perfil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "A sua foto de perfil cercada por círculos concêntricos com as fotos de perfil de outros utilizadores" @@ -14992,7 +15014,7 @@ msgstr "A sua foto de perfil cercada por círculos concêntricos com as fotos de msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "O seu perfil, publicações, feeds e listas não serão mais visíveis para outros utilizadores do Bluesky. Pode reativar a sua conta a qualquer momento ao fazer login novamente." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "A sua resposta foi enviada" @@ -15005,7 +15027,7 @@ msgstr "A sua denúncia será enviada para <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Os seus interesses selecionados ajudam-nos a servir-lhe conteúdo com o qual se importa." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "O seu fio tem publicações vazias que serão ignoradas. As restantes publicações serão publicadas como um fio." diff --git a/src/locale/locales/ro/messages.po b/src/locale/locales/ro/messages.po index 711986b8aa..30e87af458 100644 --- a/src/locale/locales/ro/messages.po +++ b/src/locale/locales/ro/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: ro\n" +"Language: ro_RO\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria „{interestsDisplayName}” (activă)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(mesaj blocat ascuns)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(conține conținut încorporat)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(mesaj șters)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(link de invitație pentru conversație invalid)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(mesaj trimis înainte de a vă fi alăturat)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {o oră} few {# ore} other {# de ore}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {o etichetă aplicată postării dvs.} few {# etichete aplicate postării dvs.} other {# de etichete aplicate postării dvs.}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {o etichetă aplicată} few {# etichete aplicate} other {# de etichete aplicate}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {O apreciere} few {# aprecieri} other {# de aprecieri}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {un membru} few {# membrii} other {# de membrii}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {o cerere nouă de alăturare} few {# cereri noi de ală #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {o persoană a} few {# persoane au} other {# de persoane au}} reacționat – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Cont)" @@ -251,36 +252,13 @@ msgstr "{0} a fost adăugat la conversație" msgid "{0} and {1} added to chat" msgstr "{0} și {1} au fost adăugați la conversație" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} și {1} au apreciat asta" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} și {others, plural, one {un alt utilizator} few {alți {2} utilizatori} other {alți {2} de utilizatori}} au apreciat asta" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} și {othersLabel} au apreciat asta" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} urmăriți" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} vă blochează" @@ -324,14 +302,6 @@ msgstr "{0} a părăsit conversația" msgid "{0} left the group" msgstr "{0} a părăsit grupul" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} a apreciat acest lucru" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} din 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} a reacționat {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} și {memberCount, plural, one {un alt utilizator} few {alți # utilizatori} other {alți # de utilizatori}} au fost adăugați la conversație" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1}, și {others, plural, one {un alt utilizator} few {alți {3} utilizatori} other {alți {3} de utilizatori}} au apreciat asta" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1}, și {othersLabel} au apreciat asta" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} v-a verificat" msgid "{following} following" msgstr "{following} urmăriți" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} nu poate fi adăugat(ă)" @@ -698,7 +660,7 @@ msgstr "{handle} nu poate fi adăugat(ă)" msgid "{handle} can't be messaged" msgstr "Nu se pot trimite mesaje către {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "Nu se pot trimite mesaje către {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {Un element necitit} few {# elemente nec msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {un contact găsit} few {# contacte găsite} other {# de contacte găsite}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {un utilizator} few {alți {1} utilizatori} other {alți {1} de utilizatori}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} s-a alăturat la Bluesky cu {timeAgoString} în urmă" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} s-a alăturat la Bluesky folosind un pachet de pornire cu {timeAgoString} în urmă" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, one {un caracter rămas} few {# caractere rămase} other {# de caractere rămase}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} a răspuns" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} a răspuns către {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} v-a răspuns" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {o cerere} few {# cereri} other {# de cereri} msgid "{requestCount}+ requests" msgstr "Încă {requestCount} de cereri" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "acum {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} este un verificator de încredere" @@ -842,13 +795,13 @@ msgstr "Verificările utilizatorului {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {urmărit} few {urmăriți} other {de urmări #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citat} few {citate} other {de citate}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repostare} few {repostări} other {de repostări}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {salvare} few {salvări} other {de salvări}} #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {apreciere} few {aprecieri} other {de aprecieri}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> v-a adăugat" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Conectați-vă<1> sau <2>creați un cont<3> <4>pentru a căuta știri, sport, politică și tot ce se întâmplă pe Bluesky." @@ -971,7 +924,7 @@ msgstr "30 de zile" msgid "7 days" msgstr "7 zile" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "O colecție de fluxuri populare pe care le puteți găsi pe Bluesky, inclusiv News, Booksky, Game Dev, Blacksky și Fountain Pens" @@ -988,9 +941,11 @@ msgstr "A apărut o eroare de rețea. Vă rugăm să verificați conexiunea la i #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "A fost trimis un nou cod" msgid "A new form of verification" msgstr "O nouă formă de verificare" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Un răspuns la un mesaj trimis înainte de a vă fi alăturat" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "O captură de ecran a unui compozitor de postări cu un buton nou lângă cel de postare care spune „Schițe”, cu un efect de artificii în formă de curcubeu. Mai jos, textul din editor spune „Hei, ai auzit știrile? Bluesky are schițe acum!!!”." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Un destinatar selectat nu este urmărit de expeditor." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Acces solicitat! Proprietarul grupului va analiza cererea dvs." msgid "Accessibility" msgstr "Accesibilitate" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Setări de accesibilitate" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Cont amuțit de listă" msgid "Account options" msgstr "Opțiuni cont" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Cont eliminat din acces rapid" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Conturile cu bifa albastră în formă de feston <0><1/> pot verifica alte persoane. Acești verificatori de încredere sunt selectați de Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Activitate de la alții" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Notificări de activitate" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Adăugați text alternativ (opțional)" msgid "Add another account" msgstr "Adăugați un alt cont" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Adăugați o altă postare" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Adăugați o altă postare firului" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Adăugați un alt filtru de căutare" @@ -1253,7 +1213,7 @@ msgstr "Adăugați o etichetă de automatizare contului" msgid "Add emoji reaction" msgstr "Adăugați reacție emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Adăugare filtru" @@ -1338,7 +1298,7 @@ msgstr "Adăugați acest flux la fluxurile dvs." msgid "Add to lists" msgstr "Adăugare la liste" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Adăugare la postările salvate" @@ -1400,7 +1360,7 @@ msgstr "Adulți" msgid "Adult content" msgstr "Conținut pentru adulți" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Permiteți accesul la mesajele directe" msgid "Already have a code?" msgstr "Aveți deja un cod?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Aveți deja un cont?" @@ -1614,7 +1574,7 @@ msgstr "Un e-mail a fost trimis la {0}. Acesta include un cod de confirmare pe c msgid "An error has occurred" msgstr "A apărut o eroare" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "A apărut o eroare" @@ -1631,7 +1591,7 @@ msgstr "A apărut o eroare la preluarea conturilor sugerate." msgid "An error occurred while fetching the feed." msgstr "A apărut o eroare în timpul preluării fluxului." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "A apărut o eroare la generarea pachetului de pornire. Doriți să încercați din nou?" @@ -1640,11 +1600,11 @@ msgstr "A apărut o eroare la generarea pachetului de pornire. Doriți să înce msgid "An error occurred while hiding suggestion. {0}" msgstr "A apărut o eroare la ascunderea sugestiei. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "A apărut o eroare la încărcarea videoclipului. Vă rugăm să încercați din nou mai târziu." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "A apărut o eroare la încărcarea videoclipului. Vă rugăm să încercați din nou." @@ -1684,7 +1644,7 @@ msgstr "A apărut o eroare. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "O ilustrație care prezintă avataruri de utilizator care se transferă dintr-o agendă de contacte în aplicația Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "O ilustrație a mai multor postări Bluesky alături de pictograme de repostare, apreciere și comentare" @@ -1705,17 +1665,15 @@ msgstr "Un link de invitație permite utilizatorilor să se alăture acestei con msgid "An issue not included in these options" msgstr "O problemă care nu este inclusă în aceste opțiuni" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "A apărut o problemă la crearea conversației de grup, vă rugăm să încercați din nou." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "A apărut o problemă la începerea conversației, vă rugăm să încercați din nou." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "A apărut o problemă în timp ce se încerca deschiderea conversației" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "A apărut o problemă la pornirea conversației de grup, vă rugăm să încercați din nou." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Orice dată" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Oricine" @@ -1802,7 +1760,7 @@ msgstr "Oricine mă urmărește" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Oricine îl are nu va mai putea să se alăture sau să solicite să se alăture. Puteți oricând să creați unul nou." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Numele parolelor de aplicație trebuie să aibă cel puțin 4 caractere" msgid "App passwords" msgstr "Parole de aplicații" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Parole de aplicație" @@ -1891,8 +1849,8 @@ msgstr "Contestați această decizie" msgid "Appeal this label" msgstr "Contestați această etichetă" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Aplicați solicitarea de tragere" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arhivat de la {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Postare arhivată" @@ -1980,7 +1938,7 @@ msgstr "Sunteți sigur că doriți să eliminați asta din fluxurile dvs.?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Sunteți sigur că doriți să anulați cererea dvs. de a vă alătura la {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Sunteți sigur că doriți să renunțați la această postare?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Cont automatizat" @@ -2033,7 +1991,7 @@ msgstr "Automat" msgid "Automation label" msgstr "Etichetă cont automatizat" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etichetă cont automatizat" @@ -2050,12 +2008,16 @@ msgstr "Redare automată videoclipuri și GIF-uri" msgid "Available" msgstr "Disponibil" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Înainte de a crea o postare sau un răspuns, trebuie să vă verificați mai întâi e-mailul." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Înainte de a crea un pachet de pornire, trebuie să vă verificați mai întâi e-mailul." @@ -2135,10 +2097,10 @@ msgstr "Înainte de a primi notificări despre postările noi de la {name}, treb #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Începeți procesul de verificare a vârstei completând câmpurile de m msgid "Beta Feature" msgstr "Caracteristică beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Caracteristici beta" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Caracteristici beta activate" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Data nașterii" msgid "Birthday" msgstr "Zi de naștere" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blocat" msgid "Blocked accounts" msgstr "Conturi blocate" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Conturi blocate" @@ -2282,7 +2250,7 @@ msgstr "Conturile blocate nu pot răspunde în firele dvs., să vă menționeze, 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 "Conturile blocate nu pot răspunde în firele dvs., să vă menționeze, sau să interacționeze într-un fel cu dvs. Nu le veți putea vedea conținutul și ei nu vor putea să-l vadă pe al dvs." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blocarea nu împiedică acest etichetator să plaseze etichete pe contul dvs." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nu poate confirma autenticitatea datei revendicate." @@ -2330,7 +2299,7 @@ msgstr "Bluesky este o rețea deschisă unde vă puteți alege furnizorul de gă msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky este o rețea deschisă în care vă puteți alege propriul furnizor. Dacă sunteți nou aici, vă recomandăm să rămâneți cu opțiunea Bluesky Social implicită." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky este mai bun cu prietenii!" @@ -2358,7 +2327,7 @@ msgstr "Termenii de Serviciu a Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky stochează contactele dvs. sub formă de date codificate. Eliminarea contactelor va duce la ștergerea imediată a acestor date." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky va alege un set de conturi recomandate de la persoanele din rețeaua dvs." @@ -2425,24 +2394,25 @@ msgstr "Răsfoiți mai multe sugestii pe pagina Explorare" msgid "Browse other feeds" msgstr "Răsfoiți alte fluxuri" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Răsfoiți postări despre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Răsfoiți postări etichetate cu {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Răsfoiți pachetul de pornire {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Răsfoiți subiectul {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Răsfoiți subiectul {displayName}" @@ -2461,8 +2431,8 @@ msgstr "Buton pentru a reveni la cronologia principală" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "De {0}" @@ -2473,9 +2443,9 @@ msgstr "de @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "de <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Prin crearea unui cont sunteți de acord cu <0>Termenii de Serviciu msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Prin crearea unui cont sunteți de acord cu <0>Termenii de Serviciu." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "De dvs." -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Cameră" @@ -2534,7 +2504,7 @@ msgstr "Este necesar accesul la cameră" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Este necesar accesul la cameră" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Anulați reactivarea și deconectați-vă" msgid "Cancel reply" msgstr "Anulare răspuns" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Anulare căutare" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Modificările la pachetul de pornire nu se vor reflecta în listă după creare. Lista va fi o copie independentă." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Conversație amuțită" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Conversația nu a fost găsită." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Opțiuni conversație" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Proprietarii conversațiilor nu pot părăsi o conversație de grup." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Destinatarul conversației nu este urmărit de expeditor." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Inbox cerere de conversație" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Cereri de conversație" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Setări conversație" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Conversație dezamuțită" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Conversații" @@ -2837,7 +2808,7 @@ msgstr "Alegeți metoda de verificare a domeniului" msgid "Choose Feeds" msgstr "Alegeți fluxuri" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Alegeți pentru mine" @@ -2854,7 +2825,7 @@ msgstr "Alegeți persoane" msgid "Choose post languages" msgstr "Selectați limbile postării" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Alegeți această culoare ca avatar" @@ -2879,7 +2850,7 @@ msgstr "Alegeți propria cronologie! Fluxurile create de comunitate vă ajută s msgid "Choose your password" msgstr "Alegeți-vă parola" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Alegeți-vă numele de utilizator" @@ -2966,7 +2937,7 @@ msgstr "Faceți clic aici pentru a vizualiza linkul de invitație pentru aceast msgid "Click to open tag menu for {0}" msgstr "Faceți clic pentru a deschide meniul de etichete pentru {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Faceți clic pentru a reîncerca mesajul eșuat" @@ -3003,7 +2974,7 @@ msgstr "Faceți clic pentru a reîncerca mesajul eșuat" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Faceți clic pentru a reîncerca mesajul eșuat" msgid "Close" msgstr "Închidere" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Închideți dialogul activ" @@ -3047,7 +3018,7 @@ msgstr "Închidere banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Închideți vizualizatorul de imagini" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Închideți meniul" @@ -3090,7 +3061,7 @@ msgstr "Închideți bannerul cu cereri primite" msgid "Close this dialog" msgstr "Închideți acest dialog" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Închideți fereastra de bun venit" @@ -3098,7 +3069,7 @@ msgstr "Închideți fereastra de bun venit" msgid "Closes password update alert" msgstr "Închideți alerta pentru actualizarea parolei" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Închide compozitorul de postări și elimină ciorna" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Culoare" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mod culoare" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Benzi Desenate" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Regulile Comunității" @@ -3141,7 +3112,7 @@ msgstr "Regulile Comunității" msgid "Complete onboarding and start using your account" msgstr "Finalizați înregistrarea și începeți să vă folosiți contul" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Finalizați provocarea" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Compuneți o nouă postare" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Compuneți postări de până la {0, plural, one {} few {# caractere}other {# de caractere}} lungime" @@ -3160,11 +3131,11 @@ msgstr "Compuneți postări de până la {0, plural, one {} few {# caractere}oth msgid "Compose reply" msgstr "Compunere răspuns" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Se comprimă GIF-ul..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Se comprimă videoclipul..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Contactați echipa noastră de asistență" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contactați asistența" @@ -3253,7 +3224,7 @@ msgstr "Conținut & media" msgid "Content and media" msgstr "Conținut și media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Conținut și media" @@ -3265,10 +3236,6 @@ msgstr "Conținut blocat" msgid "Content filters" msgstr "Filtre de conținut" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Conținut din întreaga rețea care credem că v-ar plăcea." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Limbi pentru conținut" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Conținut care promovează sau prezintă autovătămarea" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Avertisment privind conținutul" msgid "Content warnings" msgstr "Avertismente privind conținutul" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fundal meniu contextual, faceți clic pentru a închide meniul." @@ -3302,7 +3269,7 @@ msgstr "Fundal meniu contextual, faceți clic pentru a închide meniul." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Continuați firul..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continuați la numele grupului" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Conversația nu a fost găsită." msgid "Copied build version to clipboard" msgstr "Versiunea de compilare a fost copiată în clipboard" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Link copiat în clipboard" @@ -3376,7 +3343,7 @@ msgstr "Link copiat în clipboard" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Copiere parolă de aplicație" msgid "Copy at:// URI" msgstr "Copiere at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiere DID autor" @@ -3449,10 +3416,10 @@ msgstr "Copiere Link" msgid "Copy link to list" msgstr "Copiere link listă" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiere link postare" @@ -3470,8 +3437,8 @@ msgstr "Copiere link pachet de pornire" msgid "Copy message text" msgstr "Copiere mesaj text" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiere at:// URI postare" @@ -3490,7 +3457,7 @@ msgstr "Copiați valoarea înregistrării TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica Privind Drepturile de Autor" @@ -3540,11 +3507,11 @@ msgstr "Nu s-au putut urmări toate potrivirile. {0}" msgid "Could not leave chat" msgstr "Nu s-a putut părăsi conversația" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Nu s-a putut părăsi conversația." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nu s-a putut încărca fluxul" @@ -3562,7 +3529,7 @@ msgstr "Nu s-a putut încărca profilul" msgid "Could not mute chat" msgstr "Nu s-a putut amuții conversația" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Nu s-a putut elimina membrul." @@ -3606,8 +3573,8 @@ msgstr "vaci porci" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Creare" @@ -3624,26 +3591,26 @@ msgstr "Creați o listă din acest pachet de pornire" msgid "Create a QR code for a starter pack" msgstr "Creați un cod QR pentru un pachet de pornire" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Creați un pachet de pornire" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Creați un pachet de pornire" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Creați un pachet de pornire pentru mine" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Creare cont" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Creați un cont" @@ -3666,15 +3633,15 @@ msgstr "Creați un cont" msgid "Create an account without using this starter pack" msgstr "Creați un cont fără a utiliza acest pachet de pornire" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Creați un avatar în schimb" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Creați altul" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Creare conversație de grup" @@ -3743,7 +3710,7 @@ msgstr "Cultură" msgid "Current beta features" msgstr "Caracteristici beta curente" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Conversația curentă" @@ -3770,8 +3737,8 @@ msgstr "Substanțe periculoase sau abuz de droguri" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Întunecată" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Întunecată" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Temă întunecată" @@ -3814,7 +3781,7 @@ msgstr "Refuzați această sugestie de limbă" msgid "Deepfake adult content" msgstr "Conținut pentru adulți Deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Implicit" @@ -3894,7 +3861,7 @@ msgstr "Șterge-mi contul" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Ștergere postare" @@ -3988,7 +3955,7 @@ msgstr "Dialog: ajustați cine poate interacționa cu această postare" msgid "Dialog: Set search filters" msgstr "Dialog: Setare filtre de căutare" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Luminozitate redusă" @@ -4002,7 +3969,7 @@ msgstr "Dezactivare" msgid "Disable 2FA" msgstr "Dezactivați A2F" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Dezactivare subtitrări" @@ -4045,9 +4012,9 @@ msgstr "Dezactivat" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Renunțare" msgid "Discard changes?" msgstr "Renunțați la modificări?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Renunțați la schiță?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Renunțați la postare?" @@ -4079,6 +4046,10 @@ msgstr "Deconectare conversație Germ" msgid "Discourage apps from showing my account to logged-out users" msgstr "Descurajați aplicațiile să-mi arate contul utilizatorilor deconectați" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Descoperiți fluxuri" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Descurajați aplicațiile să-mi arate contul utilizatorilor deconectaț msgid "Discover new custom feeds" msgstr "Descoperiți fluxuri personalizate noi" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Descoperiți fluxuri noi" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descoperiți fluxuri noi" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Închidere" @@ -4103,19 +4070,19 @@ msgstr "Închidere" msgid "Dismiss banner" msgstr "Închideți bannerul" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Închidere eroare" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Închideți ghidul introductiv" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Îndepărtați interesele" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Respingere banner eveniment în direct" @@ -4142,7 +4109,7 @@ msgstr "Afișați mai mare insignele de text alternativ" msgid "Display name" msgstr "Nume afișat" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Renunțați la troli și la titluri senzaționale. Găsiți oameni autentici și conversații care contează pentru dvs." @@ -4205,8 +4172,8 @@ msgstr "Nu vă faceți griji! Toate mesajele existente și setările sunt salvat #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Nu vă faceți griji! Toate mesajele existente și setările sunt salvat msgid "Done" msgstr "Finalizare" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Atingeți de două ori sau apăsați lung mesajul pentru a adăuga o reacție" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Atingeți de două ori pentru a închide dialogul" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Atingeți de două ori pentru a aprecia" @@ -4328,6 +4295,7 @@ msgstr "Tulburări de alimentație" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Editare imagine" msgid "Edit interaction settings" msgstr "Editare setări de interacțiune" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Editare interese" @@ -4397,7 +4365,7 @@ msgstr "Editare stare în direct" msgid "Edit moderation list" msgstr "Editare listă de moderare" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editați fluxurile mele" @@ -4406,6 +4374,11 @@ msgstr "Editați fluxurile mele" msgid "Edit name" msgstr "Editare nume" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Editați notificările de la {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editare persoane" @@ -4444,7 +4417,7 @@ msgstr "Editare listă de utilizatori" msgid "Edit who can reply" msgstr "Editați cine poate răspunde" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Editați-vă pachetul de pornire" @@ -4500,8 +4473,8 @@ msgstr "Încorporare cod HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Încorporare postare" @@ -4509,7 +4482,7 @@ msgstr "Încorporare postare" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Încorporați această postare în website-ul dvs. Pur și simplu copiați următorul fragment și lipiți-l în codul HTML al website-ului dvs." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Cititor video încorporat" @@ -4533,7 +4506,7 @@ msgstr "Activare conținut pentru adulți" msgid "Enable beta features" msgstr "Activare caracteristici beta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Activare subtitrări" @@ -4550,12 +4523,13 @@ msgstr "Activare conținut media extern" msgid "Enable media players for" msgstr "Activare cititor media pentru" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activați notificările pentru un cont accesând profilul acestuia și apăsând pe <0>pictograma clopoțel <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Activare notificări push" @@ -4581,7 +4555,7 @@ msgstr "Activare videoclipuri în tendințe în fluxul dvs. Descoperă" msgid "Enabled" msgstr "Activat" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Sfârșitul fluxului" @@ -4608,7 +4582,7 @@ msgstr "Introduceți un cuvânt sau o etichetă" msgid "Enter code" msgstr "Introduceți codul" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Intrați în modul Ecran complet" @@ -4650,11 +4624,11 @@ msgstr "Introduceți-vă numele de utilizator și parola" msgid "Enters full screen" msgstr "Intrați în modul Ecran complet" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Divertisment" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Eroare" @@ -4684,7 +4658,7 @@ msgstr "A apărut o eroare la salvarea fișierului" msgid "Error receiving captcha response." msgstr "Eroare la primirea răspunsului captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Eroare: {error}" @@ -4696,8 +4670,8 @@ msgstr "Toată lumea poate răspunde" msgid "Everybody can reply to this post." msgstr "Toată lumea poate răspunde la această postare." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Toți" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Toți" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Toate celelalte" @@ -4738,7 +4712,7 @@ msgstr "Excludeți utilizatorii pe care îi urmăriți" msgid "Excludes users you follow" msgstr "Exclude utilizatorii pe care îi urmăriți" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Ieșire ecran complet" @@ -4755,11 +4729,11 @@ msgstr "Extindeți lista de utilizatori" msgid "Expand or collapse the full post you are replying to" msgstr "Extindeți sau restrângeți postarea completă la care răspundeți" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Extindeți textul postării" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Extinde sau restrânge text postare" @@ -4802,15 +4776,15 @@ msgstr "Conținut media explicit sau potențial deranjant." msgid "Explicit sexual images." msgstr "Imagini sexuale explicite." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorare" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Explorați aplicația" @@ -4844,7 +4818,7 @@ msgstr "Conținut media extern" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Conținut media extern poate permite website-urilor să colecteze informații despre dvs. și dispozitivul dvs. Nicio informație nu este trimisă sau solicitată până nu apăsați butonul „redare”." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferințe conținut media extern" @@ -4886,7 +4860,7 @@ msgstr "Nu s-a putut modifica identificatorul. Vă rugăm să încercați din no #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Copierea link-ului a eșuat" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Nu s-a reușit părăsirea conversației de grup" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Încărcarea conversațiilor a eșuat" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Încărcarea fluxurilor a eșuat" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Încărcarea preferințelor fluxurilor a eșuat" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Setările de notificare nu au putut fi încărcate." @@ -5012,14 +4987,14 @@ msgstr "Nu s-a putut încărca preferința." msgid "Failed to load profiles" msgstr "Încărcarea profilurilor a eșuat" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Încărcarea fluxurilor sugerate a eșuat" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Încărcarea sugestiilor de urmărire a eșuat" @@ -5027,12 +5002,12 @@ msgstr "Încărcarea sugestiilor de urmărire a eșuat" msgid "Failed to lock group chat" msgstr "Blocarea conversației de grup a eșuat" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Nu s-a reușit marcarea tuturor conversațiilor ca fiind citite" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Nu s-a putut anula solicitarea. Vă rugăm să încercați din nou." msgid "Failed to resolve location. Please try again." msgstr "Nu s-a putut determina locația. Vă rugăm să încercați din nou." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Nu s-a putut salva schița" @@ -5191,7 +5166,7 @@ msgstr "Cont fals sau bot" msgid "False information about elections" msgstr "Informații false despre alegeri" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Flux" @@ -5212,7 +5187,7 @@ msgstr "Creator flux" msgid "Feed identifier" msgstr "Identificator flux" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Meniu flux" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback trimis operatorului fluxului" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Fluxuri actualizate!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Fluxuri care credem că v-ar putea plăcea." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Preluare actualizare" @@ -5273,11 +5244,11 @@ msgstr "Preluare actualizare" msgid "File saved successfully!" msgstr "Fișier salvat cu succes!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Filtrare după autor" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrare după autor (în prezent: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Filtrați această căutare după {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrați cine poate opta să primească notificări pentru activitatea dvs." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrați de la cine primiți notificări" @@ -5352,8 +5323,8 @@ msgstr "Găsiți conturi de urmărit" msgid "Find and invite friends" msgstr "Găsire și invitare prieteni" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Găsire contacte" @@ -5387,7 +5358,7 @@ msgstr "Găsiți-vă prietenii" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Găsiți-vă prietenii pe Bluesky verificându-vă numărul de telefon și potrivindu-vă cu contactele. Noi vă protejăm informațiile, iar dvs. controlați ce se întâmplă în continuare. <0>Aflați mai multe" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Găsiți-vă oamenii" @@ -5429,7 +5400,7 @@ msgstr "Focalizați câmpul de căutare" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Urmăriți pe {0}" msgid "Follow {displayName}" msgstr "Urmărire pe {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Urmăriți pe {handle}" @@ -5453,11 +5424,11 @@ msgstr "Urmăriți pe {handle}" msgid "Follow 10 accounts" msgstr "Urmăriți 10 conturi" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Urmăriți 10 persoane pentru a începe" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Urmăriți 7 conturi" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Urmăritorii se pot alătura" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Urmăritori ai lui @{0} pe care îi știți" @@ -5544,7 +5515,7 @@ msgstr "Urmăritori pe care îi știți" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Urmăriți pe {0}" msgid "Following {displayName}" msgstr "Urmăriți pe {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Urmăriți pe {handle}" @@ -5578,21 +5549,21 @@ msgstr "Urmăriți pe {handle}" msgid "Following feed preferences" msgstr "Preferințe flux Urmăriți" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferințe flux urmăriți" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Vă urmărește" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Font" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Dimensiune font" @@ -5612,13 +5583,13 @@ msgstr "Din motive de securitate, va trebui să trimitem un cod de confirmare la msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Din motive de securitate, nu veți mai putea vizualiza acest lucru din nou. Dacă pierdeți această parolă de aplicație, va trebui să generați una nouă." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pentru cea mai bună experiență, vă recomandăm să utilizați fontul temă." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Pentru Dvs." @@ -5628,7 +5599,7 @@ msgstr "Pentru Dvs." msgid "Forever" msgstr "Permanent" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Uitați de zgomot" @@ -5647,11 +5618,13 @@ msgstr "Ați uitat parola?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Patru bule de mesaj care reprezintă o conversație de grup. Primul mesaj: „Ai auzit noutatea? Bluesky are acum conversații de grup!” Al doilea mesaj: „Doamne, nu se poate” Al treilea mesaj: „Uau, 50 de persoane într-o singură conversație!” Al patrulea mesaj: „Poți trimite și linkuri de invitație!”" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Eliberați-vă fluxul" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De la" @@ -5674,7 +5647,7 @@ msgstr "De la <0/>" msgid "From these people" msgstr "De la aceste persoane" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generați un pachet de pornire" @@ -5718,39 +5691,39 @@ msgstr "Obțineți acces timpuriu la caracteristicile experimentale pe care le t msgid "Get help" msgstr "Obțineți ajutor" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Primiți notificări pentru înscrieri cu pachetele de pornire, verificări și alte activități." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Primiți notificări când oamenii vă urmăresc." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Primiți notificări când oamenii apreciază postările dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Primiți notificări când oamenii vă apreciază repostările." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Primiți notificări când oamenii vă menționează." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Primiți notificări când oamenii citează postările dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Primiți notificări când oamenii răspund la postările dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Primiți notificări când oamenii repostează postările dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Primiți notificări când oamenii vă repostează repostările." @@ -5762,15 +5735,15 @@ msgstr "Primiți notificări când oamenii vă trimit cereri de mesaj." msgid "Get notifications when people send you messages." msgstr "Primiți notificări când oamenii vă trimit mesaje." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Primiți notificări când există activitate la postările la care sunteți abonat." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Primiți notificări despre postări noi" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Primiți notificări despre postările și răspunsurile de la conturile pe care le alegeți." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Primiți notificări despre postările noi de la {name}" @@ -5799,11 +5772,11 @@ msgstr "Începeți" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF încărcat" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Oferiți profilului dvs. o față" @@ -5813,20 +5786,20 @@ msgstr "Glorificarea violenței" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Intrați în direct pentru" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Mergeți la profilul lui {0}" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Numele conversației de grup a fost actualizat" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Setări conversație în grup" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Conversațiile de grup pot avea maximum {0, plural, one {} few {# persoane}other {# de persoane}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Grupul este blocat" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Numele grupului" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Numele grupului este prea lung. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {} few {Numărul maxim de caractere este #.}other {Numărul maxim de caractere este #.}}" @@ -6077,7 +6051,7 @@ msgstr "Activități dăunătoare sau cu risc ridicat" msgid "Harming or endangering minors" msgstr "Exploatarea minorilor sau punerea lor în pericol" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "Aveți un cod? <0>Faceți clic aici." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Am greșit locația dvs.? <0>Atingeți aici pentru a vă actualiza locația cu GPS-ul." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Aveți dificultăți?" @@ -6114,7 +6088,7 @@ msgstr "Păstrat de Bluesky timp de 7 zile pentru a preveni abuzurile, apoi ște msgid "Help" msgstr "Ajutor" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Ajutați oamenii să știe că nu sunteți un robot încărcând o imagine sau creând un avatar." @@ -6140,7 +6114,7 @@ msgstr "Salut!" msgid "Hidden" msgstr "Ascuns" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Ascuns de setările dvs. de moderare." @@ -6148,9 +6122,9 @@ msgstr "Ascuns de setările dvs. de moderare." msgid "Hidden list" msgstr "Listă ascunsă" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Listă ascunsă" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Ascundere" @@ -6198,7 +6172,7 @@ msgstr "Ascundere răspuns pentru toată lumea" msgid "Hide reply for me" msgstr "Ascundere răspuns pentru mine" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ascundeți acest card" @@ -6218,12 +6192,12 @@ msgstr "Ascundeți acest răspuns?" msgid "Hide translation" msgstr "Ascundere traducere" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Ascundeți subiectele în tendințe" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Ascundeți subiectele în tendințe?" @@ -6240,7 +6214,7 @@ msgstr "Ascundere listă de utilizatori" msgid "Hide verification badges" msgstr "Ascundere insigne de verificare" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Ascundere conținut" @@ -6293,8 +6267,8 @@ msgstr "Hmmmm, nu am putut încărca acest serviciu de moderare." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Stați așa! Oferim acces la videoclipuri treptat și încă sunteți pe lista de așteptare. Verificați din nou în curând!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Furnizor de găzduire: {0}" msgid "Hosting provider: Bluesky" msgstr "Furnizor de găzduire: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Fierbinți" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Cum funcționează:" @@ -6409,6 +6379,7 @@ msgstr "Dacă vă actualizați adresa de e-mail, e-mailul A2F va fi dezactivat." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Dacă doriți să vă modificați parola, vă vom trimite un cod pentru a verifica dacă acesta este contul dvs." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Dacă doriți să restricționați cine poate primi notificări pentru activitatea contului dvs., puteți modifica acest lucru în <0>Setări → Confidențialitate și securitate." @@ -6548,7 +6519,7 @@ msgstr "În aplicație, Push, Toată lumea" msgid "In-app, push, people you follow" msgstr "În aplicație, Push, Persoane pe care le urmăriți" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Inbox gol" @@ -6560,6 +6531,7 @@ msgstr "Inbox zero!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Sunteți doar dvs. acum! Adăugați mai multe persoane la pachetul dvs. de pornire căutând mai sus." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID loc de muncă: {0}" @@ -6816,8 +6788,8 @@ msgstr "Alăturați-vă conversației" msgid "Journalism" msgstr "Jurnalism" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continuați editarea" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Website-ul KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etichetat de {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etichetat de autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etichete" @@ -6852,7 +6824,7 @@ msgstr "Etichete adăugate" msgid "Labels applied to this post" msgstr "Etichete aplicate pe această postare" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etichetele sunt adnotări pentru utilizatori și conținut. Ele pot fi utilizate pentru a ascunde, avertiza și categoriza rețeaua." @@ -6864,7 +6836,7 @@ msgstr "Etichete de pe contul dvs." msgid "Language" msgstr "Limbă" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Setări limbă" @@ -6874,7 +6846,7 @@ msgstr "Setări limbă" msgid "Languages" msgstr "Limbi" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Mai mare" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Ultima inițiere chiar acum" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Cele mai recente" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Aflați mai multe" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Aflați mai multe" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Aflați mai multe despre <0>cum să folosiți căutarea avansată." @@ -6937,8 +6909,8 @@ msgstr "Aflați mai multe despre importarea contactelor" msgid "Learn more about self hosting your PDS." msgstr "Aflați mai multe despre găzduirea automată a SDP-ului dvs." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Aflați mai multe despre moderarea aplicată acestui conținut" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Aflați mai multe despre aceste modificări și cum să vă împărtășiți gândurile cu noi citind postarea noastră pe blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Aflați mai multe despre acest avertisment" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Aflați mai multe în <0>setările contului." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Aflați mai multe." @@ -6993,8 +6965,8 @@ msgstr "Părăsire" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Părăsiți Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Părăsirea acestei conversații o va bloca permanent și nu vă veți mai putea alătura din nou." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Ați părăsit conversația de grup." @@ -7042,7 +7014,7 @@ msgstr "Ați părăsit conversația de grup." msgid "left to go." msgstr "rămas de făcut." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Doresc să aleg" @@ -7057,7 +7029,7 @@ msgstr "Să începem!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Luminoasă" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Luminoasă" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Apreciere" @@ -7076,7 +7048,7 @@ msgstr "Apreciere" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Apreciere ({0, plural, one {o apreciere} few {# aprecieri} other {# de aprecieri}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Apreciați 10 postări" @@ -7085,7 +7057,7 @@ msgstr "Apreciați 10 postări" msgid "Like 10 posts to train the Discover feed" msgstr "Apreciați 10 postări pentru a instrui fluxul Descoperă" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Apreciați acest flux" @@ -7093,8 +7065,8 @@ msgstr "Apreciați acest flux" msgid "Like this labeler" msgstr "Apreciați acest etichetator" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Apreciat de" @@ -7111,27 +7083,45 @@ msgstr "Apreciat De" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Apreciat de {0, plural, one {un utilizator} few {# utilizatori} other {# de utilizatori}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Apreciat de {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Apreciat de {0} și {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Apreciat de {likeCount, plural, one {un utilizator} few {# utilizatori} other {# de utilizatori}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Aprecieri" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Aprecieri pentru repostările dvs." -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Aprecieri la această postare" @@ -7144,7 +7134,7 @@ msgstr "Liniar" msgid "Link copied to clipboard" msgstr "Link copiat în clipboard" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Listă" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listă dezamuțită" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "ÎN DIRECT" msgid "Live event happening now: {0}" msgstr "Eveniment în direct care se întâmplă acum: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Eveniment în direct ascuns" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Eveniment în direct afișat" @@ -7279,12 +7269,12 @@ msgstr "Caracteristica „în direct” este în beta" msgid "Live link" msgstr "Link transmisiune în direct" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Încărcați mai multe" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Încărcați mai multe fluxuri sugerate" @@ -7292,8 +7282,8 @@ msgstr "Încărcați mai multe fluxuri sugerate" msgid "Load new notifications" msgstr "Încărcați notificări noi" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Blocați această conversație de grup" msgid "Locked" msgstr "Blocat" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Jurnal" @@ -7387,7 +7377,7 @@ msgstr "GIF-uri dragoste" msgid "Make adjustments to email settings for your account" msgstr "Ajustați setările de e-mail pentru contul dvs." -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Faceți unul pentru mine" @@ -7418,15 +7408,15 @@ msgstr "Manual" msgid "Mark all as read" msgstr "Marcați toate ca citite" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marcați toate conversațiile ca citite" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Marcare ca citit" msgid "Marked all as read" msgstr "Marcate toate ca citite" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Toate conversațiile au fost marcate ca citite" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Toate cererile au fost marcate ca citite" @@ -7456,8 +7446,12 @@ msgstr "Toate cererile au fost marcate ca citite" msgid "Maybe later" msgstr "Poate mai târziu" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Eu" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Conținut media" @@ -7475,7 +7469,7 @@ msgstr "Conținut media stocat pe un alt dispozitiv" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Conținut media care poate fi deranjant sau neadecvat pentru anumite audiențe." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membru eliminat din conversația de grup." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "utilizatori menționați" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mențiuni" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mesaj șters" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Mesajul nu a putut fi trimis." @@ -7563,15 +7557,15 @@ msgstr "Mesajul este prea lung ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Opțiuni mesaj" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mesaje" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Mesajele de la această persoană sunt ascunse cât timp ea vă blochează." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Mesajele de la această persoană sunt ascunse cât timp o blocați." @@ -7592,7 +7586,7 @@ msgstr "Conținut înșelător" msgid "Missing media" msgstr "Conținut media lipsă" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderare" @@ -7636,7 +7630,7 @@ msgstr "Listă de moderare actualizată" msgid "Moderation lists" msgstr "Liste de moderare" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liste de moderare" @@ -7645,7 +7639,7 @@ msgstr "Liste de moderare" msgid "moderation settings" msgstr "setări de moderare" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Stări moderare" @@ -7786,7 +7780,7 @@ msgstr "Amuțită" msgid "Muted accounts" msgstr "Conturi amuțite" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Conturi Amuțite" @@ -7867,7 +7861,6 @@ msgstr "Doriți să raportați o încălcare a drepturilor de autor, o solicitar msgid "Nevermind, create a handle for me" msgstr "Nu mai contează, creează-mi un nume de utilizator" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Noi" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {Postare nouă} few {Postări noi} other {Post #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Conversație nouă" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Caracteristică nouă" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Urmăritori noi" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Conversație de grup nouă" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Conversație de grup nouă" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Conversație de grup nouă cu:" @@ -7966,13 +7959,13 @@ msgstr "Listă nouă" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Cereri de mesaje noi" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Mesaje noi" @@ -7982,12 +7975,12 @@ msgstr "Mesaje noi" msgid "New password" msgstr "Parolă nouă" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Postare nouă" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Cele mai noi răspunsuri primele" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Știri" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Imaginea următoare" msgid "Night" msgstr "Noapte" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Fără reclame, fără urmărire invazivă, fără capcane de implicare. Bluesky vă respectă timpul și atenția." @@ -8098,7 +8091,7 @@ msgstr "Fără expirare setată" msgid "No feeds found. Try searching for something else." msgstr "Nu s-au găsit fluxuri. Încercați să căutați altceva." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Niciun urmăritor încă" @@ -8118,7 +8111,7 @@ msgstr "Nici o imagine" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Încă nu există aprecieri" @@ -8135,7 +8128,7 @@ msgstr "Nicio listă" msgid "No longer following {0}" msgstr "Nu mai urmăriți pe {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Niciun conținut media încă" @@ -8143,7 +8136,7 @@ msgstr "Niciun conținut media încă" msgid "No messages yet" msgstr "Niciun mesaj încă" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Gata cu algoritmii plini cu informații inutile. Găsiți fluxuri care funcționează pentru dvs., nu împotriva dvs." @@ -8184,12 +8177,12 @@ msgstr "Nimeni nu poate trimite mesaje" msgid "No posts here" msgstr "Nici o postare aici" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Nicio postare încă" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Încă nu există citate" @@ -8202,7 +8195,7 @@ msgstr "Încă nu există GIF-uri recente. Alegeți unul pentru a-l vedea aici." msgid "No replies" msgstr "Fără răspunsuri" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Niciun răspuns încă" @@ -8217,13 +8210,13 @@ msgstr "Niciun rezultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Niciun rezultat" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Niciun rezultat pentru „{0}”." @@ -8236,23 +8229,23 @@ msgstr "Nu s-au găsit rezultate" msgid "No results found for \"{query}\"" msgstr "Niciun rezultat găsit pentru „{query}”" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "Nu s-au găsit rezultate pentru „<0>{query}” cu filtrele de căutare avansată aplicate." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Niciun rezultat găsit pentru „<0>{query}”." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Nu s-au găsit rezultate pentru interogarea dvs. cu filtrele de căutare avansată aplicate." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Niciun rezultat." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Niciun pachet de pornire încă" @@ -8265,7 +8258,7 @@ msgstr "Nu, mulțumesc" msgid "No translation received from your device." msgstr "Nicio traducere primită de la dispozitivul dvs." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Niciun videoclip încă" @@ -8278,7 +8271,7 @@ msgstr "Nimeni" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nimeni nu a apreciat asta încă. Poate ar trebui să fiți primul!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nimeni nu a citat asta încă. Poate ar trebui să fiți primul!" @@ -8298,6 +8291,10 @@ msgstr "Imagini intime neconsensuale" msgid "Non-sexual Nudity" msgstr "Nuditate non-sexuală" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Nimic" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Indisponibil pe această platformă." msgid "Not followed by anyone you’re following" msgstr "Nu este urmărit de cineva pe care urmăriți" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nu a fost găsit" @@ -8333,7 +8330,7 @@ msgstr "Notă despre partajare" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Notă: Bluesky este o rețea deschisă și publică. Această setare limitează doar vizibilitatea conținutului dvs. pe aplicația și pe site-ul Bluesky, iar alte aplicații ar putea să nu respecte această setare. Conținutul dvs. poate fi afișat în continuare utilizatorilor deconectați de alte aplicații și site-uri web." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Notă: Această postare este vizibilă numai pentru utilizatorii conectați." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Nimic salvat încă" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Setări pentru notificări" @@ -8353,11 +8350,12 @@ msgstr "Setări pentru notificări" msgid "Notification sounds" msgstr "Sunete notificare" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Oh, nu!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Ok" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Resetare înregistrare" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Unul dintre destinatarii selectați nu permite conversații de grup." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Unul dintre destinatarii selectați v-a blocat și nu-i se pot scrie mesaje." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Unei sau mai multor GIF-uri le lipsește textul alternativ." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Unei sau mai multor imagini le lipsește textul alternativ." @@ -8454,11 +8454,11 @@ msgstr "Unul sau mai multe dintre fișierele selectate nu sunt acceptate." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Unul sau mai multe dintre fișierele selectate sunt prea mari. Dimensiunea maximă este de {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Una sau mai multe postări sunt prea lungi pentru a fi salvate ca o schiță. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Numărul maxim de caractere este de un caracter.} few {Numărul maxim de caractere este de # caractere.} other {Numărul maxim de caractere este de # de caractere.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Unei sau mai multor videoclipuri le lipsește textul alternativ." @@ -8471,7 +8471,7 @@ msgstr "Doar {0} poate răspunde." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Doar {0} din {1} {2, plural, one {imagine a fost adăugată} few {imagini au fost adăugate} other {de imagini au fost adăugate}}; limita este {MAX_GALLERY_IMAGES}" @@ -8519,7 +8519,7 @@ msgstr "Doar postări cu videoclipuri" msgid "Only replies" msgstr "Doar răspunsuri" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Doar fișierele WebVTT (.vtt) sunt acceptate" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ups, acest profil nu există. Încercați să scanați altul." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Hopa!" @@ -8544,7 +8544,7 @@ msgstr "Hopa!" msgid "Open advanced search options" msgstr "Deschidere opțiuni de căutare avansată" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Deschideți creatorul de avatar" @@ -8570,21 +8570,22 @@ msgstr "Deschideți opțiunile conversației" msgid "Open draft" msgstr "Deschideți schița" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Deschideți meniul sertar" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Deschideți selectorul de emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Deschideți ecranul cu informații despre flux" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Deschideți meniul de opțiuni flux" @@ -8627,7 +8628,7 @@ msgstr "Deschideți pagina de depanare pentru moderare" msgid "Open muted words and tags settings" msgstr "Deschideți cuvinte amuțite și setări etichete" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Deschidere pachet" @@ -8699,7 +8700,7 @@ msgstr "Deschide detalii suplimentare pentru o intrare de depanare" msgid "Opens alt text dialog" msgstr "Deschide dialogul de text alternativ" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Deschide camera pe dispozitiv" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Deschide interfața pentru a crea un nou cont Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Deschide procesul pentru a vă conecta la contul dvs. Bluesky existent" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Parolă actualizată!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pauză" @@ -8925,12 +8926,12 @@ msgstr "Pauză" msgid "Pause GIF" msgstr "Puneți în pauză GIF-ul" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pauză videoclip" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Persoane" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Persoanele urmărite de {ownerName} pot solicita să se alăture" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persoane urmărite de @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persoane care urmăresc @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Persoane pe care le urmăriți" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Persoanele pe care le urmăresc pot solicita să se alăture" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Persoane pe care le urmăriți" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Imagini destinate adulților." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixați fluxul" @@ -9034,7 +9035,7 @@ msgstr "Fixați fluxul" msgid "Pin to home" msgstr "Fixare la acasă" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixare la Acasă" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Fixat" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Fixat {0} la pagina acasă" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Fixat la fluxurile dvs." #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Redare" @@ -9076,8 +9077,8 @@ msgstr "Redați {0}" msgid "Play GIF" msgstr "Redare GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Redați videoclipul" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Vă rugăm să vă scrieți mesajul mai jos:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politică" @@ -9269,7 +9270,7 @@ msgstr "Politică" msgid "Porn" msgstr "Pornografie" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Postare" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Postare" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Postați o fotografie" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Postați un videoclip" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Postați-le pe toate" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Postați oricum" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Postare blocată" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Postare de @{0}" @@ -9340,7 +9341,7 @@ msgstr "Postare ascunsă de dvs." msgid "Post interaction settings" msgstr "Setări interacțiune postare" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Setări de interacțiune postare" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Postare fixată" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Postare salvată" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Fixarea postării a fost anulată" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postări" @@ -9398,6 +9396,10 @@ msgstr "Postările pot fi amuțite în funcție de text, etichete sau ambele. V msgid "Posts hidden" msgstr "Postări ascunse" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Postări, Răspunsuri" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potențial înșelător" @@ -9449,20 +9451,21 @@ msgstr "Confidențialitate" msgid "Privacy and security" msgstr "Confidențialitate și securitate" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Confidențialitate și securitate" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Setări de confidențialitate și securitate" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Politica de Confidențialitate" msgid "Privacy violation of a minor" msgstr "Încălcarea confidențialității unui minor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Se procesează GIF-ul..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Se procesează videoclipul..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Liste publice, care pot fi partajate, cu utilizatori de amuțit sau blocat în bloc." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicați postarea" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicați postările" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicați răspunsurile" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicați răspunsul" @@ -9599,12 +9602,12 @@ msgstr "Postări citat dezactivate" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citate" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citatele acestei postări" @@ -9647,7 +9650,7 @@ msgstr "Reactivați-vă contul" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Citiți încă {0, plural, one {un răspuns} few {# răspunsuri} other {# de răspunsuri}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Citiți despre cum să utilizați filtrele de căutare avansată" @@ -9657,11 +9660,11 @@ msgstr "Citiți despre cum să utilizați filtrele de căutare avansată" msgid "Read blog post" msgstr "Citiți postarea de pe blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Citiți mai puțin" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Citiți mai multe" @@ -9687,11 +9690,11 @@ msgstr "Citiți Politica de Confidențialitate Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Citiți Termenii de Serviciu Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Conversații reale." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Oameni reali." @@ -9721,10 +9724,6 @@ msgstr "Căutări recente" msgid "Recently used" msgstr "Utilizate recent" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomandat" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconectare" @@ -9748,7 +9747,7 @@ msgstr "Respingere cerere de conversație" msgid "Reject join request" msgstr "Respingere cerere de alăturare" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Reîncărcați conversațiile" @@ -9766,7 +9765,7 @@ msgstr "Reîncărcați conversațiile" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Eliminare" @@ -9792,8 +9791,8 @@ msgstr "Eliminați pe {displayName}?" msgid "Remove {q}" msgstr "Eliminare {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Eliminare cont" @@ -9845,15 +9844,15 @@ msgstr "Eliminare filtru" msgid "Remove from chat" msgstr "Eliminare din conversație" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Eliminați din fluxurile mele" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Eliminați din acces rapid?" @@ -9862,7 +9861,7 @@ msgstr "Eliminați din acces rapid?" msgid "Remove from saved feeds" msgstr "Eliminați din fluxurile salvate" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Eliminare din postări salvate" @@ -9880,8 +9879,8 @@ msgstr "Eliminare imagine" msgid "Remove live status" msgstr "Eliminare stare în direct" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Eliminare membru" @@ -9943,7 +9942,7 @@ msgstr "Eliminat din listă" msgid "Removed from saved feeds" msgstr "Eliminat din fluxurile salvate" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Eliminat din postări salvate" @@ -9952,7 +9951,7 @@ msgstr "Eliminat din postări salvate" msgid "Removed from starter pack" msgstr "Eliminat din pachetul de pornire" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Răspuns la dvs." -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Mesaj la care a răspuns {senderName}, atingeți pentru a derula la el" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Mesajul la care s-a răspuns a fost trimis înainte de a vă fi alăturat" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Mesaj la care s-a răspuns, atingeți pentru a derula la el" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Răspunsuri" @@ -10037,7 +10037,7 @@ msgstr "Răspunsurile la această postare sunt dezactivate." msgid "Reply" msgstr "Răspundeți" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Răspundeți" @@ -10098,8 +10098,8 @@ msgstr "Raportați conversația" msgid "Report dialog" msgstr "Dialog raportare" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Raportați fluxul" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Repostat de dvs." #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Repostări" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Repostări ale acestei postări" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Repostări ale repostărilor dvs." @@ -10253,7 +10253,7 @@ msgstr "Solicitat" msgid "Requests" msgstr "Cereri" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Reîncearcă ultima acțiune, care a eșuat" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Revine la acasă" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Revine la pagina anterioară" @@ -10446,27 +10446,27 @@ msgstr "Salvați ziua de naștere" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salvare modificări" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Salvați modificările?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Salvare schiță" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Salvați schița?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Salvați codul QR" msgid "Save these options for next time" msgstr "Salvați aceste opțiuni pentru data viitoare" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Salvare în fluxurile mele" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Fluxuri salvate" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Postări salvate" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Salvat în fluxurile dvs." @@ -10520,8 +10520,8 @@ msgstr "Salvat în fluxurile dvs." msgid "Say hello!" msgstr "Spuneți salut!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Spuneți salut cuiva" @@ -10535,7 +10535,7 @@ msgstr "Scanare" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Scanare cod QR" @@ -10543,15 +10543,15 @@ msgstr "Scanare cod QR" msgid "Science" msgstr "Știință" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Derulați spre stânga" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Derulați spre dreapta" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Derulați la mesajul la care s-a răspuns" @@ -10564,8 +10564,8 @@ msgstr "Derulați până sus" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Căutare" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Căutați în postările lui @{0}" @@ -10612,11 +10612,11 @@ msgstr "Căutați {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Căutați fluxuri pe care doriți să le sugerați altora." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Căutați mai multe conturi" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Căutați mai multe fluxuri" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Căutați GIF-uri" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Căutarea nu este disponibilă în prezent când sunteți deconectat" @@ -10709,6 +10709,7 @@ msgstr "Vedeți locuri de muncă la Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Vedeți mai multe" @@ -10716,8 +10717,12 @@ msgstr "Vedeți mai multe" msgid "See more suggested profiles" msgstr "Vedeți mai multe profiluri sugerate" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "Vizualizați mai multe subiecte în tendințe" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Vedeți conturile sugerate" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Glisor căutare. Folosiți tastele săgeți pentru a căuta înainte și înapoi și spațiu pentru redare/pauză" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Selectați categoria „{interestsDisplayName}”" @@ -10748,7 +10753,7 @@ msgstr "Selectare {0}" msgid "Select {langName}" msgstr "Selectați {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selectați o culoare" @@ -10764,11 +10769,11 @@ msgstr "Selectare cont" msgid "Select an app language" msgstr "Selectați o limbă pentru aplicație" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selectați un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selectați un emoji" @@ -10780,12 +10785,13 @@ msgstr "Selectați o opțiune" msgid "Select app language" msgstr "Selectați limba aplicației" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Selectați fișierul subtitrare (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Selectați conversația „{name}”" @@ -10826,7 +10832,7 @@ msgstr "Selectare GIF" msgid "Select GIF \"{0}\"" msgstr "Selectare GIF „{0}”" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Selectați membrii de conversație de grup" @@ -10864,7 +10870,7 @@ msgstr "Selectați limba principală" msgid "Select telephone code" msgstr "Selectați prefixul telefonic" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Selectați emoji-ul {emojiName} ca avatar" @@ -10945,7 +10951,8 @@ msgstr "Trimitere mesaj" msgid "Send post to {name}" msgstr "Trimitere postare către {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Trimitere postare către..." @@ -10963,12 +10970,12 @@ msgstr "Trimiteți mesajul de pe telefonul dvs." msgid "Send verification email" msgstr "Trimitere e-mail de verificare" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Trimitere prin mesaj direct" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Trimitere prin conversație" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Setați manual furnizorul de găzduire" msgid "Sets email for password reset" msgstr "Setează e-mailul pentru resetarea parolei" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Setări" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Setări pentru activitate de la alții" @@ -11036,49 +11043,49 @@ msgstr "Setări pentru activitate de la alții" msgid "Settings for allowing others to be notified of your posts" msgstr "Setări pentru a permite celorlalți să fie notificați despre postările dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Setări pentru notificări de aprecieri" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Setări pentru notificări de mențiuni" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Setări pentru notificări de urmăritor nou" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Setări pentru notificări pentru orice altceva" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Setări pentru notificări de aprecieri ale repostărilor dvs." #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Setări pentru notificări privind cererile de mesaje noi" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Setări pentru notificări privind mesaje noi" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Setări pentru notificări de repostări ale repostărilor dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Setări pentru notificări de citate" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Setări pentru notificări de răspuns" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Setări pentru notificări de repostare" @@ -11115,8 +11122,8 @@ msgstr "Partajați intervalul de vârstă" msgid "Share anyway" msgstr "Distribuiți oricum" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Partajare DID autor" @@ -11127,7 +11134,7 @@ msgstr "Partajare DID autor" msgid "Share feedback" msgstr "Partajare feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialogul de distribuire link" msgid "Share my profile" msgstr "Partajați-mi profilul" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Distribuiți postarea at:// URI" @@ -11169,12 +11176,12 @@ msgstr "Partajare profil" msgid "Share QR code" msgstr "Distribuiți codul QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Distribuiți acest flux" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Partajați această căutare" @@ -11186,8 +11193,8 @@ msgstr "Distribuiți acest pachet de pornire" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Distribuiți acest pachet de pornire și ajutați oamenii să se alăture comunității dvs. pe Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Partajați-vă contactele pentru a găsi prieteni" msgid "Share your thoughts…" msgstr "Împărtășiți-vă gândurile…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Tester Preferințe Partajate" @@ -11219,7 +11226,7 @@ msgstr "Partajarea intervalului dvs. de vârstă dezvăluie doar intervalul asoc msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Partajarea intervalului dvs. de vârstă dezvăluie doar intervalul asociat cu contul dvs. Google – de exemplu, faptul că aveți cel puțin 18 ani. <0>Vârsta dvs. exactă și ziua de naștere nu sunt niciodată partajate, iar aceste date nu părăsesc niciodată acest dispozitiv. Prin urmare, se activează accesul doar pe acest dispozitiv. Alternativ, <1>puteți folosi partenerul nostru de încredere, KWS, pentru a finaliza verificarea și a activa accesul pe toate platformele." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Afișare" msgid "Show alt text" msgstr "Afișare text alternativ" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Afișați oricum" @@ -11274,8 +11281,8 @@ msgstr "Afișați lista oricum" msgid "Show lists of users to select from" msgstr "Afișați liste de utilizatori din care puteți selecta" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Afișați mai multe" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Afișează avertismente și filtrează din fluxuri" msgid "Show when you’re live" msgstr "Afișați când sunteți în direct" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Afișează informații despre când a fost creată această postare" @@ -11341,15 +11348,15 @@ msgstr "Afișează informații despre când a fost creată această postare" msgid "Shows other accounts you can switch to" msgstr "Afișează alte conturi la care vă puteți comuta" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Afișează conținutul" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Afișează conținutul" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Deconectare?" msgid "Sign up" msgstr "Înscrieți-vă" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Conectare necesară" @@ -11469,7 +11476,7 @@ msgstr "Omitere" msgid "Skip contact sharing and continue to the app" msgstr "Omiteți partajarea contactelor și continuați spre aplicație" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Omiteți postările goale?" @@ -11487,7 +11494,7 @@ msgstr "Omiteți la pasul următor" msgid "slide" msgstr "glisare" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mai mic" @@ -11499,7 +11506,7 @@ msgstr "Amânare memento" msgid "So many thoughts, you should post one" msgstr "Atât de multe gânduri, ar trebui să postați măcar unul" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "O rețea socială pe care dvs. o controlați." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Cineva a părăsit grupul" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Cineva a reacționat cu {0}" @@ -11554,7 +11561,7 @@ msgstr "Cineva a reacționat cu {0}" msgid "Someone reacted {0} to {target}" msgstr "Cineva a reacționat cu {0} la {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Cineva a răspuns" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Ceva n-a mers bine, vă rugăm să încercați din nou" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Ceva nu a mers bine, vă rugăm încercați din nou." msgid "Something went wrong. Please try again." msgstr "Ceva n-a mers bine. Vă rugăm să încercați din nou." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "E ceva în neregulă? Anunțați-ne." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam sau alt comportament inautentic sau înșelăciune" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "Începeți o conversație și ea va apărea aici." msgid "Start a group chat" msgstr "Începeți o conversație de grup" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Începeți o conversație nouă" @@ -11682,17 +11689,17 @@ msgstr "Începeți să adaugați persoane" msgid "Start adding people!" msgstr "Începeți să adaugați persoane!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Începeți conversația" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Începeți conversația cu {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pachet de pornire" @@ -11715,12 +11722,16 @@ msgstr "Pachet de pornire de dvs." msgid "Starter pack is invalid" msgstr "Pachetul de pornire nu este valid" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Pachete de pornire" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pachete de pornire" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Pachetele de pornire vă permit să partajați cu ușurință fluxurile și persoanele preferate cu prietenii dvs." @@ -11728,7 +11739,7 @@ msgstr "Pachetele de pornire vă permit să partajați cu ușurință fluxurile msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Pachetele de pornire vă permit să partajați cu ușurință fluxurile și persoanele preferate cu prietenii dvs." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Pachetele de pornire vă permit să partajați cu ușurință fluxurile și persoanele preferate cu prietenii dvs." @@ -11742,7 +11753,7 @@ msgstr "Pagina de stare" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Pasul {0} din {1}" @@ -11754,7 +11765,7 @@ msgstr "Spațiu de stocare curățat, trebuie să reporniți aplicația acum." msgid "Stored as part of a secure code for matching with others" msgstr "Stocat ca parte a unui cod securizat pentru a se potrivi cu alții" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Abonați-vă la {publicationTitle} pe {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonați-vă la @{0} pentru a utiliza aceste etichete:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Verificat cu succes" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Sugerate" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Conturi sugerate" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Apus de soare" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Această caracteristică nu este încă disponibilă în țara dvs.! Vă rugăm să reveniți mai târziu." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Conturile suspendate nu pot participa la o conversație de grup." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Conturile suspendate nu pot participa la conversație." @@ -11921,8 +11934,8 @@ msgstr "Comutați la {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistem" @@ -11945,7 +11958,7 @@ msgstr "Treceți conversația în privat." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Atingeți mai jos pentru a permite aplicației Bluesky să vă acceseze locația GPS. Vom folosi apoi aceste date pentru a determina cu mai multă precizie conținutul și caracteristicile disponibile în regiunea dvs." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Atingeți pentru detalii" @@ -11976,7 +11989,7 @@ msgstr "Atingeți pentru a închide meniul contextual" msgid "Tap to copy this invite link" msgstr "Atingeți pentru a copia acest link de invitație" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Atingeți pentru a închide" @@ -12003,7 +12016,7 @@ msgstr "Atingeți pentru a vă elimina reacția {0}" msgid "Tap to request access to join this group chat" msgstr "Atingeți pentru a solicita acces pentru a vă alătura acestei conversații de grup" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Atingeți pentru a reîncerca" @@ -12016,7 +12029,7 @@ msgstr "Atingeți pentru a afișa {0} reacții" msgid "Tap to show all reactions" msgstr "Atingeți pentru a afișa toate reacțiile" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Atingeți pentru a vizualiza reacțiile" @@ -12032,7 +12045,7 @@ msgstr "Sarcină completă - 10 urmăriri!" msgid "Task complete - 10 likes!" msgstr "Sarcină completă - 10 aprecieri!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Învățați algoritmul ce vă place" @@ -12060,7 +12073,7 @@ msgstr "Termeni" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Acest pachet de pornire nu a putut fi găsit." msgid "That username is already taken" msgstr "Acel nume de utilizator este deja luat" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Asta-i tot, oameni buni!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Asta e tot!" @@ -12216,7 +12229,7 @@ msgstr "Serverul pare să întâmpine probleme. Vă rugăm să încercați din n msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Pachetul de pornire pe care încercați să îl vizualizați este nevalid. În schimb, puteți șterge acest pachet de pornire." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Subiectul meniului contextul" @@ -12238,7 +12251,7 @@ msgstr "Codul de verificare pe care l-ați furnizat este nevalid. Asigurați-vă msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Furnizorul de verificare nu a putut trimite un cod la numărul dvs. de telefon. Vă rugăm să verificați numărul de telefon și să încercați din nou." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Temă" @@ -12266,7 +12279,7 @@ msgstr "A apărut o problemă la încărcarea GIF-urilor. Verificați-vă conexi msgid "There was a problem with your internet connection, please try again" msgstr "A apărut o problemă cu conexiunea dvs. la internet, vă rugăm să încercați din nou" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "A apărut o problemă cu conexiunea dvs. la internet, vă rugăm să în msgid "There was an issue contacting the server" msgstr "A apărut o problemă la contactarea serverului" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "A apărut o problemă la contactarea serverului, vă rugăm să vă verificați conexiunea la internet și încercați din nou." @@ -12283,8 +12296,8 @@ msgstr "A apărut o problemă la contactarea serverului, vă rugăm să vă veri msgid "There was an issue fetching notifications. Tap here to try again." msgstr "A apărut o problemă la preluarea notificărilor. Atingeți aici pentru a încerca din nou." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "A apărut o problemă la preluarea postărilor. Atingeți aici pentru a încerca din nou." @@ -12309,7 +12322,7 @@ msgstr "A apărut o problemă la preluarea informațiilor dvs. de serviciu" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "A apărut o problemă la eliminarea acestui flux. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Aceste setări se aplică numai fluxului Urmăriți." msgid "These URLs" msgstr "Aceste URL-uri" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Aceștia dețin această conversație" @@ -12392,7 +12405,7 @@ msgstr "Aceștia dețin această conversație" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Nu se vor putea realătura decât dacă îi invitați din nou." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Acest {screenDescription} a fost etichetat:" @@ -12408,7 +12421,7 @@ msgstr "Acest cont a fost marcat ca automatizat de către proprietarul său." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Acest cont are una sau mai multe verificări, dar nu este verificat în prezent." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Acest cont a solicitat ca utilizatorii să se conecteze pentru a vizualiza profilul lor." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Acest flux este gol! S-ar putea să fie nevoie să urmăriți mai mulți utilizatori sau să ajustați setările de limbă." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Acest flux este gol." @@ -12554,7 +12567,7 @@ msgstr "Acest grup este blocat de o acțiune de moderare asupra proprietarului" msgid "This handle is reserved. Please try a different one." msgstr "Acest identificator este rezervat. Vă rugăm să încercați unul diferit." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Această imagine nu a putut fi utilizată. Încercați un alt format ca .jpg sau .png." @@ -12596,7 +12609,7 @@ msgstr "Această etichetă a fost aplicată de dvs." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Această etichetă a fost aplicată întregului cont de utilizator și va apărea pe toate postările." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Acest etichetator nu a declarat etichetele pe care le publică și s-ar putea să nu fie activ." @@ -12621,13 +12634,13 @@ msgstr "Această listă este goală." msgid "This message is hidden" msgstr "Acest mesaj este ascuns" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Acest mesaj este ascuns deoarece acest utilizator vă blochează." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Acest mesaj este ascuns deoarece blocați acest utilizator." @@ -12641,7 +12654,7 @@ msgstr "Această persoană vă blochează" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Această postare pretinde că a fost creată pe <0>{0}, dar a fost văzută prima dată de Bluesky pe <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Această postare pretinde că a fost creată pe <0>{0}, dar a fost v msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Această postare are un tip necunoscut de threadgate. Este posibil ca aplicația dvs. să nu fie actualizată la zi." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Această postare este vizibilă numai pentru utilizatorii conectați." @@ -12661,7 +12674,7 @@ msgstr "Această postare a fost ștearsă de autorul său" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Această postare va fi ascunsă de fluxuri și fire. Acest lucru nu poate fi anulat." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Autorul acestei postări a dezactivat postările citate." @@ -12698,11 +12711,12 @@ msgstr "Acest lucru ar trebui să dureze doar câteva minute." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Acest utilizator nu are un nume afișat, și prin urmare, nu poate fi verificat." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Acest utilizator nu are urmăritori." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Acest utilizator v-a blocat și nu-i se pot scrie mesaje." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Acest utilizator v-a blocat. Nu puteți vizualiza conținutul acestuia." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Acest utilizator a dezactivat conversația și nu-i se pot scrie mesaje." @@ -12733,11 +12748,11 @@ msgstr "Acest utilizator este inclus în lista <0>{0} pe care ați amuțit-o msgid "This user is new here. Press for more info about when they joined." msgstr "Acest utilizator este nou aici. Apăsați pentru mai multe informații despre momentul când s-a alăturat." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Acest utilizator nu urmărește pe nimeni." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Acest videoclip nu poate fi redat pe dispozitivul dvs. Este posibil ca browserul sau sistemul dvs. să nu aibă codec-urile video necesare (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Această acțiune va șterge ireversibil contul dvs. Bluesky <0>{currentHandle} și toate datele asociate. Rețineți că acest lucru va afecta orice alte servicii pe <1>Protocolul AT pe care le utilizați cu acest cont." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Aceasta va elimina @{0} din lista de acces rapid." @@ -12786,7 +12801,7 @@ msgstr "Preferințe fir" msgid "Threaded" msgstr "Fire" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferințe fire" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Prea multe contacte - ați depășit numărul de contacte pe care le puteți importa pentru a vă găsi prietenii" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Sus" @@ -12858,7 +12873,7 @@ msgstr "Sus" msgid "Top replies first" msgstr "Răspunsurile de top primele" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Subiect" @@ -12893,7 +12908,9 @@ msgstr "Traducerea în aceeaşi limbă nu este disponibilă pe dispozitivul dvs. msgid "Tree view" msgstr "Vizualizare arbore" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "În tendințe" @@ -12902,7 +12919,7 @@ msgstr "În tendințe" msgid "Trending GIFs" msgstr "GIF-uri populare" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opțiuni subiecte în tendințe" @@ -12918,11 +12935,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Încrederea rezultă din relații, comunități și context comun, așa că activăm și <0>verificatori de încredere: organizații care pot emite în mod direct verificări." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Încercați un alt termen de căutare sau eliminați câteva filtre." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Încercați un alt termen de căutare." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Imposibil de preluat cererile de alăturare." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Imposibil de găsit destinatarul selectat." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Imposibil de găsit destinatarul selectat." @@ -13024,12 +13043,12 @@ msgstr "Indisponibil" msgid "Unavailable feed information" msgstr "Informații flux indisponibile" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Deblocare cont?" msgid "Unblock list" msgstr "Deblocare listă" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Nu mai urmăriți pe {0}" msgid "Unfollow account" msgstr "Nu mai urmăriți contul" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Anulează urmărirea utilizatorului" @@ -13132,7 +13151,7 @@ msgstr "Conținut pentru adulți care nu este etichetat ca atare" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Conținut pentru adulți care nu este etichetat ca atare, abuziv sau neconsensual" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Nu mai apreciați" @@ -13192,7 +13211,7 @@ msgstr "Dezamuțiți această conversație de grup" msgid "Unmute thread" msgstr "Dezamuțire fir" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Activați sunetul videoclipului" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Anulați fixarea" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Anulați fixarea fluxului" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Anulați fixarea de la acasă" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Anulați fixarea listei de moderare" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Fixarea {0} anulată de la pagina Acasă" @@ -13258,11 +13277,11 @@ msgstr "Dezabonare de la acest etichetator" msgid "Unsubscribed from list" msgstr "Dezabonat de la listă" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Conținut clipboard neacceptat" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Tip videoclip neacceptat: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Actualizarea vizibilității răspunsului a eșuat" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Încărcați o fotografie în schimb" @@ -13355,7 +13374,7 @@ msgstr "Încărcați din fișiere" msgid "Upload from Library" msgstr "Încărcați din bibliotecă" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Se încarcă GIF-ul..." @@ -13369,7 +13388,7 @@ msgstr "Se încarcă imaginile..." msgid "Uploading link thumbnail..." msgstr "Se încarcă miniatura link-ului..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Se încarcă videoclipul..." @@ -13408,7 +13427,7 @@ msgstr "Utilizați asta pentru a vă conecta la cealaltă aplicație împreună msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Utilizați adresa dvs. de e-mail sau o altă adresă reală de e-mail pe care o controlați în cazul în care KWS sau Bluesky trebuie să vă contacteze." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "utilizator" @@ -13510,7 +13529,7 @@ msgstr "Verificare eșuată, încercați din nou." msgid "Verification settings" msgstr "Setări de verificare" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Setări de verificare" @@ -13618,7 +13637,7 @@ msgstr "Videoclip" msgid "Video failed to process" msgstr "Procesarea videoclipului a eșuat" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Flux video" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Videoclip de la {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Videoclip de la {0}. Atingeți pentru a reda sau pentru a întrerupe videoclipul" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Jocuri video" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Redarea videoclipului este întreruptă" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Videoclipul se redă" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Videoclipul nu a fost găsit." @@ -13653,7 +13672,7 @@ msgstr "Videoclipul nu a fost găsit." msgid "Video settings" msgstr "Setări videoclip" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Videoclip încărcat" @@ -13662,17 +13681,17 @@ msgstr "Videoclip încărcat" msgid "Video: {0}" msgstr "Videoclip: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videoclipuri" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videoclipurile trebuie să aibă o lungime de mai puțin de 3 minute." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vizualizare" @@ -13691,9 +13710,9 @@ msgstr "Vizualizați avatarul lui {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Vizualizați profilul lui {0}" @@ -13724,13 +13743,13 @@ msgstr "Vizualizați postarea pe blog pentru mai multe detalii" msgid "View debug entry" msgstr "Vizualizați intrarea de depanare" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Vizualizare detalii" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vizualizați întregul fir" @@ -13761,7 +13780,7 @@ msgstr "Vedeți mai multe" msgid "View more trending videos" msgstr "Vizualizați mai multe videoclipuri în tendințe" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Vizualizare postare" @@ -13798,11 +13817,11 @@ msgstr "Vizualizați linkul de invitație pentru această conversație de grup" msgid "View the labeling service provided by @{0}" msgstr "Vizualizați serviciul de etichetare furnizat de @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Vizualizați verificările acestui utilizator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Vizualizați utilizatorii care apreciază acest flux" @@ -13831,7 +13850,7 @@ msgstr "Vizualizați listele dvs. de moderare" msgid "View your muted accounts" msgstr "Vizualizați conturile dvs. amuțite" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Vizualizați-vă verificările" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Avem probleme cu rețeaua, încercați din nou" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Avem probleme cu rețeaua, încercați din nou" @@ -14043,7 +14062,7 @@ msgstr "Avem probleme cu rețeaua, încercați din nou" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Introducem un nou nivel de verificare pe Bluesky - o bifă ușor de văzut." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Suntem atât de încântați să vă avem alături de noi!" @@ -14064,13 +14083,15 @@ msgstr "Ne pare rău, dar nu am reușit să rezolvăm această listă. Dacă pro msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Ne pare rău, dar nu am putut încărca cuvintele dvs. amuțite în acest moment. Vă rugăm să încercați din nou." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "Ne pare rău, dar căutarea dvs. nu a putut fi finalizată." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ne pare rău, dar căutarea dvs. nu a putut fi finalizată. Vă rugăm să încercați din nou peste câteva minute." @@ -14078,7 +14099,7 @@ msgstr "Ne pare rău, dar căutarea dvs. nu a putut fi finalizată. Vă rugăm s msgid "We're sorry, you cannot access this screen at this time." msgstr "Ne pare rău, nu puteți accesa acest ecran în acest moment." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ne pare rău! Postare la care răspundeți a fost șters." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "care-i treaba" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Care-i treaba?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Cine poate verifica?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Hopa!" @@ -14220,21 +14241,21 @@ msgstr "Doriți să blocați acest utilizator și/sau să părăsiți această c msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Doriți să salvați acest lucru ca schiță înainte de a vă vizualiza schițele?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Doriți să salvați acest lucru ca schiță pentru a o edita mai târziu?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Scrieți o postare" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Scrieți o postare" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Scrieți-vă răspunsul" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Accesați Bluesky dintr-o regiune care, în mod legal, ne cere să vă verificăm vârsta înainte de a vă permite să accesați aplicația." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Dvs. blocați pe {0}" @@ -14342,7 +14363,7 @@ msgstr "Nu mai sunteți în direct" msgid "You are not allowed to upload videos." msgstr "Nu aveți voie să încărcați videoclipuri." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Nu urmăriți pe nimeni încă" @@ -14362,7 +14383,7 @@ msgstr "Sunteți verificat. Veți pierde starea de verificare dacă vă schimba msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Sunteți verificat. Veți pierde starea de verificare dacă vă schimbați identificatorul. <0>Aflați mai multe." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Vă puteți ajusta interesele în orice moment din setările „Conținut și media”." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Acum vă puteți conecta cu noua parolă." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Puteți adăuga până la {MAX_GALLERY_IMAGES, plural, one {} few {# imagini}other {# de imagini}} per postare" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Puteți salva doar schițe până la 1000 de caractere." @@ -14439,9 +14460,9 @@ msgstr "Puteți citi istoricul conversației, dar nu puteți trimite mesaje noi. msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Puteți selecta până la {MAX_GALLERY_IMAGES, plural, one {} few {# imagini}other {# de imagini}} în total." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Puteți actualiza acest lucru mai târziu în setări." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Nu puteți adăuga mai mult de {EMOJI_REACTION_LIMIT, plural, one {o reacție emoji} few {# reacții emoji} other {# de reacții emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Încă nu puteți crea conversații de grup." @@ -14555,7 +14577,7 @@ msgstr "Ați verificat cu succes adresa dvs. de e-mail. Puteți închide acest d msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Ați atins temporar limita pentru încărcări de videoclipuri. Vă rugăm să încercați din nou mai târziu." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Aveți modificări nesalvate la această schiță, doriți să le salvați?" @@ -14563,7 +14585,7 @@ msgstr "Aveți modificări nesalvate la această schiță, doriți să le salva msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Aveți modificări nesalvate. Doriți să le salvați înainte de a vă vizualiza schițele?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Încă nu ați creat un pachet de pornire!" @@ -14614,7 +14636,7 @@ msgstr "Puteți adăuga până la {STARTER_PACK_MAX_SIZE, plural, one {} few {{S msgid "You may only add up to 3 feeds" msgstr "Puteți adăuga până la 3 fluxuri" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Trebuie să fiți proprietarul conversației pentru a elimina un membru." @@ -14622,7 +14644,7 @@ msgstr "Trebuie să fiți proprietarul conversației pentru a elimina un membru. msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Trebuie să aveți cel puțin 13 ani pentru a utiliza Bluesky. Citiți <0>Termenii de Serviciu pentru mai multe informații." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Trebuie să urmăriți cel puțin alte șapte persoane pentru a genera un pachet de pornire." @@ -14639,7 +14661,7 @@ msgstr "Trebuie să permiteți accesul la biblioteca dvs. media." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Trebuie să vă verificați adresa de e-mail înainte de a putea activa A2F." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Sunteți proprietarul acestei conversații" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Probabil doriți să reporniți aplicația acum." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Ați reacționat cu {0}" @@ -14667,15 +14689,15 @@ msgstr "Ați reacționat cu {0} la {target}" msgid "You recently changed your birthdate" msgstr "V-ați schimbat recent data nașterii" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Ați răspuns" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Ați răspuns către {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "V-ați răspuns" @@ -14715,11 +14737,11 @@ msgstr "Nu vă veți putea alătura decât dacă sunteți invitat." msgid "You: {message}" msgstr "Dvs.: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Veți urmări utilizatorii și fluxurile sugerate după ce ați terminat de creat contul!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Veți urmări utilizatorii sugerați după ce veți finaliza crearea contului!" @@ -14791,7 +14813,7 @@ msgstr "Ați ajuns la sfârșitul conținutului activ." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Ați ajuns la sfârșitul fluxului dvs.! Găsiți mai multe conturi de urmărit." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Ați atins numărul maxim de schițe" @@ -14799,7 +14821,7 @@ msgstr "Ați atins numărul maxim de schițe" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Ați atins numărul maxim de solicitări permise. Vă rugăm să încercați din nou mai târziu." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Ați atins numărul maxim de {MAX_FILTERS, plural, one {un filtru} few {# filtre} other {# de filtre}}. Adăugați mai multe valori unui filtru existent în loc să creați unele noi." @@ -14815,11 +14837,11 @@ msgstr "Ați atins limita zilnică pentru încărcări de videoclipuri (prea mul msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Ați atins limita zilnică pentru încărcări de videoclipuri (prea multe videoclipuri)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Ați rămas fără videoclipuri de vizionat. Poate e un moment bun pentru a face o pauză?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Contul dvs." @@ -14835,11 +14857,11 @@ msgstr "Contul dumneavoastră a fost suspendat" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Contul dvs. nu este încă suficient de vechi pentru a încărca videoclipuri. Vă rugăm să încercați din nou mai târziu." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Contul dvs. este prea nou" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Contul dvs. trebuie să aibă cel puțin 7 zile pentru a crea o nouă conversație de grup." @@ -14930,8 +14952,8 @@ msgstr "Furnizorul dvs. de servicii de găzduire nu poate fi identificat pe baza msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Furnizorul dvs. de găzduire este detectat automat din numele de utilizator pe care îl introduceți." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Interesele dvs. au fost actualizate!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Interesele dvs. ne ajută să găsim ceea ce vă place!" @@ -14967,11 +14989,11 @@ msgstr "Parola dvs. a fost modificată cu succes! Vă rugăm să folosiți noua msgid "Your password must be at least 8 characters long." msgstr "Parola dvs. trebuie să aibă cel puțin 8 caractere." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Postarea dvs. a fost trimisă" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Postările dvs. au fost trimise" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Limba dvs. preferată" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Imaginea dvs. de profil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Imaginea dvs. de profil înconjurată de cercuri concentrice cu imagini de profil ale altor utilizatori" @@ -14992,7 +15014,7 @@ msgstr "Imaginea dvs. de profil înconjurată de cercuri concentrice cu imagini msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Profilul, postările, fluxurile și listele dvs. nu vor mai fi vizibile pentru alți utilizatori Bluesky. Vă puteți reactiva contul în orice moment, conectându-vă." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Răspunsul dvs. a fost trimis" @@ -15005,7 +15027,7 @@ msgstr "Raportul dvs. va fi trimis la <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Interesele dvs. selectate ne ajută să vă oferim conținut care vă interesează." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Firul dvs. conține postări goale care vor fi omise. Postările rămase vor fi publicate ca un fir." diff --git a/src/locale/locales/ru/messages.po b/src/locale/locales/ru/messages.po index 521c22a6df..e268d7c3ab 100644 --- a/src/locale/locales/ru/messages.po +++ b/src/locale/locales/ru/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: ru\n" +"Language: ru_RU\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Russian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Категория \"{interestsDisplayName}\" (активна)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(содержит встроенный контент)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# час} few {# часа} other {# часов}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr " {0, plural, one {# лайк} few {# лайка} other {# лайков}} #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Аккаунт)" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} подписок" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} из 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} отреагировал {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} верифицировал вас" msgid "{following} following" msgstr "{following} подписок" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} не может получать сообщения" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# непрочитанный элеме msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} присоединился к Bluesky {timeAgoString} назад" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} присоединился к Bluesky, используя стартовый набор {timeAgoString} назад" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}ч. назад" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} — доверенный верификатор" @@ -842,13 +795,13 @@ msgstr "Верификации {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {подписка} few {подписки} oth #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {цитирование} few {цитирования} other {цитирований}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {репост} few {репоста} other {репостов}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {сохранение} few {сохранен #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Войдите в свой аккаунт<1> или <2>создайте аккаунт<3>, <4> чтобы искать новости, спорт, политику и всё остальное, что происходит на Bluesky." @@ -971,7 +924,7 @@ msgstr "30 дней" msgid "7 days" msgstr "7 дней" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Подборка популярных лент, которые вы можете найти на Bluesky, включая News, Booksky, Game Dev, Blacksky и Foundation Pens" @@ -988,9 +941,11 @@ msgstr "Произошла сетевая ошибка. Пожалуйста, п #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "Новая форма верификации" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Доступность" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Настройки Доступности" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Учётная запись игнорируется списком" msgid "Account options" msgstr "Параметры учётной записи" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Учётная запись удалена из быстрого доступа" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Учётные записи с фигурной синей галочкой <0><1/> могут верифицировать другие учётные записи. Эти доверенные верификаторы выбраны Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Активность от других" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Добавьте альтернативный текст (необяза msgid "Add another account" msgstr "Добавить другую учётную запись" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Добавить другой пост" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Добавить еще один пост в ветку" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Добавить эмодзи-реакцию" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Добавьте эту ленту в свои ленты" msgid "Add to lists" msgstr "Добавить в списки" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Добавить в сохранённые посты" @@ -1400,7 +1360,7 @@ msgstr "Для взрослых" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Позволяет получить доступ к личным соо msgid "Already have a code?" msgstr "Уже есть код?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Уже есть учётная запись?" @@ -1614,7 +1574,7 @@ msgstr "Было отправлено письмо на адрес {0}. Оно msgid "An error has occurred" msgstr "Возникла ошибка" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Возникла ошибка" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "При обновлении ленты произошла ошибка." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "При создании вашего стартового набора возникла ошибка. Хотите попробовать ещё раз?" @@ -1640,11 +1600,11 @@ msgstr "При создании вашего стартового набора msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "При загрузке видео возникла ошибка. Пожалуйста, повторите попытку позже." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "При загрузке видео возникла ошибка. Пожалуйста, попробуйте ещё раз." @@ -1684,7 +1644,7 @@ msgstr "Возникла ошибка. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Проблема не включена в эти варианты" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "При попытке открыть чат возникла проблема" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Любой" @@ -1802,7 +1760,7 @@ msgstr "Любой, кто подписан на меня" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Имена паролей приложений должны состоя msgid "App passwords" msgstr "Пароли приложений" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Пароли приложений" @@ -1891,8 +1849,8 @@ msgstr "Обжаловать это решение" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Применить запрос на слияние" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Архивный пост от {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Архивный пост" @@ -1980,7 +1938,7 @@ msgstr "Вы уверены, что хотите удалить это из св msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Вы действительно хотите удалить этот пост?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Аврора" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Автовоспроизведение видео и GIF-файлов" msgid "Available" msgstr "Доступен" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Чтобы создать пост или ответить, необходимо сначала подтвердить свою электронную почту." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Чтобы создать стартовый набор, необходимо сначала подтвердить свою электронную почту." @@ -2135,10 +2097,10 @@ msgstr "Перед тем, как вы будете получать уведо #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Начните процесс проверки возраста, зап msgid "Beta Feature" msgstr "Бета функция" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Дата рождения" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Заблокировано" msgid "Blocked accounts" msgstr "Заблокированные учётные записи" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Заблокированные учётные записи" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Блокировка не мешает этому маркировщику добавлять метку на вашу учётную запись." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky не может подтвердить подлинность заявленной даты." @@ -2330,7 +2299,7 @@ msgstr "Bluesky - это открытая сеть, где вы можете в msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky - это открытая сеть, где вы можете сами выбирать провайдера. Если вы впервые здесь, мы рекомендуем выбрать Bluesky Social по умолчанию." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky лучше с друзьями!" @@ -2358,7 +2327,7 @@ msgstr "Условия предоставления услуг Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky выберет набор рекомендуемых учётных записей из вашего круга общения." @@ -2425,24 +2394,25 @@ msgstr "Просмотрите другие предложения на стра msgid "Browse other feeds" msgstr "Просмотр других лент" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Просмотреть посты о {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Просмотреть посты с тегом {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Просмотреть стартовый набор {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Просмотреть тему {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Просмотреть тему {displayName}" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "От {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "От <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Создавая учётную запись, вы соглашаете msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Создавая учётную запись, вы соглашаетесь с <0>Условиями предоставления услуг." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Сделан вами" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Камера" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Отменить реактивацию и выйти из систем msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Отменить поиск" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Чат без звука" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Почтовый ящик запросов на чат" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Запросы на чат" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Настройки чата" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Чат со звуком" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Чаты" @@ -2837,7 +2808,7 @@ msgstr "Выберите метод подтверждения домена" msgid "Choose Feeds" msgstr "Выберите ленты" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Выберите за меня" @@ -2854,7 +2825,7 @@ msgstr "Выберите людей" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Выберите этот цвет в качестве своего аватара" @@ -2879,7 +2850,7 @@ msgstr "Выберите свою собственную временную шк msgid "Choose your password" msgstr "Укажите пароль" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Выберите свой псевдоним" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "Нажмите, чтобы открыть меню тегов для {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Нажмите, чтобы повторить неудачное сообщение" @@ -3003,7 +2974,7 @@ msgstr "Нажмите, чтобы повторить неудачное соо #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Нажмите, чтобы повторить неудачное соо msgid "Close" msgstr "Закрыть" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Закрыть диалоговое окно" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Закрыть меню" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Закрыть диалоговое окно" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Закрыть окно приветствия" @@ -3098,7 +3069,7 @@ msgstr "Закрыть окно приветствия" msgid "Closes password update alert" msgstr "Закрывает уведомление об изменении пароля" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Закрывает редактор и удаляет черновик" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Цветовой режим" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Комиксы" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Правила сообщества" @@ -3141,7 +3112,7 @@ msgstr "Правила сообщества" msgid "Complete onboarding and start using your account" msgstr "Завершите ознакомление и начните пользоваться вашей учётной записью" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Выполните задание" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Составить новый пост" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Пишите посты длиной до {0, plural, one {# символа} other {# символов}}" @@ -3160,11 +3131,11 @@ msgstr "Пишите посты длиной до {0, plural, one {# симво msgid "Compose reply" msgstr "Составить ответ" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Сжатие видео..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Служба поддержки" @@ -3253,7 +3224,7 @@ msgstr "Содержание и медиа" msgid "Content and media" msgstr "Содержимое и медиа" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Содержимое и медиа" @@ -3265,10 +3236,6 @@ msgstr "Заблокированное содержимое" msgid "Content filters" msgstr "Фильтры содержимого" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Содержимое сети, которое, по нашему мнению, может вам понравиться." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Контент, пропагандирующий или изображающий членовредительство" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Предупреждение о содержимом" msgid "Content warnings" msgstr "Предупреждение о содержимом" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Фон контекстного меню, нажмите, чтобы закрыть меню." @@ -3302,7 +3269,7 @@ msgstr "Фон контекстного меню, нажмите, чтобы з #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Продолжить ветку..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Версия сборки скопирована в буфер обмена" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Копировать пароль приложения" msgid "Copy at:// URI" msgstr "Копировать at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Копировать DID автора" @@ -3449,10 +3416,10 @@ msgstr "Копировать ссылку" msgid "Copy link to list" msgstr "Копировать ссылку на список" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Копировать ссылку на пост" @@ -3470,8 +3437,8 @@ msgstr "Копировать ссылку на стартовый набор" msgid "Copy message text" msgstr "Копировать текст сообщения" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Копировать at:// URI поста" @@ -3490,7 +3457,7 @@ msgstr "Копировать значение TXT-записи" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Политика защиты авторского права" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Не удалось выйти из чата" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Не удалось загрузить ленту" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Не удалось заглушить чат" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Создать" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Создать QR-код для стартового набора" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Создать стартовый набор" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Создать для меня стартовый набор" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Регистрация" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Создать учётную запись" @@ -3666,15 +3633,15 @@ msgstr "Создать учётную запись" msgid "Create an account without using this starter pack" msgstr "Создать учётную запись без этого стартового набора" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Создать аватар вместо этого" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Создать ещё один" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Культура" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Тёмная" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Тёмная" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Тёмная тема" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "По умолчанию" @@ -3894,7 +3861,7 @@ msgstr "Удалить мою учётную запись" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Удалить пост" @@ -3988,7 +3955,7 @@ msgstr "Диалог: настройте, кто может взаимодейс msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Тусклая" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "Отключить 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Отключено" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Удалить" msgid "Discard changes?" msgstr "Удалить изменения?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Удалить черновик?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Удалить пост?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Попросить приложения не показывать мою учётную запись незалогиненным пользователям" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Попросить приложения не показывать мою msgid "Discover new custom feeds" msgstr "Откройте для себя новые пользовательские ленты" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Откройте для себя новые ленты" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Пропустить" @@ -4103,19 +4070,19 @@ msgstr "Пропустить" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Пропустить ошибку" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Пропустить руководство по началу работы" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Отклонить интересы" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Отображение больших значков альтернат msgid "Display name" msgstr "Имя" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "Не волнуйтесь! Все существующие сообще #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Не волнуйтесь! Все существующие сообще msgid "Done" msgstr "Готово" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Дважды нажмите или зажмите сообщение, чтобы добавить реакцию" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Дважды нажмите, чтобы закрыть диалог" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Дважды нажмите, чтобы поставить лайк" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Редактировать изображение" msgid "Edit interaction settings" msgstr "Редактировать настройки взаимодействия" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Изменить интересы" @@ -4397,7 +4365,7 @@ msgstr "Изменить статус прямого эфира" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Редактировать мои ленты" @@ -4406,6 +4374,11 @@ msgstr "Редактировать мои ленты" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Редактировать людей" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Редактировать, кто может отвечать" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Редактировать ваш стартовый набор" @@ -4500,8 +4473,8 @@ msgstr "Встроить HTML-код" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Встроить пост" @@ -4509,7 +4482,7 @@ msgstr "Встроить пост" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Встройте этот пост в Ваш сайт. Просто скопируйте этот скрипт и вставьте его в HTML код вашего сайта." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Встроенный видеоплеер" @@ -4533,7 +4506,7 @@ msgstr "Разрешить содержимое для взрослых" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Включить внешние медиа" msgid "Enable media players for" msgstr "Включить медиапроигрыватели для" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Включите уведомления для учётной записи, посетив её профиль и нажав <0>значок колокольчика <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Включить push-уведомления" @@ -4581,7 +4555,7 @@ msgstr "Включить актуальные видео в ленте Discover" msgid "Enabled" msgstr "Включено" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Конец ленты" @@ -4608,7 +4582,7 @@ msgstr "Введите слово или тег" msgid "Enter code" msgstr "Введите код" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Перейти в полноэкранный режим" @@ -4650,11 +4624,11 @@ msgstr "Введите псевдоним и пароль" msgid "Enters full screen" msgstr "Переходит в полноэкранный режим" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Развлечения" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Ошибка" @@ -4684,7 +4658,7 @@ msgstr "Произошла ошибка при сохранении файла" msgid "Error receiving captcha response." msgstr "Ошибка получения ответа Captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Ошибка: {error}" @@ -4696,8 +4670,8 @@ msgstr "Каждый может ответить" msgid "Everybody can reply to this post." msgstr "Все могут ответить на этот пост." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Все" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Все" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "Исключить пользователей, на которых вы msgid "Excludes users you follow" msgstr "Исключает пользователей, на которых вы подписаны" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Выйти из полноэкранного режима" @@ -4755,11 +4729,11 @@ msgstr "Развернуть список пользователей" msgid "Expand or collapse the full post you are replying to" msgstr "Развернуть или свернуть весь пост, на который вы отвечаете" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Разворачивает или сворачивает текст поста" @@ -4802,15 +4776,15 @@ msgstr "Откровенный или потенциально проблемн msgid "Explicit sexual images." msgstr "Откровенные сексуальные изображения." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Обзор" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Настройка внешних медиа" @@ -4886,7 +4860,7 @@ msgstr "Не удалось изменить псевдоним. Попробу #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Не удалось загрузить беседы" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Не удалось загрузить настройки ленты" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Не удалось загрузить настройки уведомлений." @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Не удалось загрузить предложенные ленты" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Не удалось загрузить предложенные подписки" @@ -5027,12 +5002,12 @@ msgstr "Не удалось загрузить предложенные подп msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Лента" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Меню ленты" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Ленты изменены!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Мы думаем, что вам понравятся эти ленты." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Получить обновление" @@ -5273,11 +5244,11 @@ msgstr "Получить обновление" msgid "File saved successfully!" msgstr "Файл успешно сохранён!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Найдите учётные записи для подписки" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Подписаться на {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Подписаться на {handle}" @@ -5453,11 +5424,11 @@ msgstr "Подписаться на {handle}" msgid "Follow 10 accounts" msgstr "Подпишитесь на 10 учётных записей" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Подпишитесь на 7 учётных записей" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Подписчики @{0}, которых вы знаете" @@ -5544,7 +5515,7 @@ msgstr "Подписчики, которых вы знаете" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Подписка на {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Подписан на {handle}" @@ -5578,21 +5549,21 @@ msgstr "Подписан на {handle}" msgid "Following feed preferences" msgstr "Настройка ленты подписок" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Настройка ленты подписок" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Подписан на вас" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Шрифт" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Размер шрифта" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "В целях безопасности вы не сможете просмотреть его снова. Если вы потеряете этот пароль приложения, вам придётся сгенерировать новый." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Для наилучшего восприятия мы рекомендуем использовать тематический шрифт." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Для Вас" @@ -5628,7 +5599,7 @@ msgstr "Для Вас" msgid "Forever" msgstr "Навсегда" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Забудьте о шуме" @@ -5647,11 +5618,13 @@ msgstr "Забыли пароль?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Освободите свою ленту" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "От" @@ -5674,7 +5647,7 @@ msgstr "Из <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Сгенерировать стартовый набор" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Получить помощь" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Получайте уведомления, когда на вас подписываются люди." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Получайте уведомления, когда люди ставят лайки на ваши посты." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Получайте уведомления, когда люди упоминают вас." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Получайте уведомления, когда люди цитируют ваши посты." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Получайте уведомления, когда люди отвечают на ваши посты." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Получайте уведомления, когда люди репостят ваши посты." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Получайте уведомления о новых постах" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "Приступить" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Придайте своему профилю лицо" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Выйти в прямой эфир на" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Хештег" @@ -6098,7 +6072,7 @@ msgstr "Есть код? <0>Нажмите здесь." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Возникли проблемы?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Справка" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Чтобы люди знали, что вы не бот, загрузите фотографию или создайте аватар." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "Скрыто" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Скрыто настройками модерации." @@ -6148,9 +6122,9 @@ msgstr "Скрыто настройками модерации." msgid "Hidden list" msgstr "Скрытый список" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Скрытый список" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Скрыть" @@ -6198,7 +6172,7 @@ msgstr "Спрятать ответ для всех" msgid "Hide reply for me" msgstr "Спрятать ответ для меня" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Скрыть эту карту" @@ -6218,12 +6192,12 @@ msgstr "Скрыть этот ответ?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Скрыть актуальные темы" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Скрыть актуальные темы?" @@ -6240,7 +6214,7 @@ msgstr "Скрыть список пользователей" msgid "Hide verification badges" msgstr "Скрыть значки верификации" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Скрывает содержимое" @@ -6293,8 +6267,8 @@ msgstr "Хммм, мы не смогли загрузить этот серви msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Подождите! Мы постепенно даём доступ к видео, и вы всё ещё в очереди. Возвращайтесь позже!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Горячее" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "Если вы обновите адрес электронной поч msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Если вы хотите изменить пароль, мы отправим вам код, чтобы убедиться, что это ваша учётная запись." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "Почтовый ящик пуст!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Сейчас здесь только вы! Добавьте больше людей в свой стартовый набор, воспользовавшись поиском выше." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID вакансии: {0}" @@ -6816,8 +6788,8 @@ msgstr "Присоединиться к беседе" msgid "Journalism" msgstr "Журналистика" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "Веб-сайт KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Отмечен {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Метка добавлена автором." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Метки" @@ -6852,7 +6824,7 @@ msgstr "Метки добавлены" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Метки являются аннотациями для пользователей и контента. Они могут использоваться для скрытия, предупреждения и категоризации сети." @@ -6864,7 +6836,7 @@ msgstr "Метки на вашей учётной записи" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Настройки языка" @@ -6874,7 +6846,7 @@ msgstr "Настройки языка" msgid "Languages" msgstr "Языки" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Увеличенный" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Последнее инициирование только что" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Недавние" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Узнать больше" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Узнать больше" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Узнайте больше о самостоятельном хостинге PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Узнайте больше о модерации, применяемой к этому содержимому" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Узнать больше об этом предупреждении" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Узнать больше." @@ -6993,8 +6965,8 @@ msgstr "Выйти" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Вы покидаете Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "ещё осталось." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Позвольте мне выбрать" @@ -7057,7 +7029,7 @@ msgstr "Взлетаем!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Светлая" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Светлая" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Лайк" @@ -7076,7 +7048,7 @@ msgstr "Лайк" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Лайк ({0, plural, one {# лайк} few {# лайка} other {# лайков}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Лайкните 10 постов" @@ -7085,7 +7057,7 @@ msgstr "Лайкните 10 постов" msgid "Like 10 posts to train the Discover feed" msgstr "Лайкните 10 постов, чтобы обучить ленту Discover" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Лайкнуть эту ленту" @@ -7093,8 +7065,8 @@ msgstr "Лайкнуть эту ленту" msgid "Like this labeler" msgstr "Лайкнуть этот маркировщик" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Понравилось" @@ -7111,27 +7083,45 @@ msgstr "Понравился пользователю" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Понравилось {0, plural, one {# пользователю} other {# пользователям}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Понравилось {likeCount, plural, one {# пользователю} other {# пользователям}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Нравится" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Лайки этого поста" @@ -7144,7 +7134,7 @@ msgstr "Линейно" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Список" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Список больше не игнорируется" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "ПРЯМОЙ ЭФИР" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "Прямая ссылка" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Загрузить больше" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Загрузить больше предлагаемых лент" @@ -7292,8 +7282,8 @@ msgstr "Загрузить больше предлагаемых лент" msgid "Load new notifications" msgstr "Загрузить новые уведомления" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Отчёт" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Сделать один для меня" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "Отметить все как прочитанные" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Отметить как прочитанное" msgid "Marked all as read" msgstr "Все сообщения отмечены как прочитанные" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "Возможно, позже" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Медиа" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Медиа, которые могут вызывать беспокойство или быть неприемлемыми для некоторых аудиторий." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "упомянутые пользователи" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Упоминания" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Сообщение удалено" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "Параметры сообщений" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Сообщения" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Модерация" @@ -7636,7 +7630,7 @@ msgstr "Список модерации изменён" msgid "Moderation lists" msgstr "Списки модерации" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Списки модерации" @@ -7645,7 +7639,7 @@ msgstr "Списки модерации" msgid "moderation settings" msgstr "настройка модерации" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Статус модерации" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Игнорируемые учётные записи" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Игнорируемые учётные записи" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Неважно, создайте для меня псевдоним" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Новый" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Новый чат" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Новая функция" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Новые подписчики" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Новый список" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Новый пароль" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Новый пост" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Сначала самые новые" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Новости" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Следующее изображение" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Без рекламы, без инвазивного отслеживания, без вовлекающих ловушек. Bluesky уважает ваше время и внимание." @@ -8098,7 +8091,7 @@ msgstr "Нет срока действия" msgid "No feeds found. Try searching for something else." msgstr "Не найдено ни одной ленты. Попробуйте поискать что-нибудь еще." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "Нет изображения" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Пока нет лайков" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Вы больше не подписаны на {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Сообщения пока отсутствуют" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Больше никаких алгоритмов, наполненных бесполезной информацией. Найдите каналы, которые работают на вас, а не против вас." @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Пока нет цитирований" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Нет результатов" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Нет результатов" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Ничего не найдено для \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Нет результатов" msgid "No results found for \"{query}\"" msgstr "Ничего не найдено по запросу \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Нет результатов." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Нет, спасибо" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Никого" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Пока это никому не понравилось. Возможно, вы должны быть первым!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Никто ещё не цитировал это. Возможно, вы должны быть первым!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Несексуальная обнажённость" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Не найдено" @@ -8333,7 +8330,7 @@ msgstr "Примечание по распространению" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Примечание: Bluesky является открытой и публичной сетью. Этот параметр ограничивает видимость вашего содержимого только в приложениях и на сайте Bluesky, но другие приложения могут этого не придерживаться. Ваш контент все ещё может быть показан посетителям без учётной записи другими приложениями и веб-сайтами." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Пока ничего не сохранено" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Настройки уведомления" @@ -8353,11 +8350,12 @@ msgstr "Настройки уведомления" msgid "Notification sounds" msgstr "Звуки уведомлений" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "О нет!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "ОК" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Хорошо" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Сброс настроек" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "В одном или нескольких GIF-файлах отсутствует альтернативный текст." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Для одного или нескольких изображений отсутствует альтернативный текст." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "В одном или нескольких видео отсутствует альтернативный текст." @@ -8471,7 +8471,7 @@ msgstr "Только {0} могут отвечать." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Поддерживаются только файлы WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ой!" @@ -8544,7 +8544,7 @@ msgstr "Ой!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Открыть создатель аватара" @@ -8570,21 +8570,22 @@ msgstr "Открыть настройки беседы" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Открыть выдвижное меню" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Открыть подборщик эмодзи" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Открыть экран информации о ленте" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Открыть меню настроек ленты" @@ -8627,7 +8628,7 @@ msgstr "Открыть страницу отладки модерации" msgid "Open muted words and tags settings" msgstr "Открыть настройки игнорирования слов и тегов" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Открыть набор" @@ -8699,7 +8700,7 @@ msgstr "Открывает дополнительную информацию о msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Открывает камеру на устройстве" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Открывает процесс создания новой учётной записи Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Открывается процесс входа в существующую учетную запись Bluesky" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Пароль изменён!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Приостановить" @@ -8925,12 +8926,12 @@ msgstr "Приостановить" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Приостановить видео" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Люди" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Люди, на которых подписан(а) @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Люди, которые подписаны на @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Изображения, предназначенные для взрослых." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Закрепить ленту" @@ -9034,7 +9035,7 @@ msgstr "Закрепить ленту" msgid "Pin to home" msgstr "Закрепить на главной странице" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Закрепить на главной странице" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Закреплён" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Прикреплено {0} к главной странице" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Закрепить в своих лентах" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Воспроизвести" @@ -9076,8 +9077,8 @@ msgstr "Воспроизвести {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Воспроизвести видео" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Политика" @@ -9269,7 +9270,7 @@ msgstr "Политика" msgid "Porn" msgstr "Порнография" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Опубликовать" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Пост" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Опубликовать все" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Пост от @{0}" @@ -9340,7 +9341,7 @@ msgstr "Вы скрыли этот пост" msgid "Post interaction settings" msgstr "Настройки взаимодействия с постом" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Настройки взаимодействия с постом" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Пост закреплён" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Пост сохранён" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Пост откреплён" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Посты" @@ -9398,6 +9396,10 @@ msgstr "Посты могут быть проигнорированы на ос msgid "Posts hidden" msgstr "Посты скрыты" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Конфиденциальность" msgid "Privacy and security" msgstr "Конфиденциальность и безопасность" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Конфиденциальность и безопасность" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Политика конфиденциальности" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Обработка видео..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Публичные, доступные для обмена списки пользователей для массового игнорирования или блокировки." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Опубликовать пост" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Опубликовать посты" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Опубликовать ответы" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Опубликовать ответ" @@ -9599,12 +9602,12 @@ msgstr "Цитирование постов отключено" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Цитаты" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Цитаты из этого поста" @@ -9647,7 +9650,7 @@ msgstr "Реактивировать свою учётную запись" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Прочитать пост в блоге" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Читать меньше" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Читать больше" @@ -9687,11 +9690,11 @@ msgstr "Прочтите политику конфиденциальности B msgid "Read the Bluesky Terms of Service" msgstr "Прочтите условия предоставления услуг Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Рекомендуется" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Переподключиться" @@ -9748,7 +9747,7 @@ msgstr "Отклонить запрос на беседу" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Перезагрузить беседы" @@ -9766,7 +9765,7 @@ msgstr "Перезагрузить беседы" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Удалить" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Удалить учётную запись" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Удалить из моих лент" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Удалить из быстрого доступа?" @@ -9862,7 +9861,7 @@ msgstr "Удалить из быстрого доступа?" msgid "Remove from saved feeds" msgstr "Удалить из сохранённых лент" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Удалить из сохранённых постов" @@ -9880,8 +9879,8 @@ msgstr "Удалить изображение" msgid "Remove live status" msgstr "Убрать статус прямого эфира" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Удалено из списка" msgid "Removed from saved feeds" msgstr "Удалено из сохранённых лент" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Удалено из сохранённых постов" @@ -9952,7 +9951,7 @@ msgstr "Удалено из сохранённых постов" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Ответы" @@ -10037,7 +10037,7 @@ msgstr "Ответы на этот пост отключены." msgid "Reply" msgstr "Ответить" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Ответить" @@ -10098,8 +10098,8 @@ msgstr "Пожаловаться на беседу" msgid "Report dialog" msgstr "Диалоговое окно для жалоб" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Пожаловаться на ленту" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Вы сделали репост" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Репосты этого поста" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Повторяет последнее действие, которое #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Возвращает на главную страницу" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Возвращает к предыдущей странице" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Сохранить изменения" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Сохранить QR-код" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Сохранить в мои ленты" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Сохранённые ленты" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Сохранённые посты" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Сохранено в ваши ленты" @@ -10520,8 +10520,8 @@ msgstr "Сохранено в ваши ленты" msgid "Say hello!" msgstr "Скажи привет!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Наука" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Пролистать вверх" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Поиск" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Поиск постов @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Поиск лент, которые вы хотите предложить другим." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Поиск других учетных записей" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Найдите больше лент" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Поиск GIF-файлов" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Посмотреть вакансии в Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Подробнее" @@ -10716,8 +10717,12 @@ msgstr "Подробнее" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Ползунок перемещения. Используйте клавиши со стрелками для перемещения вперёд и назад и пробел для воспроизведения/паузы" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Выбрать цвет" @@ -10764,11 +10769,11 @@ msgstr "Выбрать учётную запись" msgid "Select an app language" msgstr "Выберите язык приложения" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Выбрать аватар" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Выбрать эмодзи" @@ -10780,12 +10785,13 @@ msgstr "Выберите опцию" msgid "Select app language" msgstr "Выберите язык приложения" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Выбрать GIF" msgid "Select GIF \"{0}\"" msgstr "Выбрать GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "Выберите основной язык" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Выбрать эмодзи {emojiName} в качестве своего аватара" @@ -10945,7 +10951,8 @@ msgstr "Отправить сообщение" msgid "Send post to {name}" msgstr "Отправить пост {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Отправить пост на..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Отправьте письмо с подтверждением" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Отправить личным сообщением" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Устанавливает адрес электронной почты для сброса пароля" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Настройки" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Всё равно поделиться" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Поделиться DID автора" @@ -11127,7 +11134,7 @@ msgstr "Поделиться DID автора" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Диалоговое окно обмена ссылками" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Поделиться at:// URI поста" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Поделиться QR-кодом" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Поделиться этой лентой" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Поделиться этим стартовым набором" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Поделитесь этим стартовым набором и помогите людям присоединиться к вашему сообществу на Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Тестер общих настроек" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Показать" msgid "Show alt text" msgstr "Показать альтернативный текст" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Всё равно показать" @@ -11274,9 +11281,9 @@ msgstr "Всё равно показывать список" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Показать больше" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Показать предупреждения и фильтровать msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Показывает информацию о том, когда был создан этот пост" @@ -11341,15 +11348,15 @@ msgstr "Показывает информацию о том, когда был msgid "Shows other accounts you can switch to" msgstr "Показывает другие учётные записи, на которые вы можете переключиться" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Показывает содержимое" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Показывает содержимое" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Выйти?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Необходимо войти для просмотра" @@ -11469,7 +11476,7 @@ msgstr "Пропустить" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Уменьшенный" @@ -11499,7 +11506,7 @@ msgstr "Отложить напоминание" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Кто-то отреагировал {0}" @@ -11554,7 +11561,7 @@ msgstr "Кто-то отреагировал {0}" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Что-то пошло не так, пожалуйста, попробуйте ещё раз" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "Что-то пошло не так. Пожалуйста, попробуйте ещё раз." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Что-то не так? Сообщите нам." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Спорт" @@ -11668,7 +11675,7 @@ msgstr "Начните беседу, и она появится здесь." msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Начать новый чат" @@ -11682,17 +11689,17 @@ msgstr "Начните добавлять людей" msgid "Start adding people!" msgstr "Начните добавлять людей!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Начать общаться с {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Стартовый набор" @@ -11715,12 +11722,16 @@ msgstr "Стартовый набор от вас" msgid "Starter pack is invalid" msgstr "Стартовый набор недействителен" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Наборы" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Стартовые наборы позволяют легко делиться любимыми лентами и людьми с друзьями." @@ -11728,7 +11739,7 @@ msgstr "Стартовые наборы позволяют легко делит msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Страница состояния" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Шаг {0} из {1}" @@ -11754,7 +11765,7 @@ msgstr "Хранилище очищено, теперь вам нужно пер msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "История" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Подпишитесь на @{0}, чтобы использовать эти метки:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Верификация прошла успешно" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Закат" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Переключиться на {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Системный" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Нажмите, чтобы закрыть контекстное мен msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Нажмите, чтобы пропустить" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Цель выполнена - 10 подписок!" msgid "Task complete - 10 likes!" msgstr "Цель выполнена - 10 лайков!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Обучите наш алгоритм тому, что вам нравится" @@ -12060,7 +12073,7 @@ msgstr "Условия" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Не удалось найти этот стартовый набор." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Вот и все, ребята!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Это всё!" @@ -12216,7 +12229,7 @@ msgstr "Похоже, на сервере возникли проблемы. П msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Стартовый набор, который вы пытаетесь просмотреть, недействителен. Вы можете удалить этот стартовый набор." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "Вы ввели неверный код подтверждения. По msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Тематический" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "При соединении с сервером возникла проблема" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Возникла проблема соединения с сервером, проверьте подключение к Интернету и повторите попытку." @@ -12283,8 +12296,8 @@ msgstr "Возникла проблема соединения с серверо msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Возникла проблема с загрузкой уведомлений. Нажмите здесь, чтобы повторить попытку." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Возникла проблема с загрузкой постов. Нажмите здесь, чтобы повторить попытку." @@ -12309,7 +12322,7 @@ msgstr "Возникла проблема с загрузкой информац msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Возникла проблема с удалением этой ленты. Проверьте подключение к Интернету и повторите попытку." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Эти настройки применимы только к ленте msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Этот {screenDescription} был помечен:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "У этой учётной записи несколько попыток верификации, но пока что она не верифицирована." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Этот пользователь указал, что не хочет, чтобы его профиль видели посетители без учётной записи." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Эта лента пуста! Возможно, вам нужно подписаться на большее количество пользователей или изменить настройки языка." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Эта лента пуста." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Этот псевдоним зарезервирован. Пожалуйста, попробуйте другой." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Эта метка была применена вами." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Этот маркировщик ещё не заявил, какие метки он публикует, и может быть неактивным." @@ -12621,13 +12634,13 @@ msgstr "Этот список пуст." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Этот пост утверждает, что был создан <0>{0}, но впервые был замечен Bluesky <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Этот пост утверждает, что был создан <0>{0 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Этот пост имеет неизвестный тип ограничения на ответы. Возможно, ваше приложение устарело." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Этот пост будет скрыт из лент и тем. Это невозможно отменить." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Автор этого поста отключил цитирование постов." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "У этого пользователя нет отображаемого имени, поэтому его нельзя верифицировать." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "У этого пользователя ещё нет ни одного подписчика." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Этот пользователь заблокировал вас. Вы не можете видеть их посты." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Этот пользователь есть в списке <0>{0}, msgid "This user is new here. Press for more info about when they joined." msgstr "Этот пользователь здесь недавно. Нажмите для получения дополнительной информации о том, когда он присоединился." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Этот пользователь не подписан ни на кого." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Это удалит @{0} из списка быстрого доступа." @@ -12786,7 +12801,7 @@ msgstr "Настройки веток" msgid "Threaded" msgstr "Как ветки" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Настройки веток" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Лучшее" @@ -12858,7 +12873,7 @@ msgstr "Лучшее" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Тема" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "Деревовидный вид" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Актуальные" @@ -12902,7 +12919,7 @@ msgstr "Актуальные" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Доверие рождается в отношениях, сообществах и общем контексте, поэтому мы также вводим <0>доверенных верификаторов — организации, которые могут непосредственно вручать верификацию." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "Недоступно" msgid "Unavailable feed information" msgstr "Информация о ленте недоступна" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Разблокировать учётную запись?" msgid "Unblock list" msgstr "Разблокировать список" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Отписаться от {0}" msgid "Unfollow account" msgstr "Отписаться от учётной записи" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Отписаться от пользователя" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Дизлайк" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Перестать игнорировать ветку" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Включить звук видео" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Открепить" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Открепить ленту" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Открепить от главной страницы" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Открепить список модерации" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Откреплено {0} от главной страницы" @@ -13258,11 +13277,11 @@ msgstr "Отписаться от этого маркировщика" msgid "Unsubscribed from list" msgstr "Подписка на список отменена" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Не удалось изменить видимость ответа" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Загрузить вместо этого фотографию" @@ -13355,7 +13374,7 @@ msgstr "Загрузить из файлов" msgid "Upload from Library" msgstr "Загрузить из библиотеки" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Загрузка изображений..." msgid "Uploading link thumbnail..." msgstr "Загрузка миниатюры ссылки..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Загрузка видео..." @@ -13408,7 +13427,7 @@ msgstr "Используйте его для входа в другое прил msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "Верификация не удалась, попробуйте ещё msgid "Verification settings" msgstr "Настройки верификации" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Настройки верификации" @@ -13618,7 +13637,7 @@ msgstr "Видео" msgid "Video failed to process" msgstr "Не удалось обработать видео" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Лента видео" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Видео от {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Видеоигры" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Видео приостановлено" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Видео воспроизводится" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Видео не найдено." @@ -13653,7 +13672,7 @@ msgstr "Видео не найдено." msgid "Video settings" msgstr "Настройки видео" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Видео загружено" @@ -13662,17 +13681,17 @@ msgstr "Видео загружено" msgid "Video: {0}" msgstr "Видео: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Видео" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Просмотреть аватар {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Посмотреть профиль {0}" @@ -13724,13 +13743,13 @@ msgstr "Посмотреть запись в блоге для получени msgid "View debug entry" msgstr "Просмотреть запись для отладки" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Просмотреть детали" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Просмотреть ветку полностью" @@ -13761,7 +13780,7 @@ msgstr "Показать больше" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Просмотр услуг маркировки, который предоставляет @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Просмотреть верификации этого пользователя" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Просмотр пользователей, которым понравилась эта лента" @@ -13831,7 +13850,7 @@ msgstr "Просмотр своего списка модерации" msgid "View your muted accounts" msgstr "Просмотр отключённых учётных записей" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Просмотреть свои верификации" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "У нас проблемы с сетью, попробуйте ещё раз" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Мы представляем новый уровень верификации на Bluesky — простые и понятные галочки." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Нам очень жаль, но нам не удалось найти msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Нам очень жаль, мы не смогли сейчас загрузить ваши игнорируемые слова. Пожалуйста, попробуйте ещё раз." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Нам очень жаль! Пост, на который вы отвечаете, был удален." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Как дела?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Кто может верифицировать?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Опаньки!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Написать пост" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Написать ответ" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "Вы больше не в прямом эфире" msgid "You are not allowed to upload videos." msgstr "Вы не можете загружать видео." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "Вы верифицированы. Вы потеряете статус msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Вы верифицированы. Вы потеряете статус верификации, если измените ваш псевдоним. <0>Узнать больше." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Вы всегда можете изменить свои интересы в разделе настроек \"Содержимое и медиа\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Теперь вы можете войти с помощью нового пароля." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Вы можете обновить это позже в своих настройках." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "Вы успешно проверили свой адрес электр msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Вы достигли временного лимита по загрузкам видео. Попробуйте ещё раз позже." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Вы ещё не создали стартовый набор!" @@ -14614,7 +14636,7 @@ msgstr "Вы можете добавить лишь до {STARTER_PACK_MAX_SIZE, msgid "You may only add up to 3 feeds" msgstr "Вы можете добавить не более 3 лент" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Чтобы получить стартовый набор, вы должны подписаться как минимум на семь других людей." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "Чтобы включить функцию 2FA, необходимо подтвердить адрес электронной почты." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Вы отреагировали {0}" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Вы будете подписаны на предложенных пользователей и ленты, как только создадите свою учётную запись!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Вы будете подписаны на предложенных пользователей, как только создадите свою учётную запись!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Ваша домашняя лента закончилась! Подпишитесь на больше учётных записей чтобы получать больше постов." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Вы достигли максимально допустимого количества запросов. Повторите попытку позже." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Вы достигли дневного лимита по загрузк msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Вы достигли дневного лимита по загрузкам видео (слишком много видео)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "У вас закончились видео для просмотра. Может быть, сейчас самое время сделать перерыв?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Ваша учётная запись" @@ -14835,11 +14857,11 @@ msgstr "Ваша учётная запись была приостановлен msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ваша учётная запись создана ещё недостаточно давно, чтобы вы могли загружать видео. Попробуйте ещё раз позже." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Ваши интересы были изменены!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Ваши интересы помогают нам найти то, что вам нравится!" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "Ваш пароль должен состоять не менее чем из 8 символов." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Ваш предпочтительный язык" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Ваша фотография в профиле, окруженная концентрическими кругами с фотографиями других пользователей" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Ваш ответ был отправлен" @@ -15005,7 +15027,7 @@ msgstr "Ваша жалоба будет отправлена на адрес <0 msgid "Your selected interests help us serve you content you care about." msgstr "Выбранные вами интересы помогают нам предоставлять вам содержимое, которое вас интересует." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/sv/messages.po b/src/locale/locales/sv/messages.po index 3d8eb12170..14bbd62f05 100644 --- a/src/locale/locales/sv/messages.po +++ b/src/locale/locales/sv/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: sv\n" +"Language: sv_SE\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 16:27\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorin ”{interestsDisplayName}” (aktiv)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(dolt blockerat meddelande)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(innehåller inbäddat innehåll)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(raderat meddelande)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(ogiltig inbjudningslänk till chatt)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(meddelande som skickades innan du gick med)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# timme} other {# timmar}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# etikett på ditt inlägg} other {# etiketter på ditt inlägg}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# etikett} other {# etiketter}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# gillamarkering} other {# gillamarkeringar}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# medlem} other {# medlemmar}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# ny medlemsförfrågan} other {# nya medlemsförfrågn #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# person} other {# personer}} reagerade med {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (konto)" @@ -251,36 +252,13 @@ msgstr "{0} lades till i chatten" msgid "{0} and {1} added to chat" msgstr "{0} och {1} lades till i chatten" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} och {1} gillar detta" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} och {others, plural, one {{1} annan} other {{2} andra}} gillar detta" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} och {othersLabel} gillar detta" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} följda" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} blockerar dig" @@ -324,14 +302,6 @@ msgstr "{0} lämnade" msgid "{0} left the group" msgstr "{0} lämnade gruppen" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} gillar detta" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} av 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagerade med {1}" @@ -388,27 +358,12 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} och {memberCount, plural, one {# annan} other {# andra}} lades till i chatten" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} och {others, plural, one {{2} annan} other {{3} andra}} gillar detta" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} och {othersLabel} gillar detta" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 #: src/view/com/feeds/FeedSourceCard.tsx:189 msgid "{0}, a feed by {1}, liked by {2}" -msgstr "{0}, ett flöde av {1}, gillat av {2}" +msgstr "{0}, ett flöde av {1}, gillas av {2}" #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} verifierade dig" msgid "{following} following" msgstr "{following} följda" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {inlägg} other {inlägg}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} kan inte läggas till" @@ -698,7 +660,7 @@ msgstr "{handle} kan inte läggas till" msgid "{handle} can't be messaged" msgstr "Det går inte att skicka meddelanden till {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "Det går inte att skicka meddelanden till {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# oläst notis} other {# olästa notise msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# kontakt} other {# kontakter}} hittades" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} annan} other {{1} andra}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} gick med i Bluesky för {timeAgoString} sedan" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} gick med i Bluesky med hjälp av ett startpaket för {timeAgoString} sedan" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, one {# tecken återstår} other {# tecken återstår}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} svarade" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} svarade {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} svarade dig" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# förfrågan} other {# förfrågningar}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ förfrågningar" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} tim sedan" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} är en betrodd verifierare" @@ -842,13 +795,13 @@ msgstr "{userName}s verifieringar" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {följda} other {följda}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citat} other {citat}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {återpublicering} other {återpubliceringar}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {sparning} other {sparningar}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {gillamarkering} other {gillamarkeringar}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> lade till dig" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Logga in<1> eller <2>skapa ett konto<3> <4>för att söka efter nyheter, sport, politik och allt annat som händer på Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dagar" msgid "7 days" msgstr "7 dagar" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "En samling av populära flöden som du kan hitta på Bluesky, inklusive News, Booksky, Game Dev, Blacksky och Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Ett nätverksfel uppstod. Kontrollera din internetanslutning" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "En ny kod har skickats" msgid "A new form of verification" msgstr "En ny form av verifiering" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Ett svar på ett meddelande som skickades innan du gick med" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "En skärmdump av inläggsverktyget. Bredvid publiceringsknappen syns den nya knappen ”Utkast” dekorerad med en fyrverkerieffekt. I skrivfältet nedanför syns texten ”Hallå, har ni hört? Bluesky har utkast nu!!!” (översatt från engelska)." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "En vald mottagare följs inte av avsändaren." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Förfrågan skickad! Gruppägaren kommer att granska din förfrågan." msgid "Accessibility" msgstr "Tillgänglighet" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Tillgänglighetsinställningar" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Konto ignorerat av lista" msgid "Account options" msgstr "Kontoalternativ" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Konto borttaget från snabbåtkomst" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Konton med en blå, vågkantad bockmarkering <0><1/> kan verifiera andra. Dessa betrodda verifierare är utvalda av Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktivitet från andra" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Aktivitetsnotiser" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Lägg till alternativtext (valfritt)" msgid "Add another account" msgstr "Lägg till ett annat konto" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Lägg till ett ytterligare inlägg" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Lägg till ytterligare ett inlägg i tråden" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Lägg till ytterligare ett sökfilter" @@ -1253,7 +1213,7 @@ msgstr "Lägg till automatiseringsetikett på kontot" msgid "Add emoji reaction" msgstr "Lägg till emoji-reaktion" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Lägg till filter" @@ -1338,7 +1298,7 @@ msgstr "Lägg till i dina flöden" msgid "Add to lists" msgstr "Lägg till i listor" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Lägg till i sparade inlägg" @@ -1400,7 +1360,7 @@ msgstr "Sexuellt explicit" msgid "Adult content" msgstr "Vuxeninnehåll" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Ger åtkomst till direktmeddelanden" msgid "Already have a code?" msgstr "Har du redan en kod?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Har du redan ett konto?" @@ -1614,7 +1574,7 @@ msgstr "Ett e-postmeddelande har skickats till {0}. Det innehåller en bekräfte msgid "An error has occurred" msgstr "Ett fel har uppstått" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Ett fel uppstod" @@ -1631,7 +1591,7 @@ msgstr "Ett fel uppstod vid hämtning av föreslagna konton." msgid "An error occurred while fetching the feed." msgstr "Ett fel uppstod under hämtningen av flödet." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ett fel uppstod när ditt startpaket skulle genereras. Vill du försöka igen?" @@ -1640,11 +1600,11 @@ msgstr "Ett fel uppstod när ditt startpaket skulle genereras. Vill du försöka msgid "An error occurred while hiding suggestion. {0}" msgstr "Ett fel uppstod när förslag skulle döljas. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Ett fel uppstod under inläsningen av videoklippet. Försök igen senare." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Ett fel uppstod under inläsningen av videoklippet. Försök igen." @@ -1684,7 +1644,7 @@ msgstr "Ett fel uppstod. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "En illustration som föreställer användaravatarer som flyger från en kontaktbok till Bluesky-appen" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "En illustration av flera Bluesky-inlägg tillsammans med ikonerna för återpublicera, gilla och kommentera" @@ -1705,17 +1665,15 @@ msgstr "En inbjudningslänk låter personer gå med i chatten utan att läggas t msgid "An issue not included in these options" msgstr "Något problematiskt som inte omfattas av de andra alternativen" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Ett problem uppstod när gruppchatten skulle skapas. Försök igen." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Ett problem uppstod när chatten skulle startas. Försök igen." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Ett problem uppstod när chatten skulle öppnas" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Ett problem uppstod när gruppchatten skulle startas. Försök igen." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Valfritt datum" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Alla" @@ -1802,7 +1760,7 @@ msgstr "Alla som följer mig" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "De som har tillgång till den kommer inte längre kunna gå med eller begära att få gå med. Du kan alltid skapa en ny länk." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Namn på applösenord måste vara minst 4 tecken långa" msgid "App passwords" msgstr "Applösenord" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Applösenord" @@ -1891,8 +1849,8 @@ msgstr "Begär omprövning av beslutet" msgid "Appeal this label" msgstr "Begär omprövning av den här etiketten" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Tillämpa pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arkiverat från {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arkiverat inlägg" @@ -1980,7 +1938,7 @@ msgstr "Är du säker på att du vill ta bort det här från dina flöden?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Är du säker på att du vill återkalla din förfrågan om att gå med i {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Är du säker på att du vill slänga det här inlägget?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Norrsken" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Automatiserat konto" @@ -2033,7 +1991,7 @@ msgstr "Automatiskt" msgid "Automation label" msgstr "Automatiseringsetikett" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatiseringsetikett" @@ -2050,12 +2008,16 @@ msgstr "Spela upp videoklipp och gif-bilder automatiskt" msgid "Available" msgstr "Tillgängligt" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Avatarskapare" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Du måste verifiera din e-post innan du kan skapa eller svara på ett inlägg." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Du måste verifiera din e‑postadress innan du kan skapa ett startpaket." @@ -2135,10 +2097,10 @@ msgstr "Innan du kan få notiser om {name}s inlägg måste du först verifiera d #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Inled ålderskontrollen med att fylla i fälten nedan." msgid "Beta Feature" msgstr "Betafunktion" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Betafunktioner" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Betafunktioner aktiverade" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Födelsedatum" msgid "Birthday" msgstr "Födelsedag" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Blockerat" msgid "Blocked accounts" msgstr "Blockerade konton" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blockerade konton" @@ -2282,7 +2250,7 @@ msgstr "Blockerade konton kan inte svara i dina trådar, omnämna dig eller på msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blockerade konton kan inte svara i dina trådar, omnämna dig eller på annat sätt interagera med dig. Du kan inte se deras innehåll, och de kan inte se ditt." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blockeringen hindrar inte den här etikettsättaren från att sätta etiketter på ditt konto." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan inte bekräfta äktheten av det angivna datumet." @@ -2330,7 +2299,7 @@ msgstr "Bluesky är ett öppet nätverk där du kan välja vilken tjänst som ha msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky är ett öppet nätverk där du kan välja din leverantör. Om du är ny här rekommenderar vi att du håller dig till standardalternativet Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky är bättre med vänner!" @@ -2358,7 +2327,7 @@ msgstr "Användarvillkor för Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky lagrar dina kontakter som kodad data. Om du tar bort dina kontakter raderas datan omedelbart." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky väljer en uppsättning av rekommenderade konton från personer i ditt nätverk." @@ -2425,24 +2394,25 @@ msgstr "Bläddra bland fler förslag på Utforska-sidan" msgid "Browse other feeds" msgstr "Bläddra bland andra flöden" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Bläddra bland inlägg om {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Bläddra bland inlägg med taggen {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Bläddra i startpaketet {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Bläddra i ämnet {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Bläddra inom ämnet {displayName}" @@ -2461,10 +2431,10 @@ msgstr "Knapp som tar dig tillbaka till hemtidslinjen" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" -msgstr "Av {0}" +msgstr "av {0}" #. placeholder {0}: authorProfile.handle #: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 @@ -2473,9 +2443,9 @@ msgstr "av @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "av <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Genom att skapa ett konto godkänner du våra <0>användarvillkor oc msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Genom att skapa ett konto godkänner du våra <0>användarvillkor." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" -msgstr "Av dig" +msgstr "av dig" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2504,7 @@ msgstr "Kameraåtkomst krävs" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Kameraåtkomst krävs" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Avbryt återaktivering och logga ut" msgid "Cancel reply" msgstr "Avbryt svar" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Avbryt sökning" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Ändringar i startpaketet kommer inte att återspeglas i listan efter skapandet. Listan blir en fristående kopia." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chatten ignorerades" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chatten hittades inte." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Chattalternativ" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Chattägare kan inte lämna sina gruppchattar." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Chattmottagare följs inte av avsändaren." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Inkorg för chattförfrågningar" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Chattförfrågningar" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chattinställningar" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chatten ignoreras inte längre" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chattar" @@ -2837,7 +2808,7 @@ msgstr "Välj metod för att verifiera din domän" msgid "Choose Feeds" msgstr "Välj flöden" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Välj åt mig" @@ -2854,7 +2825,7 @@ msgstr "Välj personer" msgid "Choose post languages" msgstr "Välj inläggsspråk" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Välj den här färgen som din avatar" @@ -2879,7 +2850,7 @@ msgstr "Välj din egen tidslinje! Flöden som har skapats av andra i gemenskapen msgid "Choose your password" msgstr "Välj ditt lösenord" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Välj ditt användarnamn" @@ -2966,7 +2937,7 @@ msgstr "Klicka här för att visa inbjudningslänken för den här gruppchatten" msgid "Click to open tag menu for {0}" msgstr "Klicka för att öppna taggmenyn för {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klicka för att försöka på nytt med misslyckat meddelande" @@ -3003,7 +2974,7 @@ msgstr "Klicka för att försöka på nytt med misslyckat meddelande" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Klicka för att försöka på nytt med misslyckat meddelande" msgid "Close" msgstr "Stäng" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Stäng aktiv dialogruta" @@ -3047,7 +3018,7 @@ msgstr "Stäng banderoll" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Stäng bildvisare" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Stäng meny" @@ -3090,7 +3061,7 @@ msgstr "Stäng banderollen för väntande förfrågningar" msgid "Close this dialog" msgstr "Stäng den här dialogrutan" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Stäng välkomstfönster" @@ -3098,7 +3069,7 @@ msgstr "Stäng välkomstfönster" msgid "Closes password update alert" msgstr "Stänger avisering om uppdatering av lösenord" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Stänger inläggsverktyget och slänger utkastet" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Färg" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Färgläge" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Serier" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Gemenskapens riktlinjer" @@ -3141,7 +3112,7 @@ msgstr "Gemenskapens riktlinjer" msgid "Complete onboarding and start using your account" msgstr "Slutför introduktionen och börja använda ditt konto" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Slutför kontrollen" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Skriv ett nytt inlägg" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Skriv inlägg som är upp till {0, plural, other {# tecken}} långa" @@ -3160,11 +3131,11 @@ msgstr "Skriv inlägg som är upp till {0, plural, other {# tecken}} långa" msgid "Compose reply" msgstr "Skriv svar" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Komprimerar gif-bild…" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Komprimerar videoklipp…" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Kontakta vårt supportteam" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Kontakta supporten" @@ -3253,7 +3224,7 @@ msgstr "Innehåll och media" msgid "Content and media" msgstr "Innehåll och media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Innehåll och media" @@ -3265,10 +3236,6 @@ msgstr "Innehåll blockerat" msgid "Content filters" msgstr "Innehållsfilter" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Innehåll från över hela nätverket som vi tror du kan gilla." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Innehållsspråk" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Innehåll som beskriver, framställer eller uppmuntrar till självskadebeteende" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Innehållsvarning" msgid "Content warnings" msgstr "Innehållsvarningar" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Utanför kontextmenyn. Klicka för att stänga menyn." @@ -3302,7 +3269,7 @@ msgstr "Utanför kontextmenyn. Klicka för att stänga menyn." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Utöka tråd…" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Fortsätt till gruppnamn" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Konversationen hittades inte." msgid "Copied build version to clipboard" msgstr "Byggversion kopierad till urklipp" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Länken kopierades till urklipp" @@ -3376,7 +3343,7 @@ msgstr "Länken kopierades till urklipp" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Kopiera applösenord" msgid "Copy at:// URI" msgstr "Kopiera at://-URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Kopiera författarens DID" @@ -3449,10 +3416,10 @@ msgstr "Kopiera länk" msgid "Copy link to list" msgstr "Kopiera länk till lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopiera länk till inlägg" @@ -3470,8 +3437,8 @@ msgstr "Kopiera länk till startpaket" msgid "Copy message text" msgstr "Kopiera meddelandetext" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Kopiera inläggets at://-URI" @@ -3490,7 +3457,7 @@ msgstr "Kopiera värde för TXT-post" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Upphovsrättspolicy" @@ -3540,11 +3507,11 @@ msgstr "Kunde inte följa alla matchningar. {0}" msgid "Could not leave chat" msgstr "Kunde inte lämna chatt" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Kunde inte lämna chatten." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Kunde inte läsa in flöde" @@ -3562,7 +3529,7 @@ msgstr "Kunde inte läsa in profil" msgid "Could not mute chat" msgstr "Kunde inte ignorera chatt" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Kunde inte ta bort medlemmen." @@ -3606,8 +3573,8 @@ msgstr "kor grisar" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Skapa" @@ -3624,26 +3591,26 @@ msgstr "Skapa en lista baserad på det här startpaketet" msgid "Create a QR code for a starter pack" msgstr "Skapa en QR-kod för ett startpaket" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Skapa ett startpaket" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Skapa ett startpaket" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Skapa ett startpaket åt mig" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Skapa konto" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Skapa ett konto" @@ -3666,15 +3633,15 @@ msgstr "Skapa ett konto" msgid "Create an account without using this starter pack" msgstr "Skapa ett konto utan att använda det här startpaketet" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Skapa en avatar istället" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Skapa ett till" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Skapa gruppchatt" @@ -3743,7 +3710,7 @@ msgstr "Kultur" msgid "Current beta features" msgstr "Aktuella betafunktioner" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Aktuell chatt" @@ -3770,8 +3737,8 @@ msgstr "Farliga substanser eller drogmissbruk" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Mörkt" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Mörk" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Mörkt tema" @@ -3814,7 +3781,7 @@ msgstr "Avvisa det här språkförslaget" msgid "Deepfake adult content" msgstr "Djupförfalskat vuxeninnehåll" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Förvald" @@ -3894,7 +3861,7 @@ msgstr "Radera mitt konto" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Radera inlägg" @@ -3988,7 +3955,7 @@ msgstr "Dialogruta: ställ in vem som får interagera med det här inlägget" msgid "Dialog: Set search filters" msgstr "Dialogruta: Ställ in sökfilter" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Dämpat" @@ -4002,7 +3969,7 @@ msgstr "Inaktivera" msgid "Disable 2FA" msgstr "Inaktivera 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Inaktivera undertexter" @@ -4045,9 +4012,9 @@ msgstr "Inaktiverat" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Släng" msgid "Discard changes?" msgstr "Vill du slänga ändringarna?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Vill du slänga utkastet?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Vill du slänga inlägget?" @@ -4079,6 +4046,10 @@ msgstr "Koppla från Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Be appar att inte visa mitt innehåll för utloggade användare" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Upptäck flöden" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Be appar att inte visa mitt innehåll för utloggade användare" msgid "Discover new custom feeds" msgstr "Upptäck nya anpassade flöden" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Upptäck nya flöden" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Upptäck nya flöden" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Avvisa" @@ -4103,19 +4070,19 @@ msgstr "Avvisa" msgid "Dismiss banner" msgstr "Avvisa banderoll" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Avvisa fel" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Avvisa kom-igång-guide" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Avvisa intressen" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Avvisa banderoll för liveevenemang" @@ -4142,7 +4109,7 @@ msgstr "Visa större ALT-märken" msgid "Display name" msgstr "Visningsnamn" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Lämna troll och klickbeten bakom dig. Hitta riktiga människor och samtal som betyder något för dig." @@ -4205,8 +4172,8 @@ msgstr "Ingen fara! Alla dina befintliga meddelanden och inställningar är spar #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Ingen fara! Alla dina befintliga meddelanden och inställningar är spar msgid "Done" msgstr "Klar" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Håll nere eller dubbeltryck på meddelandet för att lägga till en reaktion" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Dubbeltryck för att stänga dialogrutan" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Dubbeltryck för att gilla" @@ -4328,6 +4295,7 @@ msgstr "Ätstörningar" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Redigera bild" msgid "Edit interaction settings" msgstr "Redigera interaktionsinställningar" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Redigera intressen" @@ -4397,7 +4365,7 @@ msgstr "Redigera livesändningsstatus" msgid "Edit moderation list" msgstr "Redigera modereringslista" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Redigera mina flöden" @@ -4406,6 +4374,11 @@ msgstr "Redigera mina flöden" msgid "Edit name" msgstr "Redigera namn" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Redigera notisinställningar för {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Redigera personer" @@ -4444,7 +4417,7 @@ msgstr "Redigera användarlista" msgid "Edit who can reply" msgstr "Redigera vem som får svara" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Redigera ditt startpaket" @@ -4500,8 +4473,8 @@ msgstr "Bädda in HTML-kod" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Bädda in inlägg" @@ -4509,7 +4482,7 @@ msgstr "Bädda in inlägg" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Bädda in det här inlägget på din hemsida. Det är bara att kopiera följande text och klistra in den i HTML-koden på din hemsida." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Inbäddad videospelare" @@ -4533,7 +4506,7 @@ msgstr "Tillåt vuxeninnehåll" msgid "Enable beta features" msgstr "Aktivera betafunktioner" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Aktivera undertexter" @@ -4550,12 +4523,13 @@ msgstr "Aktivera extern media" msgid "Enable media players for" msgstr "Aktivera mediaspelare för" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Aktivera notiser för ett konto genom att besöka dess profil och trycka på <0>klockikonen <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Aktivera pushnotiser" @@ -4581,7 +4555,7 @@ msgstr "Visa trendande videoklipp i ditt Upptäck-flöde" msgid "Enabled" msgstr "Aktiverat" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Slut på flödet" @@ -4608,7 +4582,7 @@ msgstr "Ange ett ord eller en tagg" msgid "Enter code" msgstr "Ange kod" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Öppna helskärm" @@ -4650,11 +4624,11 @@ msgstr "Ange ditt användarnamn och lösenord" msgid "Enters full screen" msgstr "Öppnar helskärm" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Underhållning" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fel" @@ -4684,7 +4658,7 @@ msgstr "Ett fel uppstod när filen skulle sparas" msgid "Error receiving captcha response." msgstr "Fel vid mottagning av captcha-svar." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Fel: {error}" @@ -4696,8 +4670,8 @@ msgstr "Alla får svara" msgid "Everybody can reply to this post." msgstr "Alla får svara på det här inlägget." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Alla" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Alla" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Allt annat" @@ -4738,7 +4712,7 @@ msgstr "Undanta användare du följer" msgid "Excludes users you follow" msgstr "Undantar användare du följer" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Stäng helskärm" @@ -4755,11 +4729,11 @@ msgstr "Utöka lista över användare" msgid "Expand or collapse the full post you are replying to" msgstr "Utöka eller fäll ihop det inlägg som du svarar på" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Utöka inläggstext" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Utökar eller fäller ihop inläggstext" @@ -4802,15 +4776,15 @@ msgstr "Explicit eller potentiellt stötande media." msgid "Explicit sexual images." msgstr "Explicit sexuella bilder." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Utforska" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Utforska appen" @@ -4844,7 +4818,7 @@ msgstr "Extern media" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Extern media kan göra det möjligt för webbplatser att samla in information om dig och din enhet. Ingen information skickas eller begärs förrän du trycker på spelaknappen." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Inställningar för extern media" @@ -4886,7 +4860,7 @@ msgstr "Det gick inte att ändra användarnamn. Försök igen." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Det gick inte att kopiera länk" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Det gick inte att lämna gruppchatten" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Det gick inte att läsa in konversationer" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Det gick inte att läsa in flöden" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Det gick inte att läsa in flödesinställningar" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Det gick inte att läsa in notisinställningar." @@ -5012,14 +4987,14 @@ msgstr "Det gick inte att läsa in inställning." msgid "Failed to load profiles" msgstr "Det gick inte att läsa in profiler" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Det gick inte att läsa in föreslagna flöden" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Det gick inte att läsa in föreslagna konton att följa" @@ -5027,12 +5002,12 @@ msgstr "Det gick inte att läsa in föreslagna konton att följa" msgid "Failed to lock group chat" msgstr "Det gick inte att låsa gruppchatt" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Det gick inte att markera chattarna som lästa" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Det gick inte att återkalla din förfrågan. Försök igen." msgid "Failed to resolve location. Please try again." msgstr "Det gick inte att fastställa din plats. Försök igen." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Det gick inte att spara utkast" @@ -5191,7 +5166,7 @@ msgstr "Falskt konto eller bot" msgid "False information about elections" msgstr "Falsk information om val eller röstning" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Flöde" @@ -5212,7 +5187,7 @@ msgstr "Flödets skapare" msgid "Feed identifier" msgstr "Flödets identifierare" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Meny för flöde" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback skickad till flödesoperatör" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Flöden uppdaterade!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Flöden som vi tror du kan gilla." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Sök efter uppdatering" @@ -5273,11 +5244,11 @@ msgstr "Sök efter uppdatering" msgid "File saved successfully!" msgstr "Filen sparades utan problem!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Filtrera efter författare" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrera efter författare (nuvarande: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Filtrera sökningen efter {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrera vem som kan välja att få notiser om din aktivitet" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrera vem du får notiser från" @@ -5352,8 +5323,8 @@ msgstr "Hitta konton att följa" msgid "Find and invite friends" msgstr "Hitta och bjud in vänner" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Hitta kontakter" @@ -5387,7 +5358,7 @@ msgstr "Hitta dina vänner" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Hitta dina vänner på Bluesky genom att verifiera ditt telefonnummer och matcha med dina kontakter. Vi skyddar din information, och du bestämmer vad som händer härnäst. <0>Läs mer" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Hitta din gemenskap" @@ -5429,7 +5400,7 @@ msgstr "Fokusera sökfältet" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Följ {0}" msgid "Follow {displayName}" msgstr "Följ {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Följ {handle}" @@ -5453,11 +5424,11 @@ msgstr "Följ {handle}" msgid "Follow 10 accounts" msgstr "Följ 10 konton" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Följ 10 personer för att komma igång" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Följ 7 konton" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Följare kan gå med" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Följare av @{0} som du känner" @@ -5544,7 +5515,7 @@ msgstr "Följare som du känner" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Följer {0}" msgid "Following {displayName}" msgstr "Följer {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Följer {handle}" @@ -5578,21 +5549,21 @@ msgstr "Följer {handle}" msgid "Following feed preferences" msgstr "Inställningar för Följer-flödet" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Inställningar för Följer-flödet" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Följer dig" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Typsnitt" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Teckenstorlek" @@ -5612,13 +5583,13 @@ msgstr "Av säkerhetsskäl kommer vi att skicka en bekräftelsekod till din e‑ msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Av säkerhetsskäl kommer du inte kunna se det här igen. Om du tappar bort applösenordet måste du skapa ett nytt." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Vi rekommenderar tematypsnittet för bästa upplevelse." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "För dig" @@ -5628,7 +5599,7 @@ msgstr "För dig" msgid "Forever" msgstr "Obegränsad" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Slipp allt brus" @@ -5647,11 +5618,13 @@ msgstr "Glömt lösenordet?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Fyra meddelandebubblor i en gruppchatt. I bilden är meddelandena på engelska. Första meddelandet: ”Har du hört? Bluesky har gruppchattar nu!” Andra meddelandet: ”va, skämtar du?” Tredje meddelandet: ”Wow, 50 medlemmar i en chatt!” Fjärde meddelandet: ”Man kan skicka inbjudningslänkar också!”" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Befria ditt flöde" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Från" @@ -5674,7 +5647,7 @@ msgstr "Från <0/>" msgid "From these people" msgstr "Från dessa personer" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generera ett startpaket" @@ -5718,39 +5691,39 @@ msgstr "Få tidig åtkomst till experimentella funktioner vi testar." msgid "Get help" msgstr "Få hjälp" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Få notiser när andra använder dina startpaket vid registrering, samt om verifiering och annan aktivitet." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Få notiser när andra följer dig." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Få notiser när andra gillar dina inlägg." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Få notiser när andra gillar dina återpubliceringar." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Få notiser när du omnämns av andra." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Få notiser när andra citerar dina inlägg." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Få notiser när andra svarar på dina inlägg." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Få notiser när andra återpublicerar dina inlägg." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Få notiser när andra återpublicerar dina återpubliceringar." @@ -5762,15 +5735,15 @@ msgstr "Få notiser när andra skickar meddelandeförfrågningar till dig." msgid "Get notifications when people send you messages." msgstr "Få notiser när andra skickar meddelanden till dig." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Få notiser om aktivitet på inlägg du prenumererar på." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Bli notifierad om nya inlägg" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Få notiser om inlägg och svar från personer du väljer." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Bli notifierad om nya inlägg från {name}" @@ -5799,11 +5772,11 @@ msgstr "Kom igång" msgid "GIF" msgstr "Gif-bild" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "Gif-bild uppladdad" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Ge din profil ett ansikte" @@ -5813,20 +5786,20 @@ msgstr "Förhärligande av våld" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Sänd live i" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Gå till {0}s profil" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Gruppchattens namn uppdaterades" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Inställningar för gruppchatt" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Gruppchattar kan ha maximalt {0, plural, other {# personer}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Gruppen är låst" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Gruppnamn" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Gruppnamnet är för långt. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Maximalt antal tecken är #.}}" @@ -6077,7 +6051,7 @@ msgstr "Skadliga eller riskfyllda aktiviteter" msgid "Harming or endangering minors" msgstr "Innehåll som kan skada eller utsätta minderåriga för fara" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtagg" @@ -6098,7 +6072,7 @@ msgstr "Har du en kod? <0>Klicka här." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Har vi tagit fel på var du befinner dig? <0>Tryck här för att uppdatera din plats med GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Har du problem?" @@ -6114,7 +6088,7 @@ msgstr "Hålls av Bluesky i 7 dagar för att förhindra missbruk, därefter rade msgid "Help" msgstr "Hjälp" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Låt folk veta att du inte är en bot genom att ladda upp en bild eller skapa en avatar." @@ -6140,7 +6114,7 @@ msgstr "Hej där!" msgid "Hidden" msgstr "Dolt" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Dolt av dina modereringsinställningar." @@ -6148,9 +6122,9 @@ msgstr "Dolt av dina modereringsinställningar." msgid "Hidden list" msgstr "Dold lista" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Dold lista" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Dölj" @@ -6198,7 +6172,7 @@ msgstr "Dölj svar för alla" msgid "Hide reply for me" msgstr "Dölj svar för mig" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Dölj det här kortet" @@ -6218,12 +6192,12 @@ msgstr "Dölj det här svaret?" msgid "Hide translation" msgstr "Dölj översättning" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Dölj trendande ämnen" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Dölj trendande ämnen?" @@ -6240,7 +6214,7 @@ msgstr "Dölj användarlista" msgid "Hide verification badges" msgstr "Dölj verifieringsmärken" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Döljer innehållet" @@ -6293,8 +6267,8 @@ msgstr "Hmmmm, vi kunde inte ladda den modereringstjänsten." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Vänta lite! Vi ger gradvis tillgång till videoklipp till fler användare, och du står fortfarande i kön. Försök igen senare!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Kontoleverantör: {0}" msgid "Hosting provider: Bluesky" msgstr "Kontoleverantör: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Hett" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Så här fungerar det:" @@ -6409,9 +6379,10 @@ msgstr "Om du uppdaterar din e-postadress kommer 2FA via e-post att inaktiveras. msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Om du vill ändra ditt lösenord skickar vi en kod till dig för att verifiera att det här är ditt konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." -msgstr "Om du vill begränsa vem som kan få notiser om ditt kontos aktivitet kan du ändra detta under <0>Inställningar → Integritet och säkerhet." +msgstr "Om du vill begränsa vem som kan få notiser om ditt kontos aktivitet kan du ändra det under <0>Inställningar → Integritet och säkerhet." #: src/components/dialogs/ServerInput.tsx:210 msgid "If you're a developer, you can host your own server." @@ -6548,7 +6519,7 @@ msgstr "I appen, Push, Från personer du följer" msgid "In-app, push, people you follow" msgstr "I appen, Push, Från personer du följer" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Inkorgen är tom" @@ -6560,6 +6531,7 @@ msgstr "Inkorgen är tom!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Just nu är det bara du! Lägg till fler personer i ditt startpaket genom att söka ovan." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Jobb-ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "Delta i samtalen" msgid "Journalism" msgstr "Journalistik" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Fortsätt redigera" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS webbplats" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Markerat av {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Markerat av användaren." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiketter" @@ -6852,7 +6824,7 @@ msgstr "Etiketter tillagda" msgid "Labels applied to this post" msgstr "Etiketter satta på det här inlägget" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etiketter är anteckningar som sätts på användare och innehåll. De kan användas för att dölja, varna och kategorisera inom nätverket." @@ -6864,7 +6836,7 @@ msgstr "Etiketter på ditt konto" msgid "Language" msgstr "Språk" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Språkinställningar" @@ -6874,7 +6846,7 @@ msgstr "Språkinställningar" msgid "Languages" msgstr "Språk" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Större" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "Senast initierad nyss" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Senaste" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Läs mer" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Läs mer" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Läs mer om <0>hur du använder avancerade sökfilter." @@ -6937,8 +6909,8 @@ msgstr "Läs mer om att importera kontakter" msgid "Learn more about self hosting your PDS." msgstr "Läs mer om att driva din egen PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Läs mer om den moderering som tillämpas på det här innehållet" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Läs mer om förändringarna och hur du kan dela med dig av dina synpunkter i vårt blogginlägg." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Läs mer om den här varningen" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "Läs mer i dina <0>kontoinställningar." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Läs mer." @@ -6993,8 +6965,8 @@ msgstr "Lämna" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Du är på väg att lämna Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Om du lämnar den här chatten kommer den att låsas permanent, och du kommer inte kunna gå med i den igen." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Du lämnade gruppchatten." @@ -7042,7 +7014,7 @@ msgstr "Du lämnade gruppchatten." msgid "left to go." msgstr "kvar." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Låt mig välja" @@ -7057,7 +7029,7 @@ msgstr "Sätt igång!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Ljust" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Ljus" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Gilla" @@ -7076,7 +7048,7 @@ msgstr "Gilla" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Gilla 10 inlägg" @@ -7085,7 +7057,7 @@ msgstr "Gilla 10 inlägg" msgid "Like 10 posts to train the Discover feed" msgstr "Gilla 10 inlägg för att träna Upptäck-flödet" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Gilla det här flödet" @@ -7093,45 +7065,63 @@ msgstr "Gilla det här flödet" msgid "Like this labeler" msgstr "Gilla den här etikettsättaren" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" -msgstr "Gillat av" +msgstr "Gillas av" #: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:22 #: src/view/screens/ProfileFeedLikedBy.tsx:22 msgid "Liked By" -msgstr "Gillat av" +msgstr "Gillas av" #. placeholder {0}: count || 0 #. placeholder {0}: feed.likeCount || 0 #: src/components/FeedCard.tsx:249 #: src/view/com/feeds/FeedSourceCard.tsx:173 msgid "Liked by {0, plural, one {# user} other {# users}}" -msgstr "Gillat av {0, plural, one {# användare} other {# användare}}" +msgstr "Gillas av {0, plural, one {# användare} other {# användare}}" + +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Gillas av {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Gillas av {0} och {1}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" -msgstr "Gillat av {likeCount, plural, one {# användare} other {# användare}}" +msgstr "Gillas av {likeCount, plural, one {# användare} other {# användare}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Gillamarkeringar" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Gillamarkeringar på dina återpubliceringar" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Gillamarkeringar på det här inlägget" @@ -7144,7 +7134,7 @@ msgstr "Linjär vy" msgid "Link copied to clipboard" msgstr "Länk kopierad till urklipp" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listan ignoreras inte längre" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Pågående liveevenemang: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Liveevenemang dolt" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Liveevenemang synliggjort" @@ -7279,12 +7269,12 @@ msgstr "Livesändnings­funktionen är i beta" msgid "Live link" msgstr "Länk till livesändning" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Läs in fler" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Läs in fler föreslagna flöden" @@ -7292,8 +7282,8 @@ msgstr "Läs in fler föreslagna flöden" msgid "Load new notifications" msgstr "Läs in nya notiser" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Lås den här gruppchatten" msgid "Locked" msgstr "Låst" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Logg" @@ -7387,7 +7377,7 @@ msgstr "Kärleksfulla gif-bilder" msgid "Make adjustments to email settings for your account" msgstr "Gör justeringar i ditt kontos e-postinställningar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Skapa ett åt mig" @@ -7418,15 +7408,15 @@ msgstr "Manuellt" msgid "Mark all as read" msgstr "Markera alla som lästa" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Markera alla chattar som lästa" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Markera som läst" msgid "Marked all as read" msgstr "Markerade alla som lästa" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Markerade alla chattar som lästa" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Markerade alla förfrågningar som lästa" @@ -7456,8 +7446,12 @@ msgstr "Markerade alla förfrågningar som lästa" msgid "Maybe later" msgstr "Kanske senare" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Mig" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7469,7 @@ msgstr "Media lagrad på en annan enhet" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media som kan vara störande eller olämplig för vissa målgrupper." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Medlemmen togs bort från gruppchatten." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "omnämnda användare" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Omnämnanden" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Meddelandet raderades" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Det gick inte att skicka meddelande." @@ -7563,15 +7557,15 @@ msgstr "Meddelandet är för långt ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Meddelandealternativ" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Meddelanden" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Meddelanden från den här personen är dolda så länge personen blockerar dig." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Meddelanden från den här personen är dolda så länge du blockerar personen." @@ -7592,7 +7586,7 @@ msgstr "Vilseledning" msgid "Missing media" msgstr "Media saknas" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderering" @@ -7636,7 +7630,7 @@ msgstr "Modereringslistan uppdaterades" msgid "Moderation lists" msgstr "Modereringslistor" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Modereringslistor" @@ -7645,7 +7639,7 @@ msgstr "Modereringslistor" msgid "moderation settings" msgstr "modereringsinställningar" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Modereringslägen" @@ -7786,7 +7780,7 @@ msgstr "Ignoreras" msgid "Muted accounts" msgstr "Ignorerade konton" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Ignorerade konton" @@ -7867,7 +7861,6 @@ msgstr "Behöver du skicka in ett upphovsrättsärende, en juridisk begäran ell msgid "Nevermind, create a handle for me" msgstr "Det var inget. Skapa ett användarnamn åt mig" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nytt" @@ -7893,11 +7886,11 @@ msgstr "{postsCount, plural, one {Nytt} other {Nya}} inlägg från {firstAuthorN #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Ny chatt" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Ny funktion" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nya följare" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Ny gruppchatt" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Ny gruppchatt" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Ny gruppchatt med:" @@ -7966,13 +7959,13 @@ msgstr "Ny lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Nya meddelandeförfrågningar" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Nya meddelanden" @@ -7982,12 +7975,12 @@ msgstr "Nya meddelanden" msgid "New password" msgstr "Nytt lösenord" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nytt inlägg" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Senaste svar först" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Nyheter" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Nästa bild" msgid "Night" msgstr "Natt" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Inga annonser, ingen påträngande spårning, inga engagemangsfällor. Bluesky värnar om din tid och ditt fokus." @@ -8098,7 +8091,7 @@ msgstr "Ingen sluttid inställd" msgid "No feeds found. Try searching for something else." msgstr "Inga flöden kunde hittas." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Inga följare ännu" @@ -8118,7 +8111,7 @@ msgstr "Ingen bild" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Inga gillamarkeringar ännu" @@ -8135,7 +8128,7 @@ msgstr "Inga listor" msgid "No longer following {0}" msgstr "{0} följs inte längre" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Ingen media ännu" @@ -8143,7 +8136,7 @@ msgstr "Ingen media ännu" msgid "No messages yet" msgstr "Inga meddelanden ännu" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Inget mer doomscrollande orsakat av skräpfyllda algoritmer. Hitta flöden som arbetar för dig – inte emot dig." @@ -8184,12 +8177,12 @@ msgstr "Ingen kan skicka meddelanden" msgid "No posts here" msgstr "Här finns inga inlägg" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Inga inlägg ännu" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Inga citat ännu" @@ -8202,7 +8195,7 @@ msgstr "Inga senaste gif-bilder ännu. Välj en för att se den här." msgid "No replies" msgstr "Inga svar" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Inga svar ännu" @@ -8217,13 +8210,13 @@ msgstr "Inga resultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Inga resultat" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Inga resultat för ”{0}”." @@ -8236,23 +8229,23 @@ msgstr "Inget resultat hittades" msgid "No results found for \"{query}\"" msgstr "Inget resultat hittades för ”{query}”" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "Inga resultat hittades för ”<0>{query}” med avancerade sökfilter tillämpade." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "Inga resultat hittades för ”<0>{query}”." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Inga resultat hittades för din sökning med avancerade sökfilter tillämpade." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Inga resultat." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Inga startpaket ännu" @@ -8265,7 +8258,7 @@ msgstr "Nej tack" msgid "No translation received from your device." msgstr "Ingen översättning mottagen från din enhet." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Inga videoinlägg ännu" @@ -8278,7 +8271,7 @@ msgstr "Ingen" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ingen har gillat det här ännu. Du kanske kan bli den första!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ingen har citerat det här ännu. Du kanske kan bli den första!" @@ -8298,6 +8291,10 @@ msgstr "Intima bilder eller videoklipp delade utan samtycke" msgid "Non-sexual Nudity" msgstr "Icke-sexuell nakenhet" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Inget" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Ej tillgängligt på denna plattform." msgid "Not followed by anyone you’re following" msgstr "Följs inte av någon som du följer" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Hittades inte" @@ -8333,7 +8330,7 @@ msgstr "Anmärkning om delning" 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 "Obs: Bluesky är ett öppet och publikt nätverk. Den här inställningen begränsar endast ditt kontos synlighet på Blueskys app och webbplats. Andra appar kanske inte respekterar den här inställningen. Ditt innehåll kan fortfarande visas för utloggade användare genom andra appar och webbplatser." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Obs: Det här inlägget visas bara för inloggade användare." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Inget sparat ännu" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Notisinställningar" @@ -8353,11 +8350,12 @@ msgstr "Notisinställningar" msgid "Notification sounds" msgstr "Notisljud" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Åh nej!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okej" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Återställning av kom-igång-guide" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "En av de valda mottagarna tillåter inte gruppchattar." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "En av de valda mottagarna har blockerat dig och kan inte nås via meddelanden." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "En eller flera gif-bilder saknar alternativtext." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "En eller flera bilder saknar alternativtext." @@ -8454,11 +8454,11 @@ msgstr "En eller flera av de filer du valt stöds inte." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "En eller flera av de filer du valt är för stora. Maxstorlek är {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Ett eller flera inlägg är för långa för att sparas som utkast. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {Maximalt antal tecken är #.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Ett eller flera videoklipp saknar alternativtext." @@ -8471,7 +8471,7 @@ msgstr "Endast {0} får svara." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Endast {0} av {1} {2, plural, one {bild} other {bilder}} lades till. Gränsen är {MAX_GALLERY_IMAGES} bilder" @@ -8519,7 +8519,7 @@ msgstr "Endast inlägg med videoklipp" msgid "Only replies" msgstr "Endast svar" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Endast WebVTT-filer (.vtt) stöds" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Hoppsan, den här profilen finns inte. Försök med att skanna en annan." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Hoppsan!" @@ -8544,7 +8544,7 @@ msgstr "Hoppsan!" msgid "Open advanced search options" msgstr "Öppna avancerade sökalternativ" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Öppna avatarskapare" @@ -8570,21 +8570,22 @@ msgstr "Öppna konversationsalternativ" msgid "Open draft" msgstr "Öppna utkast" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Öppna sidpanel" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Öppna emoji-väljaren" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Öppna dialogruta med information om flöde" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Öppna meny för flödesalternativ" @@ -8627,7 +8628,7 @@ msgstr "Öppna felsökningssida för moderering" msgid "Open muted words and tags settings" msgstr "Öppna inställningar för ignorerade ord och taggar" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Öppna paket" @@ -8699,7 +8700,7 @@ msgstr "Öppnar ytterligare detaljer för en loggpost" msgid "Opens alt text dialog" msgstr "Öppnar dialogruta för alternativtext" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Öppnar kameran på enheten" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Öppnar guiden för att skapa ett nytt Bluesky-konto" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Öppnar guide för att logga in på ditt befintliga Bluesky-konto" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Lösenordet har uppdaterats!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausa" @@ -8925,12 +8926,12 @@ msgstr "Pausa" msgid "Pause GIF" msgstr "Pausa gif-bild" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausa video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personer" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Personer som {ownerName} följer kan begära att få gå med" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personer som följs av @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personer som följer @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Personer jag följer" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Personer jag följer kan begära att få gå med" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Personer du följer" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Bilder avsedda för vuxna." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fäst flöde" @@ -9034,7 +9035,7 @@ msgstr "Fäst flöde" msgid "Pin to home" msgstr "Fäst på hem" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fäst på Hem" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Fäst" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Fäste {0} på Hem" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Fäst i dina flöden" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Spela" @@ -9076,8 +9077,8 @@ msgstr "Spela {0}" msgid "Play GIF" msgstr "Spela upp gif-bild" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Spela upp videoklipp" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Skriv ditt meddelande nedan:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politik" @@ -9269,7 +9270,7 @@ msgstr "Politik" msgid "Porn" msgstr "Porr" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicera" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Inlägg" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Publicera ett foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Publicera ett videoklipp" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicera alla" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Publicera ändå" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Inlägg blockerat" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Inlägg av @{0}" @@ -9340,7 +9341,7 @@ msgstr "Inlägg dolt av dig" msgid "Post interaction settings" msgstr "Interaktionsinställningar för inlägg" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Interaktionsinställningar för inlägg" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Inlägget fästes" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Inlägg sparat" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Inlägget lossades" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Inlägg" @@ -9398,6 +9396,10 @@ msgstr "Inlägg kan ignoreras baserat på textinnehåll, taggar eller bådadera. msgid "Posts hidden" msgstr "Inlägg dolda" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Inlägg, Svar" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potentiellt vilseledande länk" @@ -9449,20 +9451,21 @@ msgstr "Integritet" msgid "Privacy and security" msgstr "Integritet och säkerhet" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Integritet och säkerhet" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Integritets- och säkerhetsinställningar" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Integritetspolicy" msgid "Privacy violation of a minor" msgstr "Kränkning av minderårigs integritet" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Bearbetar gif-bild…" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Bearbetar videoklipp…" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Publika, delningsbara listor över användare som kan ignoreras eller blockeras i grupp." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicera inlägg" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicera samtliga inlägg" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicera samtliga svar" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicera samtliga svar" @@ -9599,12 +9602,12 @@ msgstr "Citatinlägg inaktiverade" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citat" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citat av det här inlägget" @@ -9647,7 +9650,7 @@ msgstr "Återaktivera ditt konto" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Läs {0, plural, one {ett svar till} other {# svar till}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Läs om hur du använder avancerade sökfilter" @@ -9657,11 +9660,11 @@ msgstr "Läs om hur du använder avancerade sökfilter" msgid "Read blog post" msgstr "Läs blogginlägget" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Visa mindre" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Visa mer" @@ -9687,11 +9690,11 @@ msgstr "Läs Blueskys integritetspolicy" msgid "Read the Bluesky Terms of Service" msgstr "Läs Blueskys användarvillkor" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Äkta samtal." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Äkta människor." @@ -9721,10 +9724,6 @@ msgstr "Senaste sökningar" msgid "Recently used" msgstr "Senast använda" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Rekommenderat" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Återanslut" @@ -9748,7 +9747,7 @@ msgstr "Avvisa chattförfrågan" msgid "Reject join request" msgstr "Avvisa medlemsförfrågan" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Ladda om konversationer" @@ -9766,7 +9765,7 @@ msgstr "Ladda om konversationer" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Ta bort" @@ -9792,8 +9791,8 @@ msgstr "Ta bort {displayName}?" msgid "Remove {q}" msgstr "Ta bort {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Ta bort konto" @@ -9845,15 +9844,15 @@ msgstr "Ta bort filter" msgid "Remove from chat" msgstr "Ta bort från chatt" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Ta bort från mina flöden" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Ta bort från snabbåtkomst?" @@ -9862,7 +9861,7 @@ msgstr "Ta bort från snabbåtkomst?" msgid "Remove from saved feeds" msgstr "Ta bort från sparade flöden" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Ta bort från sparade inlägg" @@ -9880,8 +9879,8 @@ msgstr "Ta bort bild" msgid "Remove live status" msgstr "Ta bort livesändningsstatus" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Ta bort medlem" @@ -9943,7 +9942,7 @@ msgstr "Togs bort från lista" msgid "Removed from saved feeds" msgstr "Togs bort från sparade flöden" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Togs bort från sparade inlägg" @@ -9952,7 +9951,7 @@ msgstr "Togs bort från sparade inlägg" msgid "Removed from starter pack" msgstr "Togs bort från startpaket" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Svarade dig" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Besvarat meddelande från {senderName}, tryck för att rulla till det" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Det besvarade meddelandet skickades innan du gick med" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Besvarat meddelande, tryck för att rulla till det" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Svar" @@ -10037,7 +10037,7 @@ msgstr "Svar är inaktiverat för det här inlägget." msgid "Reply" msgstr "Svara" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Svara" @@ -10098,8 +10098,8 @@ msgstr "Anmäl konversation" msgid "Report dialog" msgstr "Dialogruta för anmälan" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Anmäl flöde" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Återpublicerat av dig" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Återpubliceringar" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Återpubliceringar av det här inlägget" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Återpubliceringar av dina återpubliceringar" @@ -10253,7 +10253,7 @@ msgstr "Förfrågan skickad" msgid "Requests" msgstr "Förfrågningar" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Försöker igen med den senaste misslyckade åtgärden" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Går tillbaka till startsidan" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Går tillbaka till föregående sida" @@ -10446,27 +10446,27 @@ msgstr "Spara födelsedatum" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Spara ändringar" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Spara ändringar?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Spara utkast" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Spara utkast?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Spara QR-kod" msgid "Save these options for next time" msgstr "Spara mina val till nästa gång" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Spara till mina flöden" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Sparade flöden" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Sparade inlägg" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Sparat i dina flöden" @@ -10520,8 +10520,8 @@ msgstr "Sparat i dina flöden" msgid "Say hello!" msgstr "Säg hej!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Säg hej till någon" @@ -10535,7 +10535,7 @@ msgstr "Skanna" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Skanna QR-kod" @@ -10543,15 +10543,15 @@ msgstr "Skanna QR-kod" msgid "Science" msgstr "Vetenskap" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Rulla åt vänster" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Rulla åt höger" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Rulla till det besvarade meddelandet" @@ -10564,8 +10564,8 @@ msgstr "Gå till toppen" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Sök" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Sök i @{0}s inlägg" @@ -10612,11 +10612,11 @@ msgstr "Sök efter {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Sök efter flöden att föreslå åt andra." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Sök efter fler konton" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Sök efter fler flöden" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Sök gif-bilder" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Sökning är för närvarande inte tillgängligt för utloggade" @@ -10709,6 +10709,7 @@ msgstr "Se jobb på Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Se fler" @@ -10716,8 +10717,12 @@ msgstr "Se fler" msgid "See more suggested profiles" msgstr "Se fler föreslagna profiler" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "Se fler trendande ämnen" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Se föreslagna konton" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Uppspelningsreglage. Använd piltangenterna för att spola framåt och bakåt, samt mellanslag för att spela upp/pausa" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Välj kategorin ”{interestsDisplayName}”" @@ -10748,7 +10753,7 @@ msgstr "Välj {0}" msgid "Select {langName}" msgstr "Välj {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Välj en färg" @@ -10764,11 +10769,11 @@ msgstr "Välj konto" msgid "Select an app language" msgstr "Välj ett appspråk" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Välj en avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Välj en emoji" @@ -10780,12 +10785,13 @@ msgstr "Välj ett alternativ" msgid "Select app language" msgstr "Välj appspråk" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Välj undertextfil (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Välj chatten ”{name}”" @@ -10826,7 +10832,7 @@ msgstr "Välj gif-bild" msgid "Select GIF \"{0}\"" msgstr "Välj gif-bild ”{0}”" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Välj medlemmar till gruppchatten" @@ -10864,7 +10870,7 @@ msgstr "Välj primärt språk" msgid "Select telephone code" msgstr "Välj landskod" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Välj emojin {emojiName} som din avatar" @@ -10945,7 +10951,8 @@ msgstr "Skicka meddelande" msgid "Send post to {name}" msgstr "Skicka inlägg till {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Skicka inlägg till…" @@ -10963,12 +10970,12 @@ msgstr "Skicka meddelandet från din telefon" msgid "Send verification email" msgstr "Skicka e-post för verifiering" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Skicka via direktmeddelande" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Skicka via chatt" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Ställ in din kontoleverantör manuellt" msgid "Sets email for password reset" msgstr "Ställer in e-postadress för återställning av lösenord" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Inställningar" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Inställningar för aktivitet från andra" @@ -11036,49 +11043,49 @@ msgstr "Inställningar för aktivitet från andra" msgid "Settings for allowing others to be notified of your posts" msgstr "Inställningar för att tillåta andra att bli notifierade om dina inlägg" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Notisinställningar för gillamarkeringar" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Notisinställningar för omnämnanden" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Notisinställningar för nya följare" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Notisinställningar för allt annat" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Notisinställningar för gillamarkeringar på dina återpubliceringar" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Inställningar för notiser om nya meddelandeförfrågningar" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Inställningar för notiser om nya meddelanden" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Notisinställningar för återpubliceringar av dina återpubliceringar" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Notisinställninngar för citat" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Notisinställningar för svar" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Notisinställningar för återpubliceringar" @@ -11115,8 +11122,8 @@ msgstr "Dela åldersgrupp" msgid "Share anyway" msgstr "Dela ändå" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Dela författarens DID" @@ -11127,7 +11134,7 @@ msgstr "Dela författarens DID" msgid "Share feedback" msgstr "Lämna feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialogruta för länkdelning" msgid "Share my profile" msgstr "Dela min profil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Dela inläggets at://-URI" @@ -11169,12 +11176,12 @@ msgstr "Dela profil" msgid "Share QR code" msgstr "Dela QR-kod" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Dela det här flödet" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Dela den här sökningen" @@ -11186,8 +11193,8 @@ msgstr "Dela det här startpaketet" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Dela det här startpaketet och hjälp andra att gå med i din gemenskap på Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Dela dina kontakter för att hitta vänner" msgid "Share your thoughts…" msgstr "Dela med dig av dina tankar…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testare för delade inställningar" @@ -11219,7 +11226,7 @@ msgstr "När du delar din åldersgrupp delar du bara det intervall som är koppl msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "När du delar din åldersgrupp delar du bara det intervall som är kopplat till ditt Google-konto, till exempel att du är 18 år eller äldre. <0>Din exakta ålder eller ditt födelsedatum delas inte, och informationen lämnar aldrig din enhet. Därför ger det här alternativet endast åtkomst för den här enheten. Du kan också välja att göra en <1>fullbordad verifiering via vår betrodda partner KWS. En sådan möjliggör åtkomst från alla plattformar." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Visa" msgid "Show alt text" msgstr "Visa alternativtext" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Visa ändå" @@ -11274,8 +11281,8 @@ msgstr "Visa listan ändå" msgid "Show lists of users to select from" msgstr "Visa listor över användare att välja mellan" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Visa mer" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Visa varning och filtrera i flöden" msgid "Show when you’re live" msgstr "Visa att du sänder live" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Visar information om när det här inlägget skapades" @@ -11341,15 +11348,15 @@ msgstr "Visar information om när det här inlägget skapades" msgid "Shows other accounts you can switch to" msgstr "Visar andra konton som du kan byta till" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Visar innehållet" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Visar innehållet" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Logga ut?" msgid "Sign up" msgstr "Registrera dig" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Inloggning krävs" @@ -11469,7 +11476,7 @@ msgstr "Hoppa över" msgid "Skip contact sharing and continue to the app" msgstr "Hoppa över kontaktdelning och fortsätt till appen" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Hoppa över tomma inlägg?" @@ -11487,7 +11494,7 @@ msgstr "Hoppa till nästa steg" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mindre" @@ -11499,7 +11506,7 @@ msgstr "Skjuter upp påminnelsen" msgid "So many thoughts, you should post one" msgstr "Så många tankar… Varför inte publicera en?" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Ett socialt medium på dina villkor." @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Någon lämnade gruppen" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Någon reagerade med {0}" @@ -11554,7 +11561,7 @@ msgstr "Någon reagerade med {0}" msgid "Someone reacted {0} to {target}" msgstr "Någon reagerade med {0} på {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Någon svarade" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Något gick fel. Försök igen" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Något gick fel. Försök igen om en stund." msgid "Something went wrong. Please try again." msgstr "Något gick fel. Försök igen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Är något på tok? Hör av dig till oss." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam, oäkta beteende eller vilseledande innehåll" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "Starta en konversation, så visas den här." msgid "Start a group chat" msgstr "Starta en gruppchatt" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Starta en ny chatt" @@ -11682,17 +11689,17 @@ msgstr "Börja med att lägga till personer" msgid "Start adding people!" msgstr "Börja med att lägga till personer!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Starta chatt" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Starta chatt med {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpaket" @@ -11715,12 +11722,16 @@ msgstr "Startpaket av dig" msgid "Starter pack is invalid" msgstr "Startpaketet är ogiltigt" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Startpaket" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpaket" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Med startpaket kan du enkelt dela dina favoritflöden och personer med dina vänner." @@ -11728,7 +11739,7 @@ msgstr "Med startpaket kan du enkelt dela dina favoritflöden och personer med d msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Med startpaket kan du dela de flöden och konton du gillar med dina vänner." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Med startpaket kan du dela de flöden och konton du gillar med dina vänner." @@ -11742,7 +11753,7 @@ msgstr "Driftinformation" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Steg {0} av {1}" @@ -11754,7 +11765,7 @@ msgstr "Datan har rensats. Starta om appen nu." msgid "Stored as part of a secure code for matching with others" msgstr "Lagras som en säker kod för att hitta matchningar med andra användare" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Prenumerera på {publicationTitle} med {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Prenumerera på @{0} för att använda dessa etiketter:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Verifiering lyckades" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Föreslagna" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Föreslagna konton" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Solnedgång" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Den här funktionen har inte aktiverats för ditt land ännu. Kom tillbaka senare." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Avstängda konton kan inte delta i en gruppchatt." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Avstängda konton kan inte delta i chatten." @@ -11921,8 +11934,8 @@ msgstr "Byt till {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "System" @@ -11945,7 +11958,7 @@ msgstr "Fortsätt samtalet privat." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tryck nedan för att ge Bluesky åtkomst till din GPS-position. Vi använder sedan den informationen för att mer exakt kunna avgöra vilket innehåll och vilka funktioner som är tillgängliga i din region." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tryck för detaljer" @@ -11976,7 +11989,7 @@ msgstr "Tryck för att stänga kontextmeny" msgid "Tap to copy this invite link" msgstr "Tryck för att kopiera den här inbjudningslänken" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tryck för att avvisa" @@ -12003,7 +12016,7 @@ msgstr "Tryck för att ta bort din reaktion {0}" msgid "Tap to request access to join this group chat" msgstr "Tryck för att begära att få åtkomst till den här gruppchatten" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tryck för att försöka igen" @@ -12016,7 +12029,7 @@ msgstr "Tryck för att visa reaktioner med {0}" msgid "Tap to show all reactions" msgstr "Tryck för att visa alla reaktioner" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tryck för att visa reaktioner" @@ -12032,7 +12045,7 @@ msgstr "Uppgiften slutförd - Du följer 10 stycken!" msgid "Task complete - 10 likes!" msgstr "Uppgift slutförd - 10 gillamarkeringar!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Lär vår algoritm vad du vill" @@ -12060,7 +12073,7 @@ msgstr "Villkor" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Det startpaketet kunde inte hittas." msgid "That username is already taken" msgstr "Det användarnamnet är redan taget" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Det var allt!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Det var allt!" @@ -12216,7 +12229,7 @@ msgstr "Det verkar som att servern har problem. Försök igen om en liten stund. msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Startpaketet som du försöker visa är ogiltigt. Du kan radera det här startpaketet istället." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Kontextmenyns ämne" @@ -12238,7 +12251,7 @@ msgstr "Den verifieringskod du har angett är ogiltig. Kontrollera att du har an msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Vår verifieringsleverantör kunde inte skicka en kod till ditt telefonnummer. Kontrollera ditt telefonnummer och försök igen." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Ett problem uppstod under inläsningen av gif-bilderna. Kontrollera din msgid "There was a problem with your internet connection, please try again" msgstr "Ett problem uppstod med din internetanslutning. Försök igen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Ett problem uppstod med din internetanslutning. Försök igen" msgid "There was an issue contacting the server" msgstr "Ett problem uppstod med anslutningen till servern" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Ett problem uppstod med anslutningen till servern. Kontrollera din internetanslutning och försök igen." @@ -12283,8 +12296,8 @@ msgstr "Ett problem uppstod med anslutningen till servern. Kontrollera din inter msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ett problem uppstod med att hämta notiser. Tryck här för att försöka igen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ett problem uppstod med att hämta inlägg. Tryck här för att försöka igen." @@ -12309,7 +12322,7 @@ msgstr "Ett problem uppstod med att hämta din serviceinformation" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Ett problem uppstod med att ta bort det här flödet. Kontrollera din internetanslutning och försök igen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "De här inställningarna gäller bara för flödet Följer." msgid "These URLs" msgstr "Dessa URL:er" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Användaren äger chatten" @@ -12392,7 +12405,7 @@ msgstr "Användaren äger chatten" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Användaren kommer inte kunna gå med igen utan att bli inbjuden av dig." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Den här {screenDescription} har flaggats:" @@ -12408,7 +12421,7 @@ msgstr "Det här kontot har markerats som automatiserat av ägaren." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Det här kontot har ett eller fler genomförda verifieringsförsök, men är för närvarande inte verifierat." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Det här kontot har begärt att profilen endast får visas för inloggade användare." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Det här flödet är tomt! Du kanske borde följa fler användare eller justera dina språkinställningar." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Det här flödet är tomt." @@ -12554,7 +12567,7 @@ msgstr "Den här gruppen är låst på grund av en modereringsåtgärd mot ägar msgid "This handle is reserved. Please try a different one." msgstr "Det här användarnamnet är reserverat. Försök med ett annat." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Den här bilden kunde inte användas. Försök med ett annat format såsom .jpg eller .png." @@ -12596,7 +12609,7 @@ msgstr "Den här etiketten sattes av dig." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Den här etiketten gäller för hela användarkontot och visas på alla inlägg." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Den här etikettsättaren har inte lämnat någon information om sina etiketter, och är kanske inte aktiv." @@ -12621,13 +12634,13 @@ msgstr "Den här listan är tom." msgid "This message is hidden" msgstr "Det här meddelandet är dolt" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Det här meddelandet är dolt eftersom användaren blockerar dig." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Det här meddelandet är dolt eftersom du blockerar användaren." @@ -12641,7 +12654,7 @@ msgstr "Den här personen blockerar dig" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Det här inlägget har <0>{0} som angivet skapelsedatum, men registrerades på Bluesky först den <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Det här inlägget har <0>{0} som angivet skapelsedatum, men registr msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Det här inlägget har en okänd typ av trådrestriktion inställd. Din app kan vara inaktuell." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Det här inlägget visas bara för inloggade användare." @@ -12661,7 +12674,7 @@ msgstr "Det här inlägget har raderats av författaren" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Det här inlägget kommer att hållas dolt från flöden och trådar. Det här kan inte ångras." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Författaren till det här inlägget har inaktiverat citatinlägg." @@ -12698,11 +12711,12 @@ msgstr "Detta bör bara ta några minuter." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Den här användaren har inget visningsnamn och kan därför inte verifieras." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Den här användaren har inga följare." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Den här användaren har blockerat dig och kan inte nås via meddelanden." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Den här användaren har blockerat dig. Du kan inte se användarens innehåll." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Den här användaren har inaktiverat chatten och kan inte nås via meddelanden." @@ -12733,11 +12748,11 @@ msgstr "Den här användaren finns med på listan <0>{0} som du har ignorera msgid "This user is new here. Press for more info about when they joined." msgstr "Den här användaren är ny här. Tryck för mer information om när hen gick med." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Den här användaren följer inte någon." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Det här videoklippet kan inte spelas upp på din enhet. Din webbläsare eller system kan sakna de nödvändiga videokodekarna (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Detta kommer att permanent radera ditt Bluesky-konto <0>{currentHandle} och all tillhörande data. Observera att detta även påverkar andra tjänster som använder <1>AT-protokollet och som du har använt med det här kontot." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Det här tar bort @{0} från snabbåtkomstlistan." @@ -12786,7 +12801,7 @@ msgstr "Trådinställningar" msgid "Threaded" msgstr "Trädvy" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Trådinställningar" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "För många kontakter. Du har överskridit antalet kontakter du kan importera för att hitta dina vänner" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Topp" @@ -12858,7 +12873,7 @@ msgstr "Topp" msgid "Top replies first" msgstr "Populära svar först" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Ämne" @@ -12893,7 +12908,9 @@ msgstr "Översättning till samma språk är inte tillgängligt på din enhet." msgid "Tree view" msgstr "Trädvy" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Trendar" @@ -12902,7 +12919,7 @@ msgstr "Trendar" msgid "Trending GIFs" msgstr "Trendande gif-bilder" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Alternativ för trendande ämnen" @@ -12918,11 +12935,11 @@ msgstr "Avsiktligt störande eller provocerande beteende (”trolling”)" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Förtroende skapas genom relationer, gemenskaper och delade sammanhang. Därför inför vi även <0>betrodda verifierare – organisationer med möjlighet att utfärda verifieringar direkt." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Försök med ett annat sökord eller ta bort några filter." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Försök med ett annat sökord." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Kunde inte hämta medlemsförfrågningar." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Kunde inte hitta en vald mottagare." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Kunde inte att hitta den valda mottagaren." @@ -13024,12 +13043,12 @@ msgstr "Otillgängligt" msgid "Unavailable feed information" msgstr "Otillgänglig flödesinformation" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Häv blockering av konto?" msgid "Unblock list" msgstr "Häv blockering av lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Sluta följ {0}" msgid "Unfollow account" msgstr "Sluta följ konto" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Slutar följa användaren" @@ -13132,7 +13151,7 @@ msgstr "Omarkerat vuxeninnehåll" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Vuxeninnehåll som inte har markerats, är kränkande eller delas utan samtycke" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Sluta gilla" @@ -13192,7 +13211,7 @@ msgstr "Sluta ignorera den här gruppchatten" msgid "Unmute thread" msgstr "Sluta ignorera tråd" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Sätt på ljudet på videoklippet" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Lossa" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Lossa flöde" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Lossa från hem" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Lossa modereringslista" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Lossade {0} från Hem" @@ -13258,11 +13277,11 @@ msgstr "Sluta prenumerera på den här etikettsättaren" msgid "Unsubscribed from list" msgstr "Avslutade prenumeration på lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Urklippsinnehåll stöds inte" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Videotypen stöds inte: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Det gick inte att uppdatera synlighet för svar" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Ladda upp ett foto istället" @@ -13355,7 +13374,7 @@ msgstr "Ladda upp från Filer" msgid "Upload from Library" msgstr "Ladda upp från Bibliotek" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Laddar upp gif-bild…" @@ -13369,7 +13388,7 @@ msgstr "Laddar upp bilder…" msgid "Uploading link thumbnail..." msgstr "Laddar upp miniatyrbild av länk…" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Laddar upp video…" @@ -13408,7 +13427,7 @@ msgstr "Använd det här för att logga in på den andra appen med ditt använda msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Använd e-postadressen för ditt konto, eller en annan giltig e-postadress som du har kontroll över, ifall KWS eller Bluesky behöver kontakta dig." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "användare" @@ -13510,7 +13529,7 @@ msgstr "Verifiering misslyckades. Försök igen." msgid "Verification settings" msgstr "Verifieringsinställningar" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verifieringsinställningar" @@ -13618,7 +13637,7 @@ msgstr "Videoklipp" msgid "Video failed to process" msgstr "Bearbetning av videoklipp misslyckades" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Videoflöde" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Videoklipp från {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Videoklipp från {0}. Tryck för att spela eller pausa videoklippet" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "TV-spel" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Videoklippet är pausat" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Videoklippet spelas upp" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Videoklippet hittades inte." @@ -13653,7 +13672,7 @@ msgstr "Videoklippet hittades inte." msgid "Video settings" msgstr "Inställningar för videoklipp" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Videoklipp uppladdat" @@ -13662,17 +13681,17 @@ msgstr "Videoklipp uppladdat" msgid "Video: {0}" msgstr "Videoklipp: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videoklipp" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videoklipp får inte vara längre än 3 minuter." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Visa" @@ -13691,9 +13710,9 @@ msgstr "Visa {0}s avatar" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Visa {0}s profil" @@ -13724,13 +13743,13 @@ msgstr "Se blogginlägget för mer information" msgid "View debug entry" msgstr "Visa loggpost" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Visa detaljer" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Visa hela tråden" @@ -13761,7 +13780,7 @@ msgstr "Visa mer" msgid "View more trending videos" msgstr "Visa fler trendande videoklipp" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Visa inlägg" @@ -13798,11 +13817,11 @@ msgstr "Visa inbjudningslänken för den här gruppchatten" msgid "View the labeling service provided by @{0}" msgstr "Visa etiketteringstjänsten från @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Visa den här användarens verifieringar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Visa användare som gillar det här flödet" @@ -13831,7 +13850,7 @@ msgstr "Visa dina modereringslistor" msgid "View your muted accounts" msgstr "Visa de konton du har ignorerat" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Visa dina verifieringar" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Vi har nätverksproblem, försök igen" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Vi har nätverksproblem, försök igen" @@ -14043,7 +14062,7 @@ msgstr "Vi har nätverksproblem, försök igen" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Vi inför ett nytt lager av verifiering på Bluesky – en bockmarkering som är lätt att se." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Vi är glada över att ha dig med oss!" @@ -14064,13 +14083,15 @@ msgstr "Tyvärr kunde vi inte läsa in den här listan. Om problemet kvarstår, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Tyvärr kunde vi inte läsa in dina ignorerade ord just nu. Försök igen." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "Tyvärr kunde din sökning inte genomföras." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Tyvärr kunde inte din sökning slutföras. Försök igen om några minuter." @@ -14078,7 +14099,7 @@ msgstr "Tyvärr kunde inte din sökning slutföras. Försök igen om några minu msgid "We're sorry, you cannot access this screen at this time." msgstr "Tyvärr kan du inte komma åt den här vyn just nu." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Beklagar! Inlägget du svarar på har raderats." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "hur är läget" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Vad händer?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Vem kan verifiera?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Hoppsan!" @@ -14220,21 +14241,21 @@ msgstr "Vill du blockera den här användaren och/eller lämna den här konversa msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Vill du spara det här som ett utkast innan du går till dina utkast?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Vill du spara det här som ett utkast så att du kan fortsätta på det senare?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Skriv ett inlägg" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Skriv inlägg" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Skriv ditt svar" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Du använder Bluesky från en region där vi enligt lag måste verifiera din ålder innan du får tillgång till appen." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Du blockerar {0}" @@ -14342,7 +14363,7 @@ msgstr "Du sänder inte längre live" msgid "You are not allowed to upload videos." msgstr "Du har inte behörighet att ladda upp videoklipp." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Du följer inte någon ännu" @@ -14362,7 +14383,7 @@ msgstr "Du är verifierad. Din verifieringsstatus går förlorad om du ändrar d msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Du är verifierad. Din verifieringsstatus går förlorad om du ändrar ditt användarnamn. <0>Läs mer." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Du kan när som helst justera dina intressen från ”Innehåll och media” i inställningar." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Du kan nu logga in med ditt nya lösenord." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Du kan lägga till max {MAX_GALLERY_IMAGES, plural, other {# bilder}} per inlägg" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Du kan bara spara utkast med upp till 1000 tecken." @@ -14439,9 +14460,9 @@ msgstr "Du kan läsa chatthistoriken men inte skicka nya meddelanden." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Du kan välja upp till {MAX_GALLERY_IMAGES, plural, other {# bilder}} totalt." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Du kan ändra det här senare i dina inställningar." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Du kan inte lägga till mer än {EMOJI_REACTION_LIMIT, plural, one {# emojireaktion} other {# emojireaktioner}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Du kan inte skapa en gruppchatt ännu." @@ -14555,7 +14577,7 @@ msgstr "Din e-postadress har verifierats utan problem. Du kan stänga den här d msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Du har för tillfället nått gränsen för videouppladdningar. Försök igen senare." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Du har osparade ändringar i det här utkastet. Vill du spara dem?" @@ -14563,7 +14585,7 @@ msgstr "Du har osparade ändringar i det här utkastet. Vill du spara dem?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Du har osparade ändringar. Vill du spara dem innan du går till dina utkast?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Du har inte skapat ett startpaket ännu!" @@ -14614,7 +14636,7 @@ msgstr "Du kan bara lägga till högst {STARTER_PACK_MAX_SIZE, plural, other {{S msgid "You may only add up to 3 feeds" msgstr "Du kan bara lägga till högst 3 flöden" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Du måste vara chattägare för att ta bort en medlem." @@ -14622,7 +14644,7 @@ msgstr "Du måste vara chattägare för att ta bort en medlem." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Du måste vara minst 13 år för att använda Bluesky. Läs våra <0>användarvillkor för mer information." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Du måste följa minst sju andra personer för att generera ett startpaket." @@ -14639,7 +14661,7 @@ msgstr "Du måste tillåta åtkomst till ditt mediebibliotek." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Du måste verifiera din e-postadress innan du kan aktivera 2FA via e-post." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Du äger chatten" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Du vill nog starta om appen nu." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Du reagerade med {0}" @@ -14667,15 +14689,15 @@ msgstr "Du reagerade med {0} på {target}" msgid "You recently changed your birthdate" msgstr "Du ändrade ditt födelsedatum nyligen" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Du svarade" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Du svarade {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Du svarade dig själv" @@ -14715,11 +14737,11 @@ msgstr "Du kommer inte att kunna gå med igen utan en inbjudan." msgid "You: {message}" msgstr "Du: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Du kommer att följa de föreslagna användarna och flödena när du är klar med skapandet av ditt konto!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Du kommer att följa de föreslagna användarna när du är klar med skapandet av ditt konto!" @@ -14791,7 +14813,7 @@ msgstr "Du har nått slutet av det aktiva innehållet." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du har nått slutet av ditt flöde! Hitta några fler konton att följa." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Du har nått det maximala antalet utkast" @@ -14799,7 +14821,7 @@ msgstr "Du har nått det maximala antalet utkast" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Du har nått maxgränsen för antalet tillåtna begäranden. Försök igen senare." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Du har nått gränsen på maximalt {MAX_FILTERS, plural, one {# filter} other {# filter}}. Lägg till fler värden i dina befintliga filter istället för att skapa nya." @@ -14815,11 +14837,11 @@ msgstr "Du har nått din dagliga gräns för videouppladdningar (för många byt msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du har nått din dagliga gräns för videouppladdningar (för många videoklipp)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Det finns inga fler videoklipp att titta på. Det kanske är dags för att ta en paus?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Ditt konto" @@ -14835,11 +14857,11 @@ msgstr "Ditt konto har stängts av" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ditt konto är ännu inte tillräckligt gammalt för att ladda upp videoklipp. Försök igen senare." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Ditt konto är för nytt" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Ditt konto måste vara minst 7 dagar gammalt för att skapa en ny gruppchatt." @@ -14930,8 +14952,8 @@ msgstr "Din kontoleverantör kan inte identifieras genom en e-postadress, så de msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Din kontoleverantör identifieras automatiskt utifrån användarnamnet du anger." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Dina intressen har uppdaterats!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Dina intressen hjälper oss att hitta det du gillar!" @@ -14967,11 +14989,11 @@ msgstr "Din ändring av lösenordet lyckades! Använd ditt nya lösenord när du msgid "Your password must be at least 8 characters long." msgstr "Ditt lösenord måste vara minst 8 tecken långt." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Ditt inlägg har skickats" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Dina inlägg har skickats" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Ditt föredragna språk" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Din profilbild" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Din profilbild i mitten, omgiven av andra användares profilbilder i ringar runt omkring" @@ -14992,7 +15014,7 @@ msgstr "Din profilbild i mitten, omgiven av andra användares profilbilder i rin msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Din profil samt dina inlägg, flöden och listor kommer inte längre att vara synliga för andra Bluesky-användare. Du kan återaktivera ditt konto när som helst genom att logga in." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Ditt svar har skickats" @@ -15005,7 +15027,7 @@ msgstr "Din anmälan kommer att skickas till <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Dina valda intressen hjälper oss att visa dig innehåll som du bryr dig om." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Din tråd innehåller tomma inlägg som kommer att hoppas över. De återstående inläggen publiceras som en tråd." diff --git a/src/locale/locales/th/messages.po b/src/locale/locales/th/messages.po index ea9d91e92d..d555f71bca 100644 --- a/src/locale/locales/th/messages.po +++ b/src/locale/locales/th/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: th\n" +"Language: th_TH\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Thai\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(มีเนื้อหาที่ฝังอยู่)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} ติดตามอยู่" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} ไม่สามารถส่งข้อความได้" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {รีโพสต์}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 วัน" msgid "7 days" msgstr "7 วัน" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "การเข้าถึง" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "การตั้งค่าการเข้าถึง" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "บัญชีถูกปิดเสียงโดยลิสต์ msgid "Account options" msgstr "ตัวเลือกบัญชี" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "ลบบัญชีออกจากการเข้าถึงด่วนแล้ว" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "เพิ่มข้อความแสดงแทน (ไม่บ msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "เพิ่มฟีตนี้ในฟีตของคุณ" msgid "Add to lists" msgstr "เพิ่มในลิสต์" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "อนุญาตให้เข้าถึงข้อความส msgid "Already have a code?" msgstr "มีโค้ดหรือยัง?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "อีเมลได้ถูกส่งไปยัง {0} แล้ msgid "An error has occurred" msgstr "เกิดข้อผิดพลาด" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "เกิดข้อผิดพลาด" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "เกิดข้อผิดพลาดขณะสร้างชุดเริ่มต้นของคุณ ต้องการลองอีกครั้งหรือไม่?" @@ -1640,11 +1600,11 @@ msgstr "เกิดข้อผิดพลาดขณะสร้างชุ msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "เกิดข้อผิดพลาดขณะโหลดวิดีโอ โปรดลองอีกครั้งในภายหลัง" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "เกิดข้อผิดพลาดขณะโหลดวิดีโอ โปรดลองอีกครั้ง" @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "ปัญหาที่ไม่ได้รวมอยู่ในตัวเลือกเหล่านี้" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "เกิดปัญหาขณะพยายามเปิดการสนทนา" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "" msgid "App passwords" msgstr "รหัสผ่านแอป" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "รหัสผ่านแอป" @@ -1891,8 +1849,8 @@ msgstr "อุทธรณ์การตัดสินใจนี้" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1938,7 @@ msgstr "คุณแน่ใจหรือว่าต้องการลบ msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "วันเกิด" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "ถูกบล็อก" msgid "Blocked accounts" msgstr "บัญชีที่ถูกบล็อก" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "บัญชีที่ถูกบล็อก" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "การบล็อกไม่ได้ป้องกันผู้ทำเครื่องหมายนี้จากการวางป้ายบนบัญชีของคุณ" @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2299,7 @@ msgstr "Bluesky เป็นเครือข่ายเปิดที่ค msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky สนุกยิ่งขึ้นเมื่อมีเพื่อน!" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky จะเลือกชุดบัญชีที่แนะนำจากผู้คนในเครือข่ายของคุณ" @@ -2425,24 +2394,25 @@ msgstr "เรียกดูข้อเสนอเพิ่มเติมใ msgid "Browse other feeds" msgstr "เรียกดูฟีดอื่น ๆ" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "โดย {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "ยกเลิกการเปิดใช้งานใหม่แ msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "ยกเลิกการค้นหา" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "ปิดเสียงแชทแล้ว" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "ตั้งค่าแชท" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "เปิดเสียงแชทแล้ว" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "" msgid "Choose Feeds" msgstr "เลือกฟีด" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "เลือกให้ฉัน" @@ -2854,7 +2825,7 @@ msgstr "เลือกผู้คน" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "เลือกสีนี้เป็นอวาตาร์ของคุณ" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "ป้อนรหัสผ่านของคุณ" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "แฮนด์เดิลผู้ใช้ของคุณ" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "คลิกเพื่อพยายามส่งข้อความที่ล้มเหลวอีกครั้ง" @@ -3003,7 +2974,7 @@ msgstr "คลิกเพื่อพยายามส่งข้อควา #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "คลิกเพื่อพยายามส่งข้อควา msgid "Close" msgstr "ปิด" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "ปิดกล่องโต้ตอบที่เปิดอยู่" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "ปิดกล่องโต้ตอบนี้" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "ปิดการแจ้งเตือนการอัปเดตรหัสผ่าน" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "โหมดสี" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "การ์ตูน" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "แนวทางชุมชน" @@ -3141,7 +3112,7 @@ msgstr "แนวทางชุมชน" msgid "Complete onboarding and start using your account" msgstr "เสร็จสิ้นการอบรมและเริ่มใช้งานบัญชีของคุณ" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "ทำให้สำเร็จตามความท้าทาย" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "สร้างการตอบกลับ" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "ติดต่อฝ่ายสนับสนุน" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3236,6 @@ msgstr "เนื้อหาถูกบล็อก" msgid "Content filters" msgstr "ตัวกรองเนื้อหา" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "คำเตือนเนื้อหา" msgid "Content warnings" msgstr "คำเตือนเนื้อหา" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "แบ็คดรอปเมนูบริบท คลิกเพื่อปิดเมนู" @@ -3302,7 +3269,7 @@ msgstr "แบ็คดรอปเมนูบริบท คลิกเพ #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "ดำเนินการต่อเธรด..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "คัดลอกเวอร์ชันบิลด์ไปยังคลิปบอร์ดแล้ว" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "คัดลอกลิงก์" msgid "Copy link to list" msgstr "คัดลอกลิงก์ไปยังลิสต์" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "คัดลอกลิงก์ไปยังโพสต์" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "คัดลอกข้อความ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "นโยบายลิขสิทธิ์" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "ไม่สามารถออกจากการสนทนาได้" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "ไม่สามารถโหลดฟีดได้" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "ไม่สามารถปิดเสียงการสนทนาได้" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "สร้าง" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "สร้าง QR โค้ดสำหรับชุดเริ่มต้น" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "สร้างชุดเริ่มต้น" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "สร้างชุดเริ่มต้นสำหรับฉัน" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "สมัครสมาชิก" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "สร้างบัญชี" @@ -3666,15 +3633,15 @@ msgstr "สร้างบัญชี" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "สร้างอวตารแทน" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "สร้างอันใหม่" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "วัฒนธรรม" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "มืด" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "มืด" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ธีมมืด" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "ค่าเริ่มตัน" @@ -3894,7 +3861,7 @@ msgstr "ลบบัญชีของฉัน" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "ลบโพสต์" @@ -3988,7 +3955,7 @@ msgstr "กล่องโต้ตอบ: ปรับว่าใครสา msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "สว่าง" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "ปิดใช้งาน" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "ละทิ้ง" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "ละทิ้งร่างข้อความหรือไม่?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "ไม่สนับสนุนแอปให้แสดงบัญชีของฉันต่อผู้ใช้ที่ไม่ได้เข้าสู่ระบบ" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "ไม่สนับสนุนแอปให้แสดงบัญ msgid "Discover new custom feeds" msgstr "ค้นพบฟีดที่กำหนดเองใหม่ๆ" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "ค้นพบฟีดใหม่" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "ปิด" @@ -4103,19 +4070,19 @@ msgstr "ปิด" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "ปิดข้อผิดพลาด" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "ปิดคู่มือเริ่มต้นใช้งาน" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "แสดงป้ายข้อความคำอธิบายภ msgid "Display name" msgstr "ชื่อที่แสดง" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "เสร็จสิ้น" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "แตะสองครั้งเพื่อปิดหน้าต่าง" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "แก้ไขรูปภาพ" msgid "Edit interaction settings" msgstr "แก้ไขการตั้งค่าการโต้ตอบ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "แก้ไขฟีดของฉัน" @@ -4406,6 +4374,11 @@ msgstr "แก้ไขฟีดของฉัน" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "แก้ไขบุคคล" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "แก้ไขผู้ที่สามารถตอบกลับได้" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "แก้ไขชุดเริ่มต้นของคุณ" @@ -4500,8 +4473,8 @@ msgstr "ฝัง HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "ฝังโพสต์" @@ -4509,7 +4482,7 @@ msgstr "ฝังโพสต์" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "ฝังโพสต์เว็บไซต์ของคุณ แค่กรอกโค้ดด้านล่างแล้ววางบนเว็บไซต์" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4506,7 @@ msgstr "อนุญาตให้เข้าถึงเนื้อหาผ msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "อนุญาตให้นำไฟล์ด้านนอกเข msgid "Enable media players for" msgstr "อนุญาตตัวเล่นสื่อสำหรับ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "อนุญาตแล้ว" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "จบฟีต" @@ -4608,7 +4582,7 @@ msgstr "ป้อนคำหรือแท็ก" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4624,11 @@ msgstr "ใส่ชื่อผู้ใช้ของคุณและรห msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4658,7 @@ msgstr "เกิดข้อผิดพลาดในขณะที่บั msgid "Error receiving captcha response." msgstr "เกิดข้อผิดพลาดการตอบสนองของ Captcha" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "คนที่สามารถตอบกลับได้" msgid "Everybody can reply to this post." msgstr "คนที่สามารถตอบกลับได้ในโพสค์นี้" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "ทุกคน" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "ทุกคน" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "ไม่รวมผู้ใช้ที่คุณติดตาม msgid "Excludes users you follow" msgstr "ไม่รวมผู้ใช้ที่คุณติดตาม" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "ออกจากโหมดเต็มหน้าจอ" @@ -4755,11 +4729,11 @@ msgstr "ขยายรายชื่อผู้ใช้" msgid "Expand or collapse the full post you are replying to" msgstr "ขยายหรือลดขนาดโพสต์ทั้งหมดที่คุณตอบกลับ" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "สื่อที่ชัดเจนหรืออาจทำให msgid "Explicit sexual images." msgstr "ภาพเปลือยชัดเจน" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "การตั้งค่าสื่อภายนอก" @@ -4886,7 +4860,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "การโหลดฟีตที่ตั้งค่าล้มเหลว" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "การแนะนำฟีตล้มเหลว" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "การแนะนำคนที่คุณควรติดตามล้มเหลว" @@ -5027,12 +5002,12 @@ msgstr "การแนะนำคนที่คุณควรติดตา msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "ฟีด" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "อัปเดตฟีดแล้ว!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "บันทึกไฟล์เรียบร้อยแล้ว!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "ค้นหาบัญชีเพื่อคิดตาม" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "ติดตาม {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "ติดตาม 7 บัญชี" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "ผู้ติดตามของ @{0} ที่คุณรู้จัก" @@ -5544,7 +5515,7 @@ msgstr "ผู้ติดตามที่คุณรู้จัก" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "ติดตาม {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "การตั้งค่าฟีดการติดตาม" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "การตั้งค่าฟีดการติดตาม" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "ติดตามคุณ" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "แบบอักษร" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "ขนาดแบบอักษร" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "เพื่อประสบการที่ดีของคุณ เราแนะนำให้ใช้ฟอนต์ธีม" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "ตลอด" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "ลืมรหัสผ่านใช่ไหม?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "จาก <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "สร้างชุดเริ่มต้น" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "รับความช่วยเหลือ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "ทำให้โปรไฟล์ของคุณมีความน่าสนใจขึ้น" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "แฮชแท็ก" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "มีปัญหาใช่ไหม?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "การช่วยเหลือ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "ทำให้คนทราบว่าคุณไม่ใช่หุ่นยนต์โดยการอัพโหลตรูปภาพหรือการสร้างอวาตาร์" @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "ลิสต์ที่ซ่อนไว้" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "ลิสต์ที่ซ่อนไว้" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "ซ่อน" @@ -6198,7 +6172,7 @@ msgstr "ซ่อนการตอบกลับสำหรับทุกค msgid "Hide reply for me" msgstr "ซ่อนการสำหรับฉัน" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "ซ่อนการตอบกลับใช่ไหม" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "ซ่อนลิสต์ผู้ใช้" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "อื้มมมม... ดูเหมือนว่าเราไ msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "รอสักครู่! เรากำลังเปิดให้เข้าถึงวิดีโออย่างค่อยเป็นค่อยไป และคุณยังอยู่ในคิว แล้วกลับมาอีกครั้งจ้า" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "หากคุณต้องการเปลี่ยนรหัสผ่าน เราจะส่งรหัสยืนยันเพื่อยืนยันบัญชีของคุณ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "ตอนนี้มีแค่คุณแล้ว! เพิ่มผู้คนในชุดเริ่มต้นของคุณโดยการค้นหาด้านบนนี้" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" @@ -6816,8 +6788,8 @@ msgstr "เข้าร่วมการสนทนา" msgid "Journalism" msgstr "วารสาร" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "มาร์คโดย {0}" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "มาร์คโดยผู้สร้าง" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "มาร์คไว้" @@ -6852,7 +6824,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "การมาร์ค คือ การแสดงข้อความประกอบบนผู้ใช้และเนื้อหา สามารถใช้ในการซ่อน เตือน หรือจัดหมวดหมู่ในเครือข่ายได้" @@ -6864,7 +6836,7 @@ msgstr "มาร์คในบัญชีของคุณ" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "ตั้งค่าภาษา" @@ -6874,7 +6846,7 @@ msgstr "ตั้งค่าภาษา" msgid "Languages" msgstr "ภาษา" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ใหญ่" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "ล่าสุด" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "เรียนรู้เพิ่มเติม" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับการโฮสต์ข้อมูลด้วยตัวเอง (PDS)" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับข้อควรระวัง" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "เรียนรู้เพิ่มเติม" @@ -6993,8 +6965,8 @@ msgstr "ออก" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "ออก Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "ปล่อยไปเถอะ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "ให้ฉันเลือกเถอะ" @@ -7057,7 +7029,7 @@ msgstr "ไปกันเล้ยยยยย!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "แสง" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "แสง" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7048,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "ชอบ 10 โพสต์" @@ -7085,7 +7057,7 @@ msgstr "ชอบ 10 โพสต์" msgid "Like 10 posts to train the Discover feed" msgstr "ชอบ 10 โพสต์" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "ชอบฟีตนี้" @@ -7093,8 +7065,8 @@ msgstr "ชอบฟีตนี้" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "ชอบโดย" @@ -7111,27 +7083,45 @@ msgstr "ชอบโดย" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "ถูกใจ" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "ชอบในโพสต์นี้" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "ลิสต์" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "ลิสต์เปิดเสียง" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "โหลดเพิ่มเติม" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "โหลดฟีดที่แนะนำเพิ่มเติม" @@ -7292,8 +7282,8 @@ msgstr "โหลดฟีดที่แนะนำเพิ่มเติม msgid "Load new notifications" msgstr "โหลดการแจ้งเตือนใหม่" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "บันทึก" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "สร้างสักหนึ่งอันสำหรับฉัน" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "ทำเครื่องหมายว่าอ่านแล้ว msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "สื่อ" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "ผู้ใช้ที่ถูกกล่าวถึง" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "ข้อความถูกลบ" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "ข้อความ" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "การกรอง" @@ -7636,7 +7630,7 @@ msgstr "การกรองถูกอัพเดต" msgid "Moderation lists" msgstr "ลิสต์ที่กรอง" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "ลิสต์ที่กรอง" @@ -7645,7 +7639,7 @@ msgstr "ลิสต์ที่กรอง" msgid "moderation settings" msgstr "การตั้งค่าการกรอง" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "สถานะการกรอง" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "ปิดการมองเห็นบัญชี" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "ปิดการมองเห็นบัญชี" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "ไม่ต้องห่วง สร้างแฮนเดิ้ลสำหรับฉันได้เลย" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "ใหม่" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "แชทใหม่" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "รหัสผ่านใหม่" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "โพสต์ใหม่" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "เห็นการตอบกลับที่ใหม่ก่อน" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "ข่าวสาร" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "ภาพถัดไป" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "ไม่พบฟีต ลองค้นหาอย่างอื่นใหม่ดู" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "ยังไม่มีสิ่งที่ชอบ" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "ไม่ติดตาม {0} อีกต่อไป" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "ยังไม่มีข้อความ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "ยังไม่มีโควท" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "ไม่มีผลลัพธ์" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "ไม่มีผลลัพธ์" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "ไม่พบผลลัพธ์" msgid "No results found for \"{query}\"" msgstr "ไม่พบผลลัพธ์สำหรับ \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "ไม่เป็นไร ขอบคุณ" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "ไม่มีใคร" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "ยังไม่มีใครคนไลค์โพสต์นี้ คุณอาจได้เป็นคนแรก" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "ยังไม่มีใครคนโควท์โพสต์นี้ คุณอาจได้เป็นคนแรก" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "การเปลือยกายที่ไม่เกี่ยวข้องกับเพศ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "ไม่พบ" @@ -8333,7 +8330,7 @@ msgstr "โน้ตเกี่ยวกับการแชร์" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "หมายเหตุ : Bluesky เป็นเครือข่ายแบบเปิดและสาธารณะ การตั้งค่านี้จำกัดเพียงการมองเห็นเนื้อหาของคุณในแอปและเว็บไซต์ของ Bluesky เท่านั้น และแอปอื่นอาจไม่เคารพการตั้งค่านี้ เนื้อหาของคุณอาจยังถูกแสดงให้ผู้ใช้ที่ไม่ได้เข้าสู่ระบบโดยแอปและเว็บไซต์อื่นๆ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "การตั้งค่าการแจ้งเตือน" @@ -8353,11 +8350,12 @@ msgstr "การตั้งค่าการแจ้งเตือน" msgid "Notification sounds" msgstr "เสียงการแจ้งเตือน" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "ไม่น้าาา!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "ตกลง" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "ตกลง" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "รีเซ็ตออนบอร์ด" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "ภาพหนึ่งหรือมากกว่าขาดข้อความแทน" @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8471,7 @@ msgstr "{0} สามารถตอบกลับได้เท่านั #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "สามารถลงได้แค่ไฟล์ WebVTT (.vtt) เท่านั้น" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "อ๊ะ!" @@ -8544,7 +8544,7 @@ msgstr "อ๊ะ!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "เปิดการสร้างอวาตาร์" @@ -8570,21 +8570,22 @@ msgstr "เปิดการตั้งค่าการสนทนา" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "เปิดการเลือกอีโมจิ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "เปิดการตั้งค่าฟีต" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "เปิดการปิดการมองเห็นคำและแท็ก" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "เปิดรายละเอียดเพิ่มเติมส msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "เปิดกล้องในอุปกรณ์" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "เปิดขั้นตอนเพื่อสร้างบัญชี Bluesky ใหม่" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "เปิดเพื่อสร้างบัญชี Bluesky ที่มีอยู่แล้ว" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "อัพเดตรหัสผ่านแล้ว!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "พัก" @@ -8925,12 +8926,12 @@ msgstr "พัก" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "พักวีดีโอ" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "ผู้คน" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "ผู้คนที่ติดตามโดย @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "ผู้คนที่ติดตาม @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "ภาพที่เหมาะสำหรับเนื้อหาผู้ใหญ่ (18+)" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "ปักหมุดไปที่หน้าแรก" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "ปักหมุดไปที่หน้าแรก" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "ปักหมุดแล้ว" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "ปักหมุดไปที่ฟีต" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "เล่น" @@ -9076,8 +9077,8 @@ msgstr "เล่น {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "เล่นวิดีโอ" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "การเมือง" @@ -9269,7 +9270,7 @@ msgstr "การเมือง" msgid "Porn" msgstr "สื่ออนาจาร" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "โพสต์" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "โพสต์" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "โพสต์โดย {0}" @@ -9340,7 +9341,7 @@ msgstr "โพสต์ถูกซ่อนโดยคุณ" msgid "Post interaction settings" msgstr "การตั้งค่าการโต้ตอบโพสต์" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "ปักหมุดโพสต์แล้ว" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "ถอนหมุดโพสต์แล้ว" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "โพสต์" @@ -9398,6 +9396,10 @@ msgstr "โพสต์สามารถถูกปิดเสียงตา msgid "Posts hidden" msgstr "โพสต์ที่ซ่อนอยู่" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "ความเป็นส่วนตัว" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "นโยบายความเป็นส่วนตัว" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "ยกเลิกการโควท" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "โควท" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "โควทโพสต์นี้" @@ -9647,7 +9650,7 @@ msgstr "ปิดใช้งานบัญชีของคุณอีกค msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "อ่านนโยบายความเป็นส่วนตั msgid "Read the Bluesky Terms of Service" msgstr "อ่านนโยบาย เงื่อนไข และ ข้อตกลง ในการให้บริการของ Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "เชื่อมต่อใหม่" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "โหลดการสนทนาใหม่" @@ -9766,7 +9765,7 @@ msgstr "โหลดการสนทนาใหม่" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "ลบ" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "ลบบัญชี" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "ลบจากฟีตของฉัน" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "ลบการเข้าถึงด่วนใช่ไหม" @@ -9862,7 +9861,7 @@ msgstr "ลบการเข้าถึงด่วนใช่ไหม" msgid "Remove from saved feeds" msgstr "ลบจากฟีตที่เซฟไว้" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "ลบรูปภาพ" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "ลบจากลิสต์" msgid "Removed from saved feeds" msgstr "ลบจากฟีตที่เซฟ" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "การตอบกลับ" @@ -10037,7 +10037,7 @@ msgstr "การตอบกลับโพสต์นี้ถูกปิด msgid "Reply" msgstr "การตอบกลับ" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "การตอบกลับ" @@ -10098,8 +10098,8 @@ msgstr "รายงานการสนทนา" msgid "Report dialog" msgstr "รายงานการสนทนา" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "รายงานฟีด" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "รีโพสต์โดยคุณ" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "รีโพสต์ของโพสต์นี้" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "ลองทำกิจกรรมล่าสุดซึ่งเก #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "กลับไปยังหน้าแรก" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "กลับไปยังหน้าก่อนหน้า" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "บันทึกการเปลี่ยนแปลง" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "บันทึกคิวอาร์โค้ด" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "บันทึกที่ฟีตของฉัน" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "บันทึกฟีต" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "บันทึกไปที่ฟีตของคุณ" @@ -10520,8 +10520,8 @@ msgstr "บันทึกไปที่ฟีตของคุณ" msgid "Say hello!" msgstr "ทักทายสิ!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "วิทยาศาสตร์" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "เลื่อนไปข้างบนสุด" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "ค้นหา" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "ค้นหาสำหรับฟีตที่คุณต้องการแนะนำให้คนอื่น" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "ค้นหา GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "มองหางานใน Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "เลือกสี" @@ -10764,11 +10769,11 @@ msgstr "เลือกบัญชี" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "เลือกอวาตาร์" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "เลือกอีโมจิ" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "เลือก GIF" msgid "Select GIF \"{0}\"" msgstr "เลือก GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "เลือกอีโมจิ {emojiName} เป็นอวาตาร์ของคุณ" @@ -10945,7 +10951,8 @@ msgstr "ส่งข้อความ" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "ส่งโพสต์ถึง..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "ส่งการยืนยันผ่านอีเมล" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "ส่งในข้อความส่วนตัว" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "ตั้งอีเมลเพื่อการรีเซตรหัสผ่าน" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "การตั้งค่า" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "แชร์ตลอด" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "กล่องโต้ตอบแชร์ลิงก์" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "แชร์รหัส QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "แชร์สตาร์ทแพ็กนี้" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "แชร์ชุดเริ่มต้นนี้และช่วยให้ผู้คนเข้าร่วมชุมชนของคุณบน Bluesky" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "โปรแกรมทดสอบการตั้งค่าแชร์" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "แสดง" msgid "Show alt text" msgstr "แสดงข้อความแทน" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "แสดงอยู่ดี" @@ -11274,9 +11281,9 @@ msgstr "แสดงลิสต์อยู่ดี" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "แสดงเพิ่มเติม" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "แสดงคำเตือนและกรองจากฟีด msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ออกจากระบบ?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "ต้องเข้าสู่ระบบ" @@ -11469,7 +11476,7 @@ msgstr "ข้าม" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "เล็ก" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "เกิดข้อผิดพลาดบางอย่าง กรุณาลองอีกครั้ง" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "กีฬา" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "เริ่มแชทใหม่" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "เริ่มแชทกับ {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "ชุดเริ่มต้น" @@ -11715,12 +11722,16 @@ msgstr "ชุดเริ่มต้นโดยคุณ" msgid "Starter pack is invalid" msgstr "ชุดเริ่มต้นไม่ถูกต้อง" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "ชุดเริ่มต้น" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "ชุดเริ่มต้นช่วยให้คุณแชร์ฟีดและผู้คนที่คุณชื่นชอบกับเพื่อนๆ ได้อย่างง่ายดาย" @@ -11728,7 +11739,7 @@ msgstr "ชุดเริ่มต้นช่วยให้คุณแชร msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "หน้าสถานะ" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "ขั้นตอนที่ {0} จาก {1}" @@ -11754,7 +11765,7 @@ msgstr "ล้างพื้นที่เก็บข้อมูลแล้ msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "สมัครสมาชิก @{0} เพื่อใช้ป้ายกำกับเหล่านี้:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "ระบบ" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "กดเพื่อลบ" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "ภารกิจสำเร็จ - การกดถูกใจ 10!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "สอนอัลกอริธึมของเราเกี่ยวกับสิ่งที่คุณชอบ" @@ -12060,7 +12073,7 @@ msgstr "เงื่อนไข" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "หาชุดเริ่มต้นไม่เจอ" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "มีแค่นี้แหละท่านผู้ชม!!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "ชุดเริ่มต้นที่คุณพยายามดูไม่ถูกต้อง คุณสามารถลบชุดเริ่มต้นนี้แทนได้" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "รหัสยืนยันที่คุณให้มานั้ msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "ธีม" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "เกิดปัญหาในการติดต่อเซิร์ฟเวอร์" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "เกิดปัญหาในการดึงการแจ้งเตือน คลิกที่นี่เพื่อลองอีกครั้ง" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "เกิดปัญหาในการดึงโพสต์ คลิกที่นี่เพื่อลองอีกครั้ง" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "หน้าจอ {screenDescription} นี้ถูกแจ้งเตือน : " @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "บัญชีนี้ได้ร้องขอให้ผู้ใช้ลงชื่อเข้าใช้เพื่อดูโปรไฟล์ของตน" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "นี่จะลบ @{0} ออกจากลิสต์เข้าถึงด่วน" @@ -12786,7 +12801,7 @@ msgstr "การตั้งค่าเธรด" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "ปลดบล็อกบัญชีหรือไม่?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "เลิกติดตาม {0}" msgid "Unfollow account" msgstr "เลิกติดตามบัญชี" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "เปิดเสียงกระทู้" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "เปิดเสียงวิดีโอ" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "เลิกปักหมุด" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "เลิกปักหมุดจากหน้าแรก" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "เลิกปักหมุดจากลิสต์การModerate" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "เลิกสมัครรับข้อมูลจากผู้ msgid "Unsubscribed from list" msgstr "เลิกสมัครรับข้อมูลจากลิสต์แล้ว" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "การอัปเดตการมองเห็นการตอบกลับล้มเหลว" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "อัปโหลดรูปภาพแทน" @@ -13355,7 +13374,7 @@ msgstr "อัปโหลดจากไฟล์" msgid "Upload from Library" msgstr "อัปโหลดจากไลบรารี" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "วิดีโอ" msgid "Video failed to process" msgstr "การประมวลผลวิดีโอไม่สำเร็จ" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "เกมวิดีโอ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "ไม่พบวิดีโอ" @@ -13653,7 +13672,7 @@ msgstr "ไม่พบวิดีโอ" msgid "Video settings" msgstr "การตั้งค่าวิดีโอ" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13681,17 @@ msgstr "" msgid "Video: {0}" msgstr "วิดีโอ: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "ดูอวตาร์ของ {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "ดูโปรไฟล์ของ {0}" @@ -13724,13 +13743,13 @@ msgstr "ดูบล็อกโพสต์สำหรับรายละเ msgid "View debug entry" msgstr "ดูลิสต์ดีบัก" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "ดูรายละเอียด" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "ดูเธรดเต็ม" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "ดูบริการติดป้ายกำกับที่จัดทำโดย @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "ดูผู้ใช้ที่ชอบฟีดนี้" @@ -13831,7 +13850,7 @@ msgstr "ดูลิสต์การModeration ของคุณ" msgid "View your muted accounts" msgstr "ดูบัญชีที่คุณปิดเสียง" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "เรากำลังประสบปัญหาเครือข่าย โปรดลองอีกครั้ง" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "ขออภัย เราไม่สามารถแก้ไข msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ขออภัย เราไม่สามารถโหลดคำที่คุณปิดเสียงในขณะนี้ โปรดลองอีกครั้ง" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ขออภัย! โพสต์ที่คุณตอบกลับถูกลบไปแล้ว" @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "มีอะไรใหม่?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "อุ๊ย!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "เขียนโพสต์" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "เขียนคำตอบของคุณ" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "คุณไม่ได้รับอนุญาตให้อัปโหลดวิดีโอ." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "คุณสามารถลงชื่อเข้าใช้ด้วยรหัสผ่านใหม่ของคุณได้แล้ว" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "คุณถึงขีดจำกัดการอัปโหลดวิดีโอชั่วคราวแล้ว กรุณาลองอีกครั้งในภายหลัง" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "คุณยังไม่ได้สร้างชุดเริ่มต้น!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "คุณสามารถเพิ่มได้สูงสุด 3 ฟีด" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "คุณต้องติดตามผู้อื่นอย่างน้อย 7 คนจึงจะสามารถสร้างชุดเริ่มต้นได้" @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "คุณจะติดตามผู้ใช้และฟีดที่แนะนำทันทีที่สร้างบัญชีเสร็จ!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "คุณจะติดตามผู้ใช้ที่แนะนำทันทีที่สร้างบัญชีเสร็จ!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "คุณมาถึงจุดสิ้นสุดฟีดของคุณแล้ว! ค้นหาบัญชีเพิ่มเติมเพื่อติดตาม" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "คุณถึงขีดจำกัดการอัพโหลด msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "คุณถึงขีดจำกัดการอัพโหลดวิดีโอต่อวันแล้ว (วิดีโอมากเกินไป)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "บัญชีของคุณ" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "บัญชีของคุณยังมีอายุไม่มากพอที่จะอัพโหลดวิดีโอ กรุณาลองใหม่อีกครั้งในภายหลัง" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po index 2b1e855231..4a41847551 100644 --- a/src/locale/locales/tr/messages.po +++ b/src/locale/locales/tr/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: tr\n" +"Language: tr_TR\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" kategorisi (etkin)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(engelli mesaj gizlenmiş)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(gömülü içerik içeriyor)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(silinmiş mesaj)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(geçersiz sohbet davetiyesi bağlantısı)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(siz katılmadan önce gönderilen mesaj)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, other {# saat}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, other {gönderinize # işaret uygulandı}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, other {# işaret uygulandı}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, other {# beğeni}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# üye}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, other {# katılma talebi}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {# kişi}} tepki verdi – {1}" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Hesap)" @@ -251,36 +252,13 @@ msgstr "{0} sohbete eklendi" msgid "{0} and {1} added to chat" msgstr "{0} ve {1} sohbete eklendi" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} ve {1} bunu beğendi" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} ve {others, plural, other {{2} kişi daha}} bunu beğendi" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} ve {othersLabel} bunu beğendi" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} takip edilen" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} sizi engelliyor" @@ -324,14 +302,6 @@ msgstr "{0} ayrıldı" msgid "{0} left the group" msgstr "{0} gruptan ayrıldı" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} bunu beğendi" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "50'de {0}" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} şu tepkiyi verdi: {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} ve {memberCount, plural, other {# kişi daha}} sohbete eklendi" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1}, ve {others, plural, other {{3} kişi daha}} bunu beğendi" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} ve {othersLabel} bunu beğendi" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} sizi doğruladı" msgid "{following} following" msgstr "{following} takip ediliyor" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "{handle} eklenemez" @@ -698,7 +660,7 @@ msgstr "{handle} eklenemez" msgid "{handle} can't be messaged" msgstr "{handle} kullanıcısına mesaj gönderilemez" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "{handle} kişisine mesaj atılamaz" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, other {# okunmamış öğe}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {# bağlantı bulundu}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, other {{1} kişi daha}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} Bluesky'a {timeAgoString} önce katılmış" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} Bluesky'a {timeAgoString} önce bir başlangıç paketi kullanarak katılmış" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, other {# karakter kaldı}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} yanıtladı" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName}, {originalName} adlı kişiye yanıt verdi" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} size yanıt verdi" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {# talep}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ talep" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}s önce" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} güvenilir bir doğrulayıcı" @@ -842,13 +795,13 @@ msgstr "{userName} kullanıcısının doğrulamaları" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, other {takip edilen}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {alıntı}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {yeniden gönderi}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, other {kaydedilme}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, other {beğeni}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> sizi ekledi" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<4>Bluesky'da haber, spor, siyaset ve diğer olan biteni aramak için<3> <0>giriş yapın<1> veya <2>bir hesap oluşturun." @@ -971,7 +924,7 @@ msgstr "30 gün" msgid "7 days" msgstr "7 gün" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Bluesky'da bulabileceğiniz bazı popüler akışların derlenmiş hali" @@ -988,9 +941,11 @@ msgstr "Bir ağ hatası oluştu. Lütfen internet bağlantınızı kontrol edin" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Yeni bir kod yollandı" msgid "A new form of verification" msgstr "Yeni bir doğrulama biçimi" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Siz katılmadan önce gönderilen bir mesaja yanıt" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Gönderi düzenleyicisinin bir gönderi yanındaki yeni \"Taslaklar\" butonu ve gökkuşağı havai fişek efekti barındıran ekran görüntüsü. Altında, düzenleyicideki metinde \"Hey, haberleri duydunuz mu? Bluesky'da taslaklar var artık!!!\" yazıyor." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Seçilmiş alıcılardan biri gönderen tarafından takip edilmiyor." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Erişim istendi! Grup sahibi talebinizi inceleyecek." msgid "Accessibility" msgstr "Erişilebilirlik" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Erişilebilirlik Ayarları" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Liste Tarafından Hesap Susturuldu" msgid "Account options" msgstr "Hesap seçenekleri" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Hesap hızlı erişimden kaldırıldı" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Çıkıntılı onay tikine sahip hesaplar <0><1/> başka hesapları doğrulayabilir. Bu güvenilir doğrulayıcılar Bluesky tarafından seçilir." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Başkalarının etkinlikleri" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Etkinlik bildirimleri" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Alternatif metin ekle (isteğe bağlı)" msgid "Add another account" msgstr "Başka hesap ekle" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Başka gönderi ekle" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Konuya yeni bir gönderi ekle" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Başka bir arama filtresi ekle" @@ -1253,7 +1213,7 @@ msgstr "Hesaba otomasyon işareti ekle" msgid "Add emoji reaction" msgstr "Emoji tepkisi ekle" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Filtre ekle" @@ -1338,7 +1298,7 @@ msgstr "Akışlarınıza bu akışı ekleyin" msgid "Add to lists" msgstr "Listelere ekle" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Kayıtlı gönderilere ekle" @@ -1400,7 +1360,7 @@ msgstr "Yetişkin" msgid "Adult content" msgstr "Yetişkin içerik" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Doğrudan mesajlara erişime izin verir" msgid "Already have a code?" msgstr "Zaten bir kodunuz mu var?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "Zaten bir hesabınız mı var?" @@ -1614,7 +1574,7 @@ msgstr "{0} adresine bir e-posta gönderildi. Aşağıda girebileceğiniz bir on msgid "An error has occurred" msgstr "Bir hata oluştu" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Bir hata oluştu" @@ -1631,7 +1591,7 @@ msgstr "Önerilen hesaplar getirilemedi." msgid "An error occurred while fetching the feed." msgstr "Akış getirilirken bir hata oluştu." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Başlangıç paketiniz oluşturulurken bir hata oluştu. Yeniden denemek ister misiniz?" @@ -1640,11 +1600,11 @@ msgstr "Başlangıç paketiniz oluşturulurken bir hata oluştu. Yeniden denemek msgid "An error occurred while hiding suggestion. {0}" msgstr "Öneriyi gizlerken bir hata oluştu. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Video yüklenirken bir hata oluştu. Lütfen daha sonra tekrar deneyin." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Video yüklenirken bir hata oluştu. Lütfen tekrar deneyin." @@ -1684,7 +1644,7 @@ msgstr "Bir hata oluştu. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Bir telefon rehberinden Bluesky uygulamasına akan kullanıcı avatarlarını gösteren bir illüstrasyon" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Birkaç Bluesky gönderisinin yeniden gönderi, beğeni ve yorum yapma simgeleriyle beraber çizimi" @@ -1705,17 +1665,15 @@ msgstr "Davetiye bağlantısı insanların bu gruba doğrudan eklenmeden katıla msgid "An issue not included in these options" msgstr "Bu seçeneklerde yer almayan bir sorun" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Grup sohbetini oluştururken bir sorun çıktı, lütfen tekrar deneyin." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Sohbeti başlatırken bir sorun çıktı, lütfen tekrar deneyin." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Sohbeti açmaya çalışırken bir sorun oluştu" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Grup sohbetini oluştururken bir sorun çıktı, lütfen tekrar deneyin." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "Herhangi bir tarih" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "Herkes" @@ -1802,7 +1760,7 @@ msgstr "Beni takip eden herkes" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Ona sahip olan kimse artık katılamayacak ya da katılmayı talep edemeyecek. İstediğiniz zaman yeni bir tane oluşturabilirsiniz." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Uygulama şifresi isimleri en az 4 karakter uzunluğunda olmalıdır" msgid "App passwords" msgstr "Uygulama şifreleri" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Uygulama Şifreleri" @@ -1891,8 +1849,8 @@ msgstr "Bu karara itiraz et" msgid "Appeal this label" msgstr "Bu işarete itiraz et" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "Pull Request'i uygula" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0} kaynağından arşivlendi" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arşivlenmiş gönderi" @@ -1980,7 +1938,7 @@ msgstr "Bunu akışlarınızdan çıkarmak istediğinize emin misiniz?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "{0} grubuna katılma talebinizi geri çekmek istediğinizden emin misiniz?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Bu taslağı silmek istediğinizden emin misiniz?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Kuzey Işıkları" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Otomasyonlu hesap" @@ -2033,7 +1991,7 @@ msgstr "Otomatik" msgid "Automation label" msgstr "Otomasyon işareti" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Otomasyon İşareti" @@ -2050,12 +2008,16 @@ msgstr "Videoları ve GIFleri otomatik oynat" msgid "Available" msgstr "Kullanılabilir" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Bir gönderi oluşturmadan ya da yanıt vermeden önce e-postanızı doğrulamanız gerekmektedir." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Bir başlangıç ​​paketi oluşturmadan önce e-posta adresinizi doğrulamanız gerekir." @@ -2135,10 +2097,10 @@ msgstr "{name} kullanıcısının gönderilerinden bildirim alabilmeniz için ö #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "Aşağıdaki alanları doldurarak yaş güvencesi işlemine başlayın." msgid "Beta Feature" msgstr "Beta Özellik" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Beta özellikler" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Beta özellikler etkinleştirildi" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "Doğum tarihi" msgid "Birthday" msgstr "Doğum günü" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Engellendi" msgid "Blocked accounts" msgstr "Engellenen hesaplar" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Engellenen Hesaplar" @@ -2282,7 +2250,7 @@ msgstr "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya 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 "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez. Onların içeriğini görmeyeceksiniz ve onlar da sizinkini görmekten alıkonulacaklar." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Engellemeniz bu işaretleyicinin hesabınıza işaret koymasına engel olmayacaktır." @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky iddia edilen tarihin doğruluğunu onaylayamaz." @@ -2330,7 +2299,7 @@ msgstr "Bluesky, barındırma sağlayıcınızı seçebileceğiniz açık bir a msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky kendi sağlayıcınızı seçebildiğiniz açık bir ağdır. Eğer burada yeniyseniz varsayılan \"Bluesky Social\" seçeneğinde kalmanızı öneririz." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky arkadaşlarla daha güzel!" @@ -2358,7 +2327,7 @@ msgstr "Bluesky Social Hizmet Şartları" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky bağlantılarınızı şifreli veri olarak tutar. Bağlantılarınızı kaldırmanız bu veriyi anında siler." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky, ağınızdaki kişilerden bir dizi önerilen hesap seçecektir." @@ -2425,24 +2394,25 @@ msgstr "Keşfet sayfasında daha çok öneriye göz at" msgid "Browse other feeds" msgstr "Diğer akışlara göz at" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "{displayName} hakkındaki gönderilere göz at" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "{displayName} etiketini barındıran gönderilere göz at" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "{displayName} başlangıç paketine göz at" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "{0} konusuna göz at" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "{displayName} konusunu görüntüle" @@ -2461,8 +2431,8 @@ msgstr "Ana akışa geri dönüş butonu" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "{0} tarafından" @@ -2473,9 +2443,9 @@ msgstr "@{0} tarafından" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "<0>{0} tarafından geliştiriliyor" @@ -2504,11 +2474,11 @@ msgstr "Bir hesap oluşturarak <0>Hizmet Şartları'nı ve <1>Gizlilik Polit msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Bir hesap oluşturarak <0>Hizmet Şartları'nı kabul etmiş sayılırsınız." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Size ait" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2504,7 @@ msgstr "Kamera erişimi gerekli" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "Kamera erişimi gerekli" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Yeniden etkinleştirmeyi iptal et ve çıkış yap" msgid "Cancel reply" msgstr "Yanıtı iptal et" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Aramayı iptal et" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Başlangıç paketine yapılan değişiklikler listeyi oluşturduktan sonra ona yansıtılmayacaktır. Liste bağımsız bir kopya olacaktır." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Sohbet sessize alındı" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Sohbet bulunamadı." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Sohbet seçenekleri" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Sohbet sahipleri grup sohbetinden ayrılamaz." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Sohbet alıcısı gönderici tarafından takip edilmiyor." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Sohbet istekleri gelen kutusu" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Sohbet istekleri" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Mesajlaşma ayarları" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Sohbet sessizden çıkarıldı" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Sohbetler" @@ -2837,7 +2808,7 @@ msgstr "Alan adı doğrulama yöntemini seçin" msgid "Choose Feeds" msgstr "Akışları Seçin" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Benim için seç" @@ -2854,7 +2825,7 @@ msgstr "Kişileri Seç" msgid "Choose post languages" msgstr "Gönderi dillerini seçin" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Bu rengi avatar olarak seç" @@ -2879,7 +2850,7 @@ msgstr "Kendi zaman akışınızı seçin! Topluluk tarafından oluşturulan ak msgid "Choose your password" msgstr "Şifrenizi seçin" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Kullanıcı adınız" @@ -2966,7 +2937,7 @@ msgstr "Bu grup sohbetinin davetiye bağlantısını görüntülemek için buray msgid "Click to open tag menu for {0}" msgstr "{0} etiket menüsünü açmak için tıklayın" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "İletilemeyen mesajı tekrar denemek için tıklayın" @@ -3003,7 +2974,7 @@ msgstr "İletilemeyen mesajı tekrar denemek için tıklayın" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "İletilemeyen mesajı tekrar denemek için tıklayın" msgid "Close" msgstr "Kapat" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Etkin iletişim kutusunu kapat" @@ -3047,7 +3018,7 @@ msgstr "Bildirimi kapat" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "Görsel göstericiyi kapat" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Menüyü kapat" @@ -3090,7 +3061,7 @@ msgstr "Gelen talepler bildirimini kapat" msgid "Close this dialog" msgstr "Bu diyalogu kapat" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "Hoşgeldiniz ekranını kapat" @@ -3098,7 +3069,7 @@ msgstr "Hoşgeldiniz ekranını kapat" msgid "Closes password update alert" msgstr "Şifre güncelleme uyarısını kapatır" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Gönderi düzenleyiciyi kapatır ve gönderi taslağını siler" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "Renk" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Renk modu" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Çizgi romanlar" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Topluluk Kuralları" @@ -3141,7 +3112,7 @@ msgstr "Topluluk Kuralları" msgid "Complete onboarding and start using your account" msgstr "Onboarding'i tamamlayın ve hesabınızı kullanmaya başlayın" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Meydan okumayı tamamlayın" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Yeni gönderi oluştur" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "{0, plural, other {# karakter}} uzunluğuna kadar gönderiler oluşturun" @@ -3160,11 +3131,11 @@ msgstr "{0, plural, other {# karakter}} uzunluğuna kadar gönderiler oluşturun msgid "Compose reply" msgstr "Yanıt oluştur" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIF sıkıştırılıyor..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Video sıkıştırılıyor..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "Destek ekibimize ulaşın" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Destek ile iletişime geçin" @@ -3253,7 +3224,7 @@ msgstr "İçerik ve Medya" msgid "Content and media" msgstr "İçerik ve medya" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "İçerik ve Medya" @@ -3265,10 +3236,6 @@ msgstr "İçerik Engellendi" msgid "Content filters" msgstr "İçerik filtreleri" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Ağın genelinden beğeneceğinizi düşündüğümüz içerik." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "İçerik dilleri" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Kendine zarar vermeyi özendiren ya da betimleyen içerik" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "İçerik Uyarısı" msgid "Content warnings" msgstr "İçerik uyarıları" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Bağlam menüsü arkaplanı, menüyü kapatmak için tıklayın." @@ -3302,7 +3269,7 @@ msgstr "Bağlam menüsü arkaplanı, menüyü kapatmak için tıklayın." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Konuya devam et..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Grup adına devam et" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "Yazışma bulunamadı." msgid "Copied build version to clipboard" msgstr "Sürüm numarası panoya kopyalandı" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Bağlantı panoya kopyalandı" @@ -3376,7 +3343,7 @@ msgstr "Bağlantı panoya kopyalandı" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Uygulama Şifresini Kopyala" msgid "Copy at:// URI" msgstr "Bu at:// URI'sini kopyala" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Yazar DID'ini kopyala" @@ -3449,10 +3416,10 @@ msgstr "Bağlantıyı Kopyala" msgid "Copy link to list" msgstr "Liste bağlantısını kopyala" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Gönderi bağlantısını kopyala" @@ -3470,8 +3437,8 @@ msgstr "Başlangıç paketi bağlantısını kopyala" msgid "Copy message text" msgstr "Mesajı kopyala" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Gönderinin at:// URI'sini kopyala" @@ -3490,7 +3457,7 @@ msgstr "TXT kayıt değerini kopyala" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Telif Hakkı Politikası" @@ -3540,11 +3507,11 @@ msgstr "Tüm tutan bağlantılar takip edilemedi. {0}" msgid "Could not leave chat" msgstr "Sohbetten ayrılınamadı" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Sohbet bırakılamadı." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Akış yüklenemedi" @@ -3562,7 +3529,7 @@ msgstr "Profil yüklenemedi" msgid "Could not mute chat" msgstr "Sohbet sessize alınamadı" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Üye çıkartılamadı." @@ -3606,8 +3573,8 @@ msgstr "inekler domuzlar" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Oluştur" @@ -3624,26 +3591,26 @@ msgstr "Bu başlangıç paketinden bir liste oluştur" msgid "Create a QR code for a starter pack" msgstr "Başlangıç paketi için QR kod oluşturun" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Bir başlangıç paketi oluştur" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Başlangıç Paketi oluştur" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Benim için bir başlangıç paketi oluştur" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Kaydol" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Bir hesap oluştur" @@ -3666,15 +3633,15 @@ msgstr "Bir hesap oluştur" msgid "Create an account without using this starter pack" msgstr "Bu başlangıç ​​paketini kullanmadan bir hesap oluşturun" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Bunun yerine bir avatar oluştur" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Bir tane daha oluştur" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Grup sohbeti oluştur" @@ -3743,7 +3710,7 @@ msgstr "Kültür" msgid "Current beta features" msgstr "Güncel beta özellikler" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Aktif sohbet" @@ -3770,8 +3737,8 @@ msgstr "Tehlikeli maddeler veya uyuşturucu istismarı" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Karanlık" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Karanlık" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Karanlık tema" @@ -3814,7 +3781,7 @@ msgstr "Bu dil önerisini reddet" msgid "Deepfake adult content" msgstr "Deepfake yetişkin içerik" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Varsayılan" @@ -3894,7 +3861,7 @@ msgstr "Hesabımı sil" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Gönderiyi sil" @@ -3988,7 +3955,7 @@ msgstr "Diyalog: kimin bu gönderiyle etkileşebileceğini ayarlayın" msgid "Dialog: Set search filters" msgstr "Diyalog: Arama filtrelerini ayarla" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Karart" @@ -4002,7 +3969,7 @@ msgstr "Devre dışı bırak" msgid "Disable 2FA" msgstr "İki adımlı doğrulamayı devre dışı bırak" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Altyazıları kapat" @@ -4045,9 +4012,9 @@ msgstr "Devre dışı" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Sil" msgid "Discard changes?" msgstr "Değişiklikler silinsin mi?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Taslak silinsin mi?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Gönderi silinsin mi?" @@ -4079,6 +4046,10 @@ msgstr "Germ DM bağlantısını kes" 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/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Akışları keşfet" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Uygulamaların hesabımı oturum açmamış kullanıcılara göstermesin msgid "Discover new custom feeds" msgstr "Yeni özel akışları keşfet" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Yeni akışlar keşfedin" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Yeni Akışlar Keşfet" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Yok say" @@ -4103,19 +4070,19 @@ msgstr "Yok say" msgid "Dismiss banner" msgstr "Bildirimi gizle" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Hatayı yok say" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Başlangıç rehberini gizle" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "İlgi alanlarını gizle" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Canlı etkinlik panelini kapat" @@ -4142,7 +4109,7 @@ msgstr "Alternatif metin rozetlerini daha büyük görüntüle" msgid "Display name" msgstr "Görünen ad" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Trolleri ve tık tuzaklarını geride bırakın. Gerçek insanları ve anlamlı sohbetleri bulun." @@ -4205,8 +4172,8 @@ msgstr "Merak etmeyin! Tüm mesajlarınız ve ayarlarınız saklandı ve bir yet #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "Merak etmeyin! Tüm mesajlarınız ve ayarlarınız saklandı ve bir yet msgid "Done" msgstr "Tamam" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Bir tepki eklemek için mesaja çift dokunun ya da uzun basın" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Bu diyalogu kapatmak için çift dokunun" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Beğenmek için çift dokunun" @@ -4328,6 +4295,7 @@ msgstr "Yeme bozuklukları" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Resmi düzenle" msgid "Edit interaction settings" msgstr "Etkileşim ayarlarını düzenle" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "İlgi alanlarını düzenle" @@ -4397,7 +4365,7 @@ msgstr "Canlı yayın durumunu düzenle" msgid "Edit moderation list" msgstr "Moderasyon listesini düzenle" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Akışlarımı Düzenle" @@ -4406,6 +4374,11 @@ msgstr "Akışlarımı Düzenle" msgid "Edit name" msgstr "İsmi düzenle" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "{0} kullanıcısından gelen bildirimleri düzenle" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Kişileri Düzenle" @@ -4444,7 +4417,7 @@ msgstr "Kullanıcı listesini düzenle" msgid "Edit who can reply" msgstr "Kimin yanıtlayabileceğini düzenle" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Başlangıç paketini düzenle" @@ -4500,8 +4473,8 @@ msgstr "Gömmek için HTML kodu" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Gönderiyi göm" @@ -4509,7 +4482,7 @@ msgstr "Gönderiyi göm" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Bu gönderiyi web sitenize gömün. Aşağıdaki kod parçasını kopyalayın ve web sitenizin HTML kodunun içine yapıştırın." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Gömülü video oynatıcı" @@ -4533,7 +4506,7 @@ msgstr "Yetişkin içeriği etkinleştirin" msgid "Enable beta features" msgstr "Beta özellikleri etkinleştir" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Altyazıları aç" @@ -4550,12 +4523,13 @@ msgstr "Harici medyayı etkinleştirin" msgid "Enable media players for" msgstr "Medya oynatıcılarını etkinleştir" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Bir hesabın bildirimlerini etkinleştirmek için profilini ziyaret edin ve <0>zil simgesine <1/> basın." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Anında bildirimleri etkinleştir" @@ -4581,7 +4555,7 @@ msgstr "Keşif akışında (\"Discover\") gündem videolarını etkinleştir" msgid "Enabled" msgstr "Etkinleştirildi" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Akış sonu" @@ -4608,7 +4582,7 @@ msgstr "Bir sözcük veya etiket girin" msgid "Enter code" msgstr "Kodu girin" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Tam ekran yap" @@ -4650,11 +4624,11 @@ msgstr "Kullanıcı adınızı ve şifrenizi girin" msgid "Enters full screen" msgstr "Tam ekrana geçer" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Eğlence" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Hata" @@ -4684,7 +4658,7 @@ msgstr "Dosya kaydedilirken bir hata oluştu" msgid "Error receiving captcha response." msgstr "Captcha yanıtı alınırken bir hata oldu." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Hata: {error}" @@ -4696,8 +4670,8 @@ msgstr "Herkes yanıtlayabilir" msgid "Everybody can reply to this post." msgstr "Bu gönderiyi herkes yanıtlayabilir." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Herkes" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Herkes" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Geri kalan her şey" @@ -4738,7 +4712,7 @@ msgstr "Takip ettiğim kullanıcıları hariç tut" msgid "Excludes users you follow" msgstr "Takip ettiğiniz kullanıcıları hariç tutar" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Tam ekrandan çık" @@ -4755,11 +4729,11 @@ msgstr "Kullanıcı listesini genişletir" msgid "Expand or collapse the full post you are replying to" msgstr "Yanıt verdiğiniz tam gönderiyi genişletin veya daraltın" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Gönderi metnini genişlet" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Gönderi metnini genişletir ya da daraltır" @@ -4802,15 +4776,15 @@ msgstr "Açık veya rahatsız edici olabilecek medya." msgid "Explicit sexual images." msgstr "Açık cinsel içerikli görseller." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Keşfet" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "Uygulamayı keşfet" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Harici Medya Tercihleri" @@ -4886,7 +4860,7 @@ msgstr "Kullanıcı adı değiştirilemedi. Lütfen tekrar deneyin." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Bağlantı kopyalanamadı" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Grup sohbetinden çıkılamadı" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Yazışmalar yüklenemedi" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Akışlar yüklenemedi" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Akış tercihleri ​​yüklenemedi" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Bildirim ayarları yüklenemedi." @@ -5012,14 +4987,14 @@ msgstr "Tercih yüklenemedi." msgid "Failed to load profiles" msgstr "Profiller yüklenemedi" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Önerilen akışlar yüklenemedi" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Önerilen takipler yüklenemedi" @@ -5027,12 +5002,12 @@ msgstr "Önerilen takipler yüklenemedi" msgid "Failed to lock group chat" msgstr "Grup sohbeti kilitlenemedi" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Sohbetlerin tümü okundu olarak işaretlenemedi" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "Talebiniz geri çekilemedi. Lütfen tekrar deneyin." msgid "Failed to resolve location. Please try again." msgstr "Konum çözümlenemedi. Lütfen tekrar deneyin." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Taslak kaydedilemedi" @@ -5191,7 +5166,7 @@ msgstr "Sahte hesap ya da bot" msgid "False information about elections" msgstr "Seçimler hakkında yanlış bilgi" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Akış" @@ -5212,7 +5187,7 @@ msgstr "Akışı oluşturan" msgid "Feed identifier" msgstr "Akış tanımlayıcısı" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Akış menüsü" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Geribildiriminiz akış operatörüne yollandı" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Akışlar güncellendi!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Beğeneceğinizi düşündüğümüz akışlar." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Güncellemeyi al" @@ -5273,11 +5244,11 @@ msgstr "Güncellemeyi al" msgid "File saved successfully!" msgstr "Dosya başarıyla kaydedildi!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "Yazara göre filtrele" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "Yazara göre filtrele (şu anda: {currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "Bu aramayı {0} ile filtrele" msgid "Filter who can opt to receive notifications for your activity" msgstr "Etkinliğinizden kimlerin bildirim alabileceğini filtreleyin" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Kimden bildirim alacağınızı filtreleyin" @@ -5352,8 +5323,8 @@ msgstr "Takip edilecek hesaplar bul" msgid "Find and invite friends" msgstr "Arkadaşlarınızı bulun ve davet edin" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Bağlantılarınızı Bulun" @@ -5387,7 +5358,7 @@ msgstr "Arkadaşlarınızı bulun" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Telefon numaranızı doğrulayarak ve rehberinizdeki kişilerle eşleştirerek arkadaşlarınızı bulun. Biz verilerinizi koruyoruz ve siz ne olacağını belirliyorsunuz. <0>Daha fazla bilgi edinin" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Kafa dengi insanlar bulun" @@ -5429,7 +5400,7 @@ msgstr "Arama alanına odaklan" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "{0} takip et" msgid "Follow {displayName}" msgstr "{displayName} kişisini takip et" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} kullanıcısını takip et" @@ -5453,11 +5424,11 @@ msgstr "{handle} kullanıcısını takip et" msgid "Follow 10 accounts" msgstr "10 hesabı takip et" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Başlamak için 10 kişiyi takip edin" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "7 Hesabı takip et" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "Takipçiler katılabilir" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Tanıdığınız @{0} takipçileri" @@ -5544,7 +5515,7 @@ msgstr "Tanıdığın takipçiler" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "{0} takip ediliyor" msgid "Following {displayName}" msgstr "{displayName} takip ediliyor" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "{handle} takip ediliyor" @@ -5578,21 +5549,21 @@ msgstr "{handle} takip ediliyor" msgid "Following feed preferences" msgstr "Takip edilenler akışı tercihleri" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Takip Edilenler Akışı Tercihleri" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sizi takip ediyor" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Yazı tipi" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Yazı boyutu" @@ -5612,13 +5583,13 @@ msgstr "Güvenlik gerekçesiyle <0>{currentEmail} e-posta adresinize bir ona msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Güvenlik nedeniyle, bunu bir daha görüntüleyemeyeceksiniz. Eğer bu uygulama şifresini kaybederseniz, yeni bir tane oluşturmanız gerekecek." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "En iyi deneyim için, tema yazı tipini kullanmanızı öneriyoruz." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Sizin İçin" @@ -5628,7 +5599,7 @@ msgstr "Sizin İçin" msgid "Forever" msgstr "Sonsuza kadar" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Gürültüyü unutun" @@ -5647,11 +5618,13 @@ msgstr "Şifrenizi mi unuttunuz?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Grup sohbetini simgeleyen dört mesaj balonu. İlk mesaj (İngilizce): \"Haberleri duydun mu? Bluesky'da grup sohbetleri var artık!\" İkinici mesaj (İngilizce): \"Yok artık!\" Üçüncü mesaj (İngilizce): \"Vay, hem de bir grupta 50 kişi!\" Dördüncü mesaj (İngilizce): \"Davetiye bağlantıları bile yollayabiliyorsun!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Akışınızı özgürleştirin" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Kimden" @@ -5674,7 +5647,7 @@ msgstr "<0/> tarafından" msgid "From these people" msgstr "Bu kişilerden" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Bir başlangıç ​​paketi oluşturun" @@ -5718,39 +5691,39 @@ msgstr "Test etmekte olduğumuz deneysel özelliklere erken erişim edinin." msgid "Get help" msgstr "Yardım al" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Başlangıç paketi katılımları, doğrulama ve diğer etkinlikler için bildirim alın." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Sizi takip ettiklerinde bildirim alın." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Gönderilerinizi beğendiklerinde bildirim alın." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Başkaları yeniden gönderimlerinizi beğendiğinde bildirim alın." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Sizden bahsettiklerinde bildirim alın." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Gönderilerinizi alıntıladıklarında bildirim alın." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Gönderilerinize yanıt verdiklerinde bildirim alın." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Gönderilerinizi yeniden gönderdiklerinde bildirim alın." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Başkaları yeniden gönderimlerinizi yeniden gönderdiğinde bildirim alın." @@ -5762,15 +5735,15 @@ msgstr "Kişiler size mesaj talebi gönderdiğinde bildirim alın." msgid "Get notifications when people send you messages." msgstr "Kişiler size mesaj gönderdiğinde bildirim alın." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Abone olduğunuz gönderilerle ilgili bir güncelleme olduğunda bildirim alın." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Yeni gönderilerden bildirim al" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Seçtiğiniz hesapların gönderileri ve yanıtları hakkında bildirim alın." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "{name} kullanıcısının yeni gönderilerinden bildirim al" @@ -5799,11 +5772,11 @@ msgstr "Başla" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF yüklendi" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Profilinize bir yüz ekleyin" @@ -5813,20 +5786,20 @@ msgstr "Şiddete övgü" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "Canlı yayın süresi" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "{0} profiline git" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Grup sohbeti ismi güncellendi" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Grup sohbeti ayarları" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Grup sohbetlerinde en fazla {0, plural, other {# kişi}} olabilir." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Grup kilitli" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Grup adı" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Grup adı çok uzun. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Maksimum # karakter olabilir.}}" @@ -6077,7 +6051,7 @@ msgstr "Zararlı ya da yüksek riskli eylemler" msgid "Harming or endangering minors" msgstr "Küçüklere zarar verme ya da tehlikeye atma" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Etiket" @@ -6098,7 +6072,7 @@ msgstr "Kodunuz var mı? <0>Buraya tıklayın." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Konumunuzu tutturamadık mı? <0>Konumunuzu GPS'le güncellemek için buraya dokunun." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Sorun mu yaşıyorsunuz?" @@ -6114,7 +6088,7 @@ msgstr "Bluesky tarafından kötüye kullanımı engellemek için 7 gün tutulur msgid "Help" msgstr "Yardım" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Bir resim yükleyerek veya bir avatar oluşturarak insanların bot olmadığınızı anlamalarına yardımcı olun." @@ -6140,7 +6114,7 @@ msgstr "Selam!" msgid "Hidden" msgstr "Gizli" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Moderasyon ayarlarınız tarafından gizlenmiş." @@ -6148,9 +6122,9 @@ msgstr "Moderasyon ayarlarınız tarafından gizlenmiş." msgid "Hidden list" msgstr "Gizli liste" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Gizli liste" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Gizle" @@ -6198,7 +6172,7 @@ msgstr "Yanıtı herkesten gizle" msgid "Hide reply for me" msgstr "Yanıtı benden gizle" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Bu kartı gizle" @@ -6218,12 +6192,12 @@ msgstr "Bu yanıtı gizle?" msgid "Hide translation" msgstr "Çeviriyi gizle" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Gündem başlıklarını gizle" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Gündem başlıkları gizlensin mi?" @@ -6240,7 +6214,7 @@ msgstr "Kullanıcı listesini gizle" msgid "Hide verification badges" msgstr "Doğrulama rozetlerini gizle" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "İçeriği gizler" @@ -6293,8 +6267,8 @@ msgstr "Hmmmm, o moderasyon hizmetini yükleyemedik." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Bekleyin! Videoya kademeli olarak erişim veriyoruz ve siz hâlâ sıradasınız. Birazdan tekrar kontrol edin!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "Yer sağlayıcı: {0}" msgid "Hosting provider: Bluesky" msgstr "Yer sağlayıcı: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "İlgi çeken" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Nasıl çalışır:" @@ -6409,6 +6379,7 @@ msgstr "Eğer e-posta adresinizi güncellerseniz e-posta ile iki adımlı doğru msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Şifrenizi değiştirmek istiyorsanız, size hesabınızın sizin olduğunu doğrulamak için bir kod göndereceğiz." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Hesabınızın etkinlik bildirimlerini kimlerin alabileceğini sınırlamak istiyorsanız, bunu <0>Ayarlar → Gizlilik ve Güvenlik bölümünden değiştirebilirsiniz." @@ -6548,7 +6519,7 @@ msgstr "Uygulama içi, anlık, herkes" msgid "In-app, push, people you follow" msgstr "Uygulama içi, anlık, takip ettikleriniz" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Gelen kutusu boş" @@ -6560,6 +6531,7 @@ msgstr "Gelen kutusu boş!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Şu anda yalnızca siz varsınız! Yukarıdan arama yaparak başlangıç ​​paketinize daha çok kişi ekleyin." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "İş ID: {0}" @@ -6816,8 +6788,8 @@ msgstr "Yazışmaya katıl" msgid "Journalism" msgstr "Gazetecilik" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Düzenlemeye devam et" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS web sitesi" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0} tarafından işaretlendi." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Yazarı tarafından işaretlendi." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "İşaretler" @@ -6852,7 +6824,7 @@ msgstr "İşaretler eklendi" msgid "Labels applied to this post" msgstr "Bu gönderiye eklenen işaretler" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "İşaretler, kullanıcılar ve içerikler üzerindeki açıklamalardır. Ağın gizlenmesi, uyarılması ve kategorilendirilmesi için kullanılabilirler." @@ -6864,7 +6836,7 @@ msgstr "Hesabınızdaki işaretler" msgid "Language" msgstr "Dil" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Dil Ayarları" @@ -6874,7 +6846,7 @@ msgstr "Dil Ayarları" msgid "Languages" msgstr "Diller" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Daha büyük" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "En son az önce başlatılmış" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "En son" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Daha fazla bilgi edinin" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Daha Fazla Bilgi Edinin" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "<0>Gelişmiş aramayı nasıl kullanacağınız hakkında daha fazla bilgi edinin." @@ -6937,8 +6909,8 @@ msgstr "Bağlantılarınızı yükleme hakkında daha fazla bilgi edinin" msgid "Learn more about self hosting your PDS." msgstr "PDS'nizi kendiniz barındırmayla ilgili daha çok bilgi edinin." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Bu içeriğe uygulanan moderasyonla ilgili daha çok bilgi edinin" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Blog gönderimizi okuyarak bu değişikliklerle ve düşüncelerinizi bizle nasıl paylaşacağınızla ilgili daha fazla bilgi edinin." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Bu uyarı hakkında daha fazla bilgi edinin" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "<0>Hesap ayarlarınızdan daha çok bilgi edinin." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Daha fazlasını öğren." @@ -6993,8 +6965,8 @@ msgstr "Ayrıl" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Bluesky'ı terk ediyorsunuz" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "Bu sohbetten ayrılmanız onu kalıcı olarak kilitleyeceği gibi yeniden katılmanız da mümkün olmayacaktır." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Grup sohbetinden ayrıldınız." @@ -7042,7 +7014,7 @@ msgstr "Grup sohbetinden ayrıldınız." msgid "left to go." msgstr "kaldı." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Bana seçtir" @@ -7057,7 +7029,7 @@ msgstr "Hadi gidelim!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Açık" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Aydınlık" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Beğen" @@ -7076,7 +7048,7 @@ msgstr "Beğen" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Beğen ({0, plural, other {# beğeni}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10 gönderiyi beğen" @@ -7085,7 +7057,7 @@ msgstr "10 gönderiyi beğen" msgid "Like 10 posts to train the Discover feed" msgstr "Keşif akışını (\"Discover\") eğitmek için 10 gönderiyi beğenin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Bu akışı beğen" @@ -7093,8 +7065,8 @@ msgstr "Bu akışı beğen" msgid "Like this labeler" msgstr "Bu işaretleyiciyi beğen" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Beğenenler" @@ -7111,27 +7083,45 @@ msgstr "Beğenenler" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {# kullanıcı}} tarafından beğenildi" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "{0} tarafından beğenildi" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "{0} ve {1} tarafından beğenildi" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {# kullanıcı}} tarafından beğenildi" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Beğeniler" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Yeniden gönderilerinize dair beğeniler" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Bu gönderideki beğeniler" @@ -7144,7 +7134,7 @@ msgstr "Düz" msgid "Link copied to clipboard" msgstr "Bağlantı panoya kopyalandı" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liste" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste sessizden çıkarıldı" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "CANLI" msgid "Live event happening now: {0}" msgstr "Şimdi gerçekleşen canlı etkinlik: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Canlı etkinlik gizlendi" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Canlı etkinlik yeniden görünür hale getirildi" @@ -7279,12 +7269,12 @@ msgstr "Canlı özelliği beta'dır" msgid "Live link" msgstr "Canlı yayın bağlantısı" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Daha fazlasını yükle" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Daha çok önerilen akış yükle" @@ -7292,8 +7282,8 @@ msgstr "Daha çok önerilen akış yükle" msgid "Load new notifications" msgstr "Yeni bildirimleri yükle" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "Bu grup sohbetini kilitle" msgid "Locked" msgstr "Kilitlendi" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7387,7 +7377,7 @@ msgstr "Sevgi GIFleri" msgid "Make adjustments to email settings for your account" msgstr "Hesabınız için e-posta ayarlarınızı düzenleyin" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Benim için bir tane yap" @@ -7418,15 +7408,15 @@ msgstr "Kendiniz seçin" msgid "Mark all as read" msgstr "Tümünü okunmuş olarak işaretle" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Tüm sohbetleri okundu olarak işaretle" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Okundu olarak işaretle" msgid "Marked all as read" msgstr "Tümü okunmuş olarak işaretlendi" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Tüm sohbetler okundu olarak işaretlendi" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Tüm talepler okundu olarak işaretlendi" @@ -7456,8 +7446,12 @@ msgstr "Tüm talepler okundu olarak işaretlendi" msgid "Maybe later" msgstr "Belki daha sonra" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Ben" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Medya" @@ -7475,7 +7469,7 @@ msgstr "Başka cihazda depolanan görsel" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Bazı gruplar için rahatsız edici ya da uygunsuz olabilecek medya." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Üye grup sohbetinden çıkarıldı." @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "bahsedilen kullanıcılar" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Bahsedenler" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mesaj silindi" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Mesaj gönderilemedi." @@ -7563,15 +7557,15 @@ msgstr "Mesaj çok uzun ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Mesaj seçenekleri" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mesajlar" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Bu kişiden gelen mesajlar o sizi engellediği sürece görünmeyecektir." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Bu kişiden gelen mesajlar siz onu engellediğiniz sürece görünmeyecektir." @@ -7592,7 +7586,7 @@ msgstr "Yanıltıcı" msgid "Missing media" msgstr "Kayıp medya" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderasyon" @@ -7636,7 +7630,7 @@ msgstr "Moderasyon listesi güncellendi" msgid "Moderation lists" msgstr "Moderasyon listeleri" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderasyon Listeleri" @@ -7645,7 +7639,7 @@ msgstr "Moderasyon Listeleri" msgid "moderation settings" msgstr "moderasyon araçları" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderasyon durumları" @@ -7786,7 +7780,7 @@ msgstr "Sessize alındı" msgid "Muted accounts" msgstr "Sessize alınan hesaplar" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Sessize Alınan Hesaplar" @@ -7867,7 +7861,6 @@ msgstr "Bir telif ihlali, hukuki talep ya da mevzuata uygunluk sorunu mu bildirm msgid "Nevermind, create a handle for me" msgstr "Boşver, bana bir kullanıcı adı üret" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Yeni" @@ -7893,11 +7886,11 @@ msgstr "{firstAuthorName} kullanıcısından yeni {postsCount, plural, one {gön #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Yeni sohbet" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Yeni Özellik" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Yeni takipçiler" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Yeni grup sohbeti" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Yeni grup sohbeti" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Yeni grup sohbetinin üyeleri:" @@ -7966,13 +7959,13 @@ msgstr "Yeni liste" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Yeni mesaj talepleri" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Yeni mesajlar" @@ -7982,12 +7975,12 @@ msgstr "Yeni mesajlar" msgid "New password" msgstr "Yeni şifre" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Yeni gönderi" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Önce en yeni yanıtlar" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Haberler" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Sonraki görsel" msgid "Night" msgstr "Gece" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Reklam yok, gizliliği ihlal eden kullanıcı izleme mekanizmaları yok, etkileşim tuzakları yok. Bluesky vaktinize ve ilginize saygı duyar." @@ -8098,7 +8091,7 @@ msgstr "Bir bitiş süresi belirlenmemiş" msgid "No feeds found. Try searching for something else." msgstr "Hiç akış bulunamadı. Başka bir şey aramayı deneyin." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Henüz bir takipçi yok" @@ -8118,7 +8111,7 @@ msgstr "Görsel yok" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Henüz beğeni yok" @@ -8135,7 +8128,7 @@ msgstr "Liste yok" msgid "No longer following {0}" msgstr "{0} artık takip edilmiyor" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Henüz bir medya yok" @@ -8143,7 +8136,7 @@ msgstr "Henüz bir medya yok" msgid "No messages yet" msgstr "Henüz mesaj yok" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Çöp dolu algoritmalarla felaket kaydırmalarına son! Size karşı değil, sizin için çalışan akışları bulun." @@ -8184,12 +8177,12 @@ msgstr "Kimse mesaj yollayamaz" msgid "No posts here" msgstr "Burada gönderi yok" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Henüz bir gönderi yok" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Henüz alıntı yok" @@ -8202,7 +8195,7 @@ msgstr "Henüz son GIFler yok. Burada görmek için bir tane seçin." msgid "No replies" msgstr "Yanıtlar olmasın" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Henüz bir yanıt yok" @@ -8217,13 +8210,13 @@ msgstr "Sonuç yok" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sonuç yok" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "\"{0}\" için sonuç bulunamadı." @@ -8236,23 +8229,23 @@ msgstr "Sonuç bulunamadı" msgid "No results found for \"{query}\"" msgstr "\"{query}\" için sonuç bulunamadı" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "Gelişmiş arama filtreleri uygulanmış olarak “<0>{query}” için sonuç bulunamadı." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "\"<0>{query}\" için sonuç bulunamadı." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Gelişmiş arama filtreleri uygulanmış sorgunuz için sonuç bulunamadı." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Sonuç bulunamadı." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Henüz bir başlangıç paketi yok" @@ -8265,7 +8258,7 @@ msgstr "Teşekkürler" msgid "No translation received from your device." msgstr "Cihazınızdan bir çeviri alınmadı." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Henüz bir video gönderisi yok" @@ -8278,7 +8271,7 @@ msgstr "Hiç kimse" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Henüz bunu kimse beğenmedi. Belki de ilk sen olmalısın!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Henüz bunu kimse alıntılamadı. Belki de ilk sen olmalısın!" @@ -8298,6 +8291,10 @@ msgstr "Rızasız mahrem görseller" msgid "Non-sexual Nudity" msgstr "Cinsel olmayan çıplaklık" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Hiçbiri" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "Bu platformda kullanılabilir değil." msgid "Not followed by anyone you’re following" msgstr "Takip ettiğiniz hiçkimse tarafından takip edilmiyor" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Bulunamadı" @@ -8333,7 +8330,7 @@ msgstr "Paylaşıma dair dikkatinize" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Not: Bluesky açık ve kamusal bir ağdır. Bu ayar yalnızca içeriğinizin Bluesky uygulaması ve web sitesindeki görünürlüğünü sınırlar, diğer uygulamalar bu ayarı dikkate almayabilir. İçeriğiniz hala diğer uygulamalar ve web siteleri tarafından çıkış yapan kullanıcılara gösterilebilir." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Not: Bu gönderi yalnızca giriş yapmış kullanıcılara görünür." @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "Henüz hiçbir şey kaydedilmedi" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Bildirim ayarları" @@ -8353,11 +8350,12 @@ msgstr "Bildirim ayarları" msgid "Notification sounds" msgstr "Bildirim sesleri" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Oh hayır!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "Tamam" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Tamam" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Onboarding sıfırlama" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Seçilmiş alıcılardan biri grup sohbetlerine izin vermiyor." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Seçilmiş alıcılardan biri sizi engellediğinden kendisiyle yazışılamaz." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Bir veya daha fazla GIF için alternatif metin eksik." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Bir ya da daha fazla görselin alternatif metni eksik." @@ -8454,11 +8454,11 @@ msgstr "Seçtiğiniz dosyalardan bir ya da birden fazlası desteklenmiyor." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "Seçtiğiniz dosyalardan bir ya da daha fazlası çok büyük. En fazla {VIDEO_MAX_SIZE_MB} MB olabilir." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Gönderilerden bir ya da birkaçı taslak olarak kaydetmek için çok uzun. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {Maksimum karakter sayısı # karakterdir.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Bir veya daha fazla videoda alternatif metin eksik." @@ -8471,7 +8471,7 @@ msgstr "Yalnızca {0} yanıtlayabilir." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "{1} görselden sadece {0} {2, plural, other {adet}} eklendi; limit {MAX_GALLERY_IMAGES} adettir" @@ -8519,7 +8519,7 @@ msgstr "Yalnızca video içeren gönderiler" msgid "Only replies" msgstr "Yalnızca yanıtlar" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Yalnızca WebVTT (.vtt) dosyaları desteklenmektedir" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Hay aksi, bu profil mevcut değil. Başka bir tane taramayı deneyin." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Hata!" @@ -8544,7 +8544,7 @@ msgstr "Hata!" msgid "Open advanced search options" msgstr "Gelişmiş arama seçeneklerini aç" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Avatar oluşturucuyu aç" @@ -8570,21 +8570,22 @@ msgstr "Yazışma seçeneklerini aç" msgid "Open draft" msgstr "Taslağı aç" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Çekmece menüyü aç" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Emoji seçiciyi aç" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Akış bilgi ekranını aç" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Akış seçenekleri menüsünü aç" @@ -8627,7 +8628,7 @@ msgstr "Moderasyon hata ayıklama sayfasını aç" msgid "Open muted words and tags settings" msgstr "Sessize alınmış kelime ve etiket ayarlarını aç" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Paketi aç" @@ -8699,7 +8700,7 @@ msgstr "Hata ayıklama girişi için ek ayrıntıları açar" msgid "Opens alt text dialog" msgstr "Alt metin diyaloğunu açar" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Cihazdaki kamerayı açar" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Yeni bir Bluesky hesabı oluşturma adımlarını açar" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Var olan Bluesky hesabınıza giriş yapma adımlarını açar" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Şifre güncellendi!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Duraklat" @@ -8925,12 +8926,12 @@ msgstr "Duraklat" msgid "Pause GIF" msgstr "GIF'i Durdur" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Videoyu duraklat" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Kişiler" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName} tarafından takip edilenler katılmayı talep edebilir" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0} tarafından takip edilenler" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0} tarafından takip edilenler" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Takip ettiklerim" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "Takip ettiklerim katılmayı talep edebilir" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Takip ettiğiniz kişiler" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Yetişkinler için resimler." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Akışı sabitle" @@ -9034,7 +9035,7 @@ msgstr "Akışı sabitle" msgid "Pin to home" msgstr "Ana ekrana sabitle" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Ana Sayfaya Sabitle" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Sabitlendi" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} Ana Sayfaya Sabitlendi" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Akışlarınıza sabitlendi" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Oynat" @@ -9076,8 +9077,8 @@ msgstr "{0} oynat" msgid "Play GIF" msgstr "GIF'i Oynat" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Videoyu oynat" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "Lütfen mesajınızı aşağıya yazın:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Politika" @@ -9269,7 +9270,7 @@ msgstr "Politika" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Gönder" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Gönderi" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Bir fotoğraf gönder" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Bir video gönder" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Hepsini Gönder" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Yine de gönder" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "Gönderi engellendi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} tarafından gönderi" @@ -9340,7 +9341,7 @@ msgstr "Gönderi Sizin Tarafınızdan Gizlenmiş" msgid "Post interaction settings" msgstr "Gönderi etkileşim ayarları" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Gönderi Etkileşim Ayarları" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Gönderi sabitlendi" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Gönderi kaydedildi" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Gönderi sabitlemesi kaldırıldı" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Gönderiler" @@ -9398,6 +9396,10 @@ msgstr "Gönderiler metinleri, etiketleri veya ikisiyle beraber sessize alınabi msgid "Posts hidden" msgstr "Gönderiler gizlendi" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Gönderiler, Yanıtlar" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Muhtemelen yanıltıcı bağlantı" @@ -9449,20 +9451,21 @@ msgstr "Gizlilik" msgid "Privacy and security" msgstr "Gizlilik ve güvenlik" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Gizlilik ve Güvenlik" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Gizlilik ve Güvenlik ayarları" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Gizlilik Politikası" msgid "Privacy violation of a minor" msgstr "Bir küçüğün gizliliğini ihlal" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIF işleniyor..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Video işleniyor..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Topluca sessize almak ya da engellemek için herkese açık, paylaşılabilir listeler." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Gönderiyi yayınla" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Gönderileri yayınla" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Yanıtları yayınla" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Yanıtı yayınla" @@ -9599,12 +9602,12 @@ msgstr "Alıntı gönderilen devre dışı bırakıldı" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Alıntılar" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Bu gönderinin alıntıları" @@ -9647,7 +9650,7 @@ msgstr "Hesabınızı yeniden etkinleştirin" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "{0, plural, other {# yanıt daha}} oku" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Gelişmiş arama filtrelerinin nasıl kullanılacağını okuyun" @@ -9657,11 +9660,11 @@ msgstr "Gelişmiş arama filtrelerinin nasıl kullanılacağını okuyun" msgid "Read blog post" msgstr "Blog gönderisini oku" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Devamını gizle" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Devamını oku" @@ -9687,11 +9690,11 @@ msgstr "Bluesky Gizlilik Politikasını Oku" msgid "Read the Bluesky Terms of Service" msgstr "Bluesky Hizmet Şartlarını Oku" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "Gerçek sohbetler." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "Gerçek insanlar." @@ -9721,10 +9724,6 @@ msgstr "Son aramalar" msgid "Recently used" msgstr "Yakın zamanda kullanılmış" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Öneriler" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Yeniden bağlan" @@ -9748,7 +9747,7 @@ msgstr "Sohbet isteğini reddet" msgid "Reject join request" msgstr "Katılma talebini reddet" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Yazışmaları yeniden yükle" @@ -9766,7 +9765,7 @@ msgstr "Yazışmaları yeniden yükle" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Kaldır" @@ -9792,8 +9791,8 @@ msgstr "{displayName} çıkarılsın mı?" msgid "Remove {q}" msgstr "{q} sorgusunu kaldır" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Hesabı kaldır" @@ -9845,15 +9844,15 @@ msgstr "Filtreyi kaldır" msgid "Remove from chat" msgstr "Sohbetten çıkar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Akışlarımdan kaldır" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Hızlı erişimden kaldırılsın mı?" @@ -9862,7 +9861,7 @@ msgstr "Hızlı erişimden kaldırılsın mı?" msgid "Remove from saved feeds" msgstr "Kayıtlı akışlardan kaldır" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Kayıtlı gönderilerden çıkar" @@ -9880,8 +9879,8 @@ msgstr "Resmi kaldır" msgid "Remove live status" msgstr "Canlı yayın durumunu kaldır" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Üyeyi çıkar" @@ -9943,7 +9942,7 @@ msgstr "Listeden kaldırıldı" msgid "Removed from saved feeds" msgstr "Kayıtlı akışlardan kaldırıldı" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Kayıtlı gönderilerden çıkarıldı" @@ -9952,7 +9951,7 @@ msgstr "Kayıtlı gönderilerden çıkarıldı" msgid "Removed from starter pack" msgstr "Başlangıç paketinden çıkartıldı" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Size yanıt" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "{senderName} kişisinden yanıtlanan mesaj, ona kaydırmak için dokunun" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Yanıtlanan mesaj siz katılmadan önce gönderilmiş" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Yanıtlanan mesaj, ona kaydırmak için dokunun" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Yanıtlar" @@ -10037,7 +10037,7 @@ msgstr "Bu gönderi yanıtlara kapalı." msgid "Reply" msgstr "Yanıtla" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Yanıtla" @@ -10098,8 +10098,8 @@ msgstr "Yazışmayı raporla" msgid "Report dialog" msgstr "Rapor diyaloğu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Akışı raporla" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Siz yeniden göndermişsiniz" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Yeniden gönderiler" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Bu gönderinin yeniden gönderilmesi" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Yeniden gönderilerinizin yeniden gönderileri" @@ -10253,7 +10253,7 @@ msgstr "Talep edildi" msgid "Requests" msgstr "Talepler" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Son hataya neden olan son eylemi tekrarlar" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Ana sayfaya döner" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Önceki sayfaya döner" @@ -10446,27 +10446,27 @@ msgstr "Doğum tarihini kaydet" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Değişiklikleri kaydet" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Değişiklikler kaydedilsin mi?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Taslağı kaydet" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Taslak kaydedilsin mi?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR kodu kaydet" msgid "Save these options for next time" msgstr "Bu seçimleri sonrası için sakla" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Akışlarıma kaydet" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Kayıtlı Akışlar" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Kayıtlı Gönderiler" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Akışlarınıza kaydedildi" @@ -10520,8 +10520,8 @@ msgstr "Akışlarınıza kaydedildi" msgid "Say hello!" msgstr "Merhaba de!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Birine selam deyin" @@ -10535,7 +10535,7 @@ msgstr "Tara" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Karekod tara" @@ -10543,15 +10543,15 @@ msgstr "Karekod tara" msgid "Science" msgstr "Bilim" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Sola kaydır" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Sağa kaydır" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Yanıtlanan mesaja kaydır" @@ -10564,8 +10564,8 @@ msgstr "Başa kaydır" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Ara" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0} gönderilerini ara" @@ -10612,11 +10612,11 @@ msgstr "{q} ara" msgid "Search for feeds that you want to suggest to others." msgstr "Başkalarına önermek istediğiniz akışları aratın." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Daha fazla hesap arayın" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Daha fazla akış arayın" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF aratın" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Arama şu anda giriş yapmamış kullanıcıların erişimine kapalıdır" @@ -10709,6 +10709,7 @@ msgstr "Bluesky'daki iş fırsatlarını görün" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "Daha fazlasını gör" @@ -10716,8 +10717,12 @@ msgstr "Daha fazlasını gör" msgid "See more suggested profiles" msgstr "Daha çok önerilen profil göster" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "Daha fazla gündem başlığı gör" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Önerilen hesapları gör" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Gezinme kaydırıcısı. Yön tuşlarını kullanarak ileri veya geri gezinin, ve boşluk tuşuyla oynatın/duraklatın" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "\"{interestsDisplayName}\" kategorisini seç" @@ -10748,7 +10753,7 @@ msgstr "{0} kullanıcı adını seç" msgid "Select {langName}" msgstr "{langName} dilini seç" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Renk seç" @@ -10764,11 +10769,11 @@ msgstr "Hesap seç" msgid "Select an app language" msgstr "Bir uygulama dili seçin" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Bir avatar seç" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Emoji seç" @@ -10780,12 +10785,13 @@ msgstr "Bir seçenek seçin" msgid "Select app language" msgstr "Uygulama dili seçin" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Altyazı dosyası seç (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "\"{name}\" sohbetini seç" @@ -10826,7 +10832,7 @@ msgstr "GIF Seç" msgid "Select GIF \"{0}\"" msgstr "GIF Seç \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Grup sohbeti üyelerini seçin" @@ -10864,7 +10870,7 @@ msgstr "Öncelikli dili seçin" msgid "Select telephone code" msgstr "Telefon kodunu seç" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} emojisini avatar olarak seç" @@ -10945,7 +10951,8 @@ msgstr "Mesaj gönder" msgid "Send post to {name}" msgstr "Gönderiyi {name} kullanıcısına gönder" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Şuraya gönder..." @@ -10963,12 +10970,12 @@ msgstr "Mesajı telefonunuzdan yollayın" msgid "Send verification email" msgstr "Doğrulama e-postası gönder" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Doğrudan mesaj yoluyla gönder" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Sohbet ile gönder" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Yer sağlayıcınızı kendiniz ayarlayın" msgid "Sets email for password reset" msgstr "Şifre sıfırlama için e-posta ayarlar" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ayarlar" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Başkalarının etkinliklerine dair ayarlar" @@ -11036,49 +11043,49 @@ msgstr "Başkalarının etkinliklerine dair ayarlar" msgid "Settings for allowing others to be notified of your posts" msgstr "Gönderilerinizden başkalarının bildirim almasına izin verme ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Beğeni bildirimi ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Bahsetme bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Yeni takipçi bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Geri kalan bildirimlerin ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Yeniden gönderilerinizin beğenilme bildirimleri ayarları" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Yeni mesaj istekleri için bildirim ayarları" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Yeni mesajlar için bildirim ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Yeniden gönderilerinizin yeniden gönderim bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Alıntı bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Yanıt bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Yeniden gönderim bildirimleri ayarları" @@ -11115,8 +11122,8 @@ msgstr "Yaş aralığını paylaş" msgid "Share anyway" msgstr "Yine de paylaş" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Yazar DID'ini paylaş" @@ -11127,7 +11134,7 @@ msgstr "Yazar DID'ini paylaş" msgid "Share feedback" msgstr "Geribildirim paylaş" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Bağlantı paylaşma diyalogu" msgid "Share my profile" msgstr "Profilimi paylaş" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Gönderinin at:// URI'sini paylaş" @@ -11169,12 +11176,12 @@ msgstr "Profili Paylaş" msgid "Share QR code" msgstr "QR kod paylaş" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Bu akışı paylaş" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Bu aramayı paylaş" @@ -11186,8 +11193,8 @@ msgstr "Bu başlangıç paketini paylaş" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Bu başlangıç paketini paylaş ve insanların Bluesky'deki topluluğunuza katılmasına yardımcı ol." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Arkadaşlarınızı bulmak için bağlantılarınızı paylaşın" msgid "Share your thoughts…" msgstr "Düşüncelerinizi paylaşın…" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Paylaşılan Tercihler Test Edicisi" @@ -11219,7 +11226,7 @@ msgstr "Yaş aralığınızı paylaşmak yalnızca Apple Hesabınızla ilişkile msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Yaş aralığınızı paylaşmak, yalnızca Google Hesabınızla ilişkili aralığı gösterir – örneğin, en az 18 yaşında olduğunuzu. <0>Tam yaşınız ve doğum tarihiniz asla paylaşılmaz, ve bu veriler bu cihazdan asla ayrılmaz. Bu nedenle, yalnızca bu cihazda erişim sağlar. Alternatif olarak, doğrulamanızı tamamlamak ve tüm platformlarda erişimi etkinleştirmek için <1>güvenilir ortağımız KWS'yi kullanabilirsiniz." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Göster" msgid "Show alt text" msgstr "Alt metni göster" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Yine de göster" @@ -11274,9 +11281,9 @@ msgstr "Yine de listeyi göster" msgid "Show lists of users to select from" msgstr "Kullanıcıların seçileceği listeleri göster" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Daha Fazla Göster" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Daha fazla göster" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Uyarı göster ve akışlardan filtrele" msgid "Show when you’re live" msgstr "Canlı yayına çıktığınızı gösterin" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Bu gönderinin ne zaman oluşturulduğuna dair bilgileri gösterir" @@ -11341,15 +11348,15 @@ msgstr "Bu gönderinin ne zaman oluşturulduğuna dair bilgileri gösterir" msgid "Shows other accounts you can switch to" msgstr "Geçiş yapabileceğiniz diğer hesapları gösterir" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "İçeriği gösterir" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "İçeriği gösterir" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Çıkış yap?" msgid "Sign up" msgstr "Kaydol" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Giriş Yapılması Gerekiyor" @@ -11469,7 +11476,7 @@ msgstr "Atla" msgid "Skip contact sharing and continue to the app" msgstr "Bağlantıları paylaşmayı atla ve uygulamaya devam et" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Boş gönderiler atlansın mı?" @@ -11487,7 +11494,7 @@ msgstr "Sonraki adıma atla" msgid "slide" msgstr "slayt" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Daha küçük" @@ -11499,14 +11506,14 @@ msgstr "Hatırlatmayı erteler" msgid "So many thoughts, you should post one" msgstr "Ne kadar çok düşünce, birini gönderseniz mi acaba" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "Sizin yönettiğiniz sosyal medya." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Gönderilerde sosyal açıklayıcılar" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Biri gruptan çıktı" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Birisi {0} tepkisi verdi" @@ -11554,7 +11561,7 @@ msgstr "Birisi {0} tepkisi verdi" msgid "Someone reacted {0} to {target}" msgstr "Biri {target} için {0} tepkisi verdi" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Birisi yanıtladı" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Bir şeyler ters gitti, lütfen tekrar deneyin" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Bir şeyler ters gitti. Lütfen biraz sonra tekrar deneyin." msgid "Something went wrong. Please try again." msgstr "Bir şeyler ters gitti. Lütfen tekrar deneyin." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Bir sorun mu var? Bize bildirin." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam veya başka bir samimiyetsiz davranış veya kandırma" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Spor" @@ -11668,7 +11675,7 @@ msgstr "Bir yazışma başlatırsanız burada görünecektir." msgid "Start a group chat" msgstr "Bir grup sohbeti başlat" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Yeni bir sohbet başlat" @@ -11682,17 +11689,17 @@ msgstr "Kişileri eklemeye başla" msgid "Start adding people!" msgstr "Kişileri eklemeye başla!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Sohbete başla" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "{displayName} ile sohbet başlat" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Başlangıç Paketi" @@ -11715,12 +11722,16 @@ msgstr "Sizin oluşturduğunuz başlangıç paketi" msgid "Starter pack is invalid" msgstr "Başlangıç paketi geçersiz" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Başlangıç paketleri" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Başlangıç Paketleri" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Başlangıç paketleri favori kişilerinizi ve akışlarınızı arkadaşlarınızla kolaylıkla paylaşmanızı sağlar." @@ -11728,7 +11739,7 @@ msgstr "Başlangıç paketleri favori kişilerinizi ve akışlarınızı arkada msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Başlangıç paketleri favori akışlarınızı ve kişilerinizi arkadaşlarınızla paylaşabilmenizi sağlar." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Başlangıç Paketleri favori akışlarınızı ve kişilerinizi arkadaşlarınızla paylaşabilmenizi sağlar." @@ -11742,7 +11753,7 @@ msgstr "Durum Sayfası" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Adım {0} / {1}" @@ -11754,7 +11765,7 @@ msgstr "Depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor. msgid "Stored as part of a secure code for matching with others" msgstr "Başkalarıyla eşleşme amaçlı güvenli bir kodun parçası olarak depolanır" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "{0} kaynağının {publicationTitle} yayınına abone ol" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Bu etiketleri kullanmak için @{0} hesabına abone olun:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Başarıyla doğrulandı" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Önerilen" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Önerilen hesaplar" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Gün batımı" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Bu özellik ülkenizde henüz etkin değil! Lütfen daha sonra tekrar kontrol edin." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Askıya alınmış hesaplar grup sohbetlerine katılamaz." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Askıya alınmış hesaplar bu sohbete katılamaz." @@ -11921,8 +11934,8 @@ msgstr "{0} hesabına geç" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistem" @@ -11945,7 +11958,7 @@ msgstr "Konuşmaları özele alın." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Bluesky'ın GPS konumunuza erişmesine izin vermek için aşağıya dokunun. Sonrasında bu veriyi bölgenizde erişilebilir içerik ve özelliklerin daha isabetli belirlenebilmesi için kullanacağız." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Ayrıntılar için dokunun" @@ -11976,7 +11989,7 @@ msgstr "Bağlam menüsünü kapatmak için dokunun" msgid "Tap to copy this invite link" msgstr "Bu davetiye bağlantısını kopyalamak için dokunun" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Gizlemek için dokunun" @@ -12003,7 +12016,7 @@ msgstr "{0} tepkinizi geri almak için dokunun" msgid "Tap to request access to join this group chat" msgstr "Bu grup sohbetine katılmak için erişim talep etmek üzere dokunun" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Yeniden denemek için dokunun" @@ -12016,7 +12029,7 @@ msgstr "{0} tepkilerini görmek için dokunun" msgid "Tap to show all reactions" msgstr "Tüm tepkileri göstermek için dokunun" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tepkileri görmek için dokunun" @@ -12032,7 +12045,7 @@ msgstr "Görev tamam - 10 takip!" msgid "Task complete - 10 likes!" msgstr "Görev tamamlandı - 10 beğeni!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Algoritmamıza nelerden hoşlandığınızı öğretin" @@ -12060,7 +12073,7 @@ msgstr "Şartlar" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Bu başlangıç paketi bulunamadı." msgid "That username is already taken" msgstr "Bu kullanıcı adı zaten alınmış" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Hepsi bu kadar!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Hepsi bu kadar!" @@ -12216,7 +12229,7 @@ msgstr "Sunucu bazı sıkıntılar yaşıyor. Lütfen biraz sonra tekrar deneyin msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Görmek istediğiniz başlangıç paketi geçersiz. Bu başlangıç paketini silmeyi tercih edebilirsiniz." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Bağlam menüsünün konusu" @@ -12238,7 +12251,7 @@ msgstr "Verdiğiniz onay kodu geçersiz. Lütfen doğru onay bağlantısını ku msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Doğrulama sağlayıcısı telefon numaranıza kodu yollayamadı. Lütfen telefon numaranızı kontrol edip tekrar deneyin." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "GIFler yüklenemedi. Bağlantınızı kontrol edin ve tekrar deneyin." msgid "There was a problem with your internet connection, please try again" msgstr "İnternet bağlantınızla ilgili bir problem oldu, lütfen tekrar deneyin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "İnternet bağlantınızla ilgili bir problem oldu, lütfen tekrar deney msgid "There was an issue contacting the server" msgstr "Sunucuya ulaşma konusunda bir sorun oluştu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Sunucuya bağlanırken bir sorun oldu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." @@ -12283,8 +12296,8 @@ msgstr "Sunucuya bağlanırken bir sorun oldu, lütfen internet bağlantınızı msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bildirimleri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Gönderileri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." @@ -12309,7 +12322,7 @@ msgstr "Servis bilginizi getirirken bir sorun oldu" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Bu akışı kaldırırken bir sorun oldu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Bu ayarlar yalnızca takip akışına (\"Following\") uygulanır." msgid "These URLs" msgstr "Bu URL'ler" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Bu sohbetin sahibi onlar" @@ -12392,7 +12405,7 @@ msgstr "Bu sohbetin sahibi onlar" msgid "They won’t be able to rejoin unless you invite them again." msgstr "Onları tekrar davet etmediğiniz sürece yeniden katılamayacaklar." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Bu {screenDescription} işaretlendi:" @@ -12408,7 +12421,7 @@ msgstr "Bu hesap zaten sahibi tarafından otomasyonlu olarak işaretlenmiş." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Bu hesap bir ya da birden fazla doğrulanma girişimine sahip ama henüz doğrulanmış değil." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Bu hesap, kullanıcıların profilini görüntülemek için giriş yapmalarını istedi." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Bu akış boş! Daha fazla kullanıcı takip etmeniz veya dil ayarlarınızı ayarlamanız gerekebilir." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Bu akış boş." @@ -12554,7 +12567,7 @@ msgstr "Bu grup, sahibine uygulanan bir moderasyon işlemi nedeniyle kilitlenmi msgid "This handle is reserved. Please try a different one." msgstr "Bu kullanıcı adı kullanılamaz. Lütfen başka bir tane deneyin." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Bu görsel kullanılamaz. Farklı bir format deneyin, .jpg ya da .png gibi." @@ -12596,7 +12609,7 @@ msgstr "Bu işaret sizin tarafınızdan uygulandı." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Bu işaret tüm hesaba uygulandığından tüm gönderilerde görünecektir." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Bu işaretleyici hangi işaretleri yayınladığını şimdilik bildirmedi ve etkin olmayabilir." @@ -12621,13 +12634,13 @@ msgstr "Bu liste boş." msgid "This message is hidden" msgstr "Bu mesaj gizli" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Bu mesaj gizli çünkü bu kullanıcı sizi engelliyor." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Bu mesaj gizli çünkü bu kullanıcıyı engelliyorsunuz." @@ -12641,7 +12654,7 @@ msgstr "Bu kişi sizi engelliyor" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Bu gönderi <0>{0} tarihinde oluşturulduğunu beyan ediyor, ancak Bluesky'da ilk olarak <1>{1} tarihinde görüldü." @@ -12649,7 +12662,7 @@ msgstr "Bu gönderi <0>{0} tarihinde oluşturulduğunu beyan ediyor, ancak B msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Bu gönderide bilinmeyen bir threadgate türü var. Uygulamanız güncel olmayabilir." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Bu gönderi yalnızca giriş yapmış kullanıcılara görünür." @@ -12661,7 +12674,7 @@ msgstr "Bu gönderi yazarı tarafından silinmiş" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bu gönderi akışlarınızdan ve konularınızdan gizlenecektir. Bu işlem geri alınamaz." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Bu gönderinin yazarı alıntılanmasını engellemiş." @@ -12698,11 +12711,12 @@ msgstr "Bu sadece birkaç dakika alacaktır." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Bir görünür adı olmadığından bu kullanıcı doğrulanamaz." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Bu kullanıcının hiç takipçisi yok." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Bu kullanıcı sizi engellediğinden kendisiyle mesajlaşılamaz." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Bu kullanıcı sizi engelledi. İçeriklerini göremezsiniz." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Bu kullanıcı sohbeti devre dışı bıraktığından kendisiyle mesajlaşılamaz." @@ -12733,11 +12748,11 @@ msgstr "Bu kullanıcı sessize aldığınız <0>{0} listesinde yer alıyor." msgid "This user is new here. Press for more info about when they joined." msgstr "Bu kullanıcı burada yeni. Ne zaman katıldığına dair daha çok bilgi için basın." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Bu kullanıcı kimseyi takip etmiyor." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Bu video cihazınızda oynatılamıyor. Tarayıcınız ya da sisteminiz gerekli video kodlayıcılarını (H.264/AAC) barındırmıyor olabilir." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Bu, geri dönülemez şekilde <0>{currentHandle} Bluesky hesabınızı ve onla ilişkilendirilen tüm verileri silecektir. Bunun bu hesapla kullandığınız diğer <1>AT Protokolü servislerini de etkileyeceğini dikkate alınız." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Bu @{0} kullanıcısını çabuk erişim listesinden kaldıracak." @@ -12786,7 +12801,7 @@ msgstr "Konu Tercihleri" msgid "Threaded" msgstr "Dallanmalı" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Konu Tercihleri" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Çok sayıda bağlantı - arkadaşlarınızı bulmak için bağlantılarınızdan yükleyebileceğiniz kişi sayısını aştınız" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "En öne çıkan" @@ -12858,7 +12873,7 @@ msgstr "En öne çıkan" msgid "Top replies first" msgstr "Önce en öne çıkan yanıtlar" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Konu başlığı" @@ -12893,7 +12908,9 @@ msgstr "Cihazınızda aynı dile çeviri imkanı mevcut değil." msgid "Tree view" msgstr "Ağaç görünümü" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Gündem" @@ -12902,7 +12919,7 @@ msgstr "Gündem" msgid "Trending GIFs" msgstr "Gündem GIFler" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Gündem seçenekleri" @@ -12918,11 +12935,11 @@ msgstr "Trolleme" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Güven ilişkilerden, topluluklardan ve paylaşılan bağlamdan gelir. Dolayısıyla <0>güvenilir doğrulayıcıları yani direkt doğrulama yapabilen kurumları devreye alıyoruz." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Farklı bir arama terimi deneyin veya bazı filtreleri kaldırın." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Farklı bir arama terimi deneyin." @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "Katılım talepleri çekilemedi." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Seçilmiş alıcılardan biri bulunamadı." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Seçilmiş alıcı bulunamadı." @@ -13024,12 +13043,12 @@ msgstr "Erişilmez" msgid "Unavailable feed information" msgstr "Erişilemeyen akış bilgisi" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Hesabı Engelle?" msgid "Unblock list" msgstr "Listeden engeli kaldır" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "{0} adresini takibi bırak" msgid "Unfollow account" msgstr "Hesabı takibi bırak" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Kullanıcıyı takipten çıkarır" @@ -13132,7 +13151,7 @@ msgstr "Etiketlenmemiş yetişkin içerik" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Etiketlenmemiş, istismarcı veya rızasız yetişkin içerik" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Beğenmeyi geri al" @@ -13192,7 +13211,7 @@ msgstr "Bu grup sohbetini sessizden çıkar" msgid "Unmute thread" msgstr "Konuyu sessizden çıkar" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Videonun sesini aç" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Sabitlemeyi kaldır" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Akışı sabitlemeyi kaldır" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Ana sayfadan sabitlemeyi kaldır" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Moderasyon listesini sabitlemeyi kaldır" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} akışının ana sayfadan sabitlemesi kaldırıldı" @@ -13258,11 +13277,11 @@ msgstr "Bu işaretleyicinin aboneliğinden ayrıl" msgid "Unsubscribed from list" msgstr "Liste aboneliğinden çıktınız" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Desteklenmeyen pano içeriği" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Desteklenmeyen video türü: {mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Yanıt görünürlüğünü güncelleme başarısız oldu" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Bunun yerine bir görsel ekle" @@ -13355,7 +13374,7 @@ msgstr "Dosyalardan Yükle" msgid "Upload from Library" msgstr "Kütüphaneden Yükle" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIF yükleniyor..." @@ -13369,7 +13388,7 @@ msgstr "Görseller yükleniyor..." msgid "Uploading link thumbnail..." msgstr "Web bağlantısının görseli gönderiliyor..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Video yükleniyor..." @@ -13408,7 +13427,7 @@ msgstr "Bunu, kullanıcı adınızla birlikte diğer uygulamada giriş yapmak i msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "KWS veya Bluesky'ın size ulaşma ihtimaline karşın hesabınızın e-posta adresini ya da sizin kontrolünüzde olan başka bir gerçek e-posta adresi kullanın." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "kullanıcı" @@ -13510,7 +13529,7 @@ msgstr "Doğrulama başarısız, lütfen tekrar deneyin." msgid "Verification settings" msgstr "Doğrulama ayarları" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Doğrulama Ayarları" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video işlenemedi" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Video Akışı" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "{0} videosu: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "{0} videosu. Videoyu oynatmak ya da durdurmak için basın" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Video Oyunları" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video duraklatıldı" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video oynatılıyor" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video bulunamadı." @@ -13653,7 +13672,7 @@ msgstr "Video bulunamadı." msgid "Video settings" msgstr "Video ayarları" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video yüklendi" @@ -13662,17 +13681,17 @@ msgstr "Video yüklendi" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videolar" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videolar 3 dakikadan kısa olmalıdır." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Göz at" @@ -13691,9 +13710,9 @@ msgstr "{0}'ın avatarını görüntüle" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0} kullanıcısının profilini görüntüle" @@ -13724,13 +13743,13 @@ msgstr "Daha fazla detay için blog yazısını gör" msgid "View debug entry" msgstr "Hata ayıklama girişini görüntüle" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ayrıntıları görüntüle" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Tam konuyu görüntüle" @@ -13761,7 +13780,7 @@ msgstr "Daha fazlasını görüntüle" msgid "View more trending videos" msgstr "Daha çok gündem olan video göster" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Gönderiyi göster" @@ -13798,11 +13817,11 @@ msgstr "Bu grup sohbeti için davetiye bağlantısını görüntüle" msgid "View the labeling service provided by @{0}" msgstr "@{0} tarafından sağlanan işaretleme hizmetini gör" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Bu kullanıcının doğrulamalarını görüntüle" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Bu akışı beğenen kullanıcıları görün" @@ -13831,7 +13850,7 @@ msgstr "Moderasyon listelerini görün" msgid "View your muted accounts" msgstr "Sessize aldığınız hesapları görün" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Doğrulamalarınızı görüntüleyin" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Ağ sorunları yaşıyoruz, tekrar deneyin" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "Ağ sorunları yaşıyoruz, tekrar deneyin" @@ -14043,7 +14062,7 @@ msgstr "Ağ sorunları yaşıyoruz, tekrar deneyin" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Bluesky'da yeni bir doğrulama katmanı sunuyoruz - kolay görülebilen bir onay işareti." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "Sizi aramızda görmekten dolayı çok heyecanlıyız!" @@ -14064,13 +14083,15 @@ msgstr "Üzgünüz, ancak bu listeyi çözemedik. Bu durum devam ederse, lütfen msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Üzgünüz, ancak sessize alınmış kelimelerinizi şu anda yükleyemedik. Lütfen tekrar deneyin." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "Üzgünüz ancak aramanız tamamlanamadı." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Maalesef arama işleminiz tamamlanamadı. Lütfen birkaç dakika içinde tekrar deneyin." @@ -14078,7 +14099,7 @@ msgstr "Maalesef arama işleminiz tamamlanamadı. Lütfen birkaç dakika içinde msgid "We're sorry, you cannot access this screen at this time." msgstr "Üzgünüz, şu anda bu ekrana erişemezsiniz." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Üzgünüz! Yanıtladığınız gönderi silindi." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "naber" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Nasılsınız?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Kim doğrulayabilir?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ay ay!" @@ -14220,21 +14241,21 @@ msgstr "Bu kullanıcıyı engellemek ve/veya bu yazışmadan ayrılmak istiyor m msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Taslaklarınıza göz atmadan önce bunu taslak olarak kaydetmek ister misiniz?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Bunu sonradan düzenlemek için taslak olarak kaydetmek ister misiniz?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Bir gönderi yaz" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Gönderi yaz" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Yanıtınızı yazın" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Bluesky'a yasal olarak sizin yaşınızı uygulamaya erişmeden önce onaylamamızı gerektiren bir bölgeden ulaşıyorsunuz." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0} kişisini engelliyorsunuz" @@ -14342,7 +14363,7 @@ msgstr "Artık canlı yayında değilsiniz" msgid "You are not allowed to upload videos." msgstr "Video yükleme izniniz yok." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Henüz kimseyi takip etmiyorsunuz" @@ -14362,7 +14383,7 @@ msgstr "Doğrulanmışsınız. Görünen adınızı değiştirirseniz doğrulama msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Doğrulanmışsınız. Kullanıcı adınızı değiştirirseniz doğrulama durumunuzu kaybedeceksiniz.<0>Daha fazla bilgi edinin." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "İlgi alanlarınızı istediğiniz zaman \"İçerik ve medya\" ayarlarından değiştirebilirsiniz." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Artık yeni şifrenizle giriş yapabilirsiniz." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Gönderi başına en fazla {MAX_GALLERY_IMAGES, plural, other {# görsel}} ekleyebilirsiniz" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Yalnızca 1000 karaktere kadar taslak kaydedebilirsiniz." @@ -14439,9 +14460,9 @@ msgstr "Sohbet geçmişini okuyabilirsiniz ancak yeni mesaj gönderemezsiniz." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Toplamda en fazla {MAX_GALLERY_IMAGES, plural, other {# görsel}} seçebilirsiniz." -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Bunu daha sonra ayarlarınızdan güncelleyebilirsiniz." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "{EMOJI_REACTION_LIMIT, plural, other {# emoji tepkisinden}} fazla tepki veremezsiniz" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Henüz bir grup sohbeti oluşturamazsınız." @@ -14555,7 +14577,7 @@ msgstr "E-posta adresinizi başarıyla doğruladınız. Bu diyaloğu kapatabilir msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Video yükleme sınırına geçici olarak ulaştınız. Lütfen daha sonra tekrar deneyin." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Bu taslakta kaydedilmemiş değişiklikleriniz var, onları kaydetmek ister misiniz?" @@ -14563,7 +14585,7 @@ msgstr "Bu taslakta kaydedilmemiş değişiklikleriniz var, onları kaydetmek is msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Kaydedilmemiş değişiklikleriniz var. Taslaklarınıza göz atmadan önce onları kaydetmek ister misiniz?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Henüz bir başlangıç ​​paketi oluşturmadınız!" @@ -14614,7 +14636,7 @@ msgstr "En fazla {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} msgid "You may only add up to 3 feeds" msgstr "En fazla 3 akış ekleyebilirsiniz" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Bir üye çıkarmak için sohbet sahibi olmanız gerekmektedir." @@ -14622,7 +14644,7 @@ msgstr "Bir üye çıkarmak için sohbet sahibi olmanız gerekmektedir." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Bluesky'ı kullanmak için en az 13 yaşında olmanız gerekmektedir. Daha fazla ilgi için <0>Hizmet Şartları'nı okuyun." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Başlangıç ​​paketi oluşturmak için en az yedi kişiyi takip etmeniz gerekir." @@ -14639,7 +14661,7 @@ msgstr "Medya galerinize erişim izni vermeniz gerekmektedir." msgid "You need to verify your email address before you can enable email 2FA." msgstr "E-posta iki adımlı doğrulamasını etkinleştirebilmeniz için öncelikle e-posta adresinizi doğrulamanız gerekmektedir." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Bu sohbetin sahibisiniz" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Şimdi uygulamayı yeniden başlatmak isteyebilirsiniz." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "{0} tepkisi verdiniz" @@ -14667,15 +14689,15 @@ msgstr "{target} için {0} tepkisi verdiniz" msgid "You recently changed your birthdate" msgstr "Doğum tarihinizi yakın zamanda değiştirdiniz" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Yanıtladınız" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "{originalName} kullanıcısına yanıt verdiniz" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Kendinize yanıt verdiniz" @@ -14715,11 +14737,11 @@ msgstr "Davet edilmedikçe tekrar katılamayacaksınız." msgid "You: {message}" msgstr "Siz: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Hesabınızı oluşturmayı tamamladığınızda önerilen kullanıcıları ve akışları takip edeceksiniz!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Hesabınızı oluşturmayı tamamladığınızda önerilen kullanıcıları takip edeceksiniz!" @@ -14791,7 +14813,7 @@ msgstr "Aktif içeriğin sonuna ulaştınız." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Akışınızın sonuna ulaştınız! Takip edebileceğiniz daha fazla hesap bulun." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "En fazla taslak sayısına ulaştınız" @@ -14799,7 +14821,7 @@ msgstr "En fazla taslak sayısına ulaştınız" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "İzin verilen en fazla istek sayısına ulaştınız. Lütfen daha sonra tekrar deneyin." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Maksimum {MAX_FILTERS, plural, other {# filtre}} sayısına ulaştınız. Yeni filtreler oluşturmak yerine mevcut bir filtreye daha fazla değer ekleyin." @@ -14815,11 +14837,11 @@ msgstr "Günlük video yükleme limitinize ulaştınız (çok fazla bayt)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Günlük video yükleme limitinize ulaştınız (çok sayıda video)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "İzleyebileceğiniz video kalmadı. Belki de bir mola vermenin zamanı gelmiştir?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Hesabınız" @@ -14835,11 +14857,11 @@ msgstr "Hesabınız askıya alındı" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Hesabınız video yüklemek için yeterince eski değil. Lütfen daha sonra tekrar deneyin." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Hesabınız çok yeni" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Yeni bir grup sohbeti oluşturmak için hesabınızın en az 7 günlük olması gerekmektedir." @@ -14930,8 +14952,8 @@ msgstr "Yer sağlayıcınız bir e-posta adresinden tespit edilemez, bu yüzden msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Yer sağlayıcınız girdiğiniz kullanıcı adından otomatik olarak algılanır." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "İlgi alanlarınız güncellendi!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "İlgi alanlarınız, neyi sevdiğinizi bulmamıza yardımcı oluyor!" @@ -14967,11 +14989,11 @@ msgstr "Şifreniz başarıyla değiştirildi! Lütfen bundan sonra Bluesky'a gir msgid "Your password must be at least 8 characters long." msgstr "Şifreniz en az 8 karakter uzunluğunda olmalıdır." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Gönderiniz yollandı" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Gönderileriniz yollandı" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "Tercih ettiğiniz dil" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Profil resminiz" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Başka kullanıcıların profil resimleri tarafından çerçevelenmiş profil resminiz" @@ -14992,7 +15014,7 @@ msgstr "Başka kullanıcıların profil resimleri tarafından çerçevelenmiş p msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Profiliniz, gönderileriniz, akışlarınız ve listeleriniz artık diğer Bluesky kullanıcıları tarafından görülemeyecek. Hesabınızı istediğiniz zaman oturum açarak yeniden etkinleştirebilirsiniz." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Yanıtınız yollandı" @@ -15005,7 +15027,7 @@ msgstr "Raporunuz <0>{0} işaretleyicisine gönderilecektir." msgid "Your selected interests help us serve you content you care about." msgstr "Seçtiğiniz ilgi alanları, önemsediğiniz içerikleri size sunmamıza yardımcı olur." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Konunuzdaki boş gönderiler atlanacak, geride kalan gönderiler ise bir konu olarak yayınlanacaktır." diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index 7c1c288170..1c0686fa2c 100644 --- a/src/locale/locales/uk/messages.po +++ b/src/locale/locales/uk/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: uk\n" +"Language: uk_UA\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(містить вбудований вміст)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# година} few {# години} many {# годин} other {# годин}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} підписок" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} неможливо написати" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {читаєте} few {читаєте} many { #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {цитата} few {цитати} many {цитати} other {цитата}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {репост} few {репости} many {репостів} other {репостів}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 днів" msgid "7 days" msgstr "7 днів" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Доступність" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Налаштування доступності" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Обліковий запис ігноровано списком" msgid "Account options" msgstr "Параметри облікового запису" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Обліковий запис вилучено зі швидкого доступу" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Додати альтернативний текст (за бажанн msgid "Add another account" msgstr "Додати інший обліковий запис" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Написати ще" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Додати цю стрічку до вашої стрічки" msgid "Add to lists" msgstr "Додати до списку" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Дорослий" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Надати доступ до особистих повідомлень msgid "Already have a code?" msgstr "Вже маєте код?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "Було надіслано лист на адресу {0}. Він мі msgid "An error has occurred" msgstr "Виникла помилка" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Виникла помилка" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Сталася помилка під час генерації вашої підбірки. Хочете спробувати ще раз?" @@ -1640,11 +1600,11 @@ msgstr "Сталася помилка під час генерації вашо msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Сталася помилка під час завантаження відео. Будь ласка, спробуйте пізніше." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Сталася помилка під час завантаження відео. Будь ласка, спробуйте ще." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Проблема не включена до цих варіантів" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Сталася помилка при спробі відкрити чат" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Назва повинна бути не менше 4 символів у msgid "App passwords" msgstr "Паролі застосунку" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Паролі для застосунків" @@ -1891,8 +1849,8 @@ msgstr "Оскаржити це рішення" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Архівовано {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Архівований пост" @@ -1980,7 +1938,7 @@ msgstr "Ви впевнені, що бажаєте вилучити це зі с msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Ви справді хочете не публікувати пост?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Автовідтворення відео та GIF" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Перед створенням початкового набору ви спочатку маєте підтвердити адресу електронної пошти." @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Дата народження" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Заблоковано" msgid "Blocked accounts" msgstr "Заблоковані облікові записи" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Заблоковані облікові записи" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Блокування не перешкоджає мітнику розміщувати мітки на ваш обліковий запис." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky не може підтвердити автентичність зазначеної дати." @@ -2330,7 +2299,7 @@ msgstr "Bluesky — відкрита мережа, в якій ви можете msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky найкращий з друзями!" @@ -2358,7 +2327,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky обере набір рекомендованих облікових записів користувачів у вашій мережі." @@ -2425,24 +2394,25 @@ msgstr "Переглянути більше запропонованого на msgid "Browse other feeds" msgstr "Переглянути інші стрічки" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Від {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2474,11 @@ msgstr "Зі створенням облікового запису ви пог msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Зі створенням облікового запису ви погоджуєтеся з <0>Умовами надання послуг." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Камера" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Скасувати пошук" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Чат стишено" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Налаштування чату" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Сповіщення чату увімкнено" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2808,7 @@ msgstr "Змінити метод підтвердження домену" msgid "Choose Feeds" msgstr "Обрати стрічки" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Обрати для мене" @@ -2854,7 +2825,7 @@ msgstr "Обрати людей" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Обрати цей колір для свого аватару" @@ -2879,7 +2850,7 @@ msgstr "" msgid "Choose your password" msgstr "Вкажіть пароль" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Ваш псевдонім" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Торкніться, щоб спробувати надіслати повідомлення знов" @@ -3003,7 +2974,7 @@ msgstr "Торкніться, щоб спробувати надіслати п #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Торкніться, щоб спробувати надіслати п msgid "Close" msgstr "Закрити" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Закрити діалогове вікно" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Закрити діалогове вікно" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Закриває сповіщення про оновлення пароля" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Колірний режим" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Комікси" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Правила спільноти" @@ -3141,7 +3112,7 @@ msgstr "Правила спільноти" msgid "Complete onboarding and start using your account" msgstr "Завершити ознайомлення та розпочати користуватися обліковим записом" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Завершити завдання" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Новий пост" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3131,11 @@ msgstr "" msgid "Compose reply" msgstr "Відповісти" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Стискання відео..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Служба підтримки" @@ -3253,7 +3224,7 @@ msgstr "" msgid "Content and media" msgstr "Вміст та медіа" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Вміст та медіа" @@ -3265,10 +3236,6 @@ msgstr "Вміст заблоковано" msgid "Content filters" msgstr "Фільтри контенту" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Попередження про вміст" msgid "Content warnings" msgstr "Попередження про вміст" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Тло контекстного меню натисніть, щоб закрити меню." @@ -3302,7 +3269,7 @@ msgstr "Тло контекстного меню натисніть, щоб за #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Продовжити гілку..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Скопійовано версію збірки до буфера обміну" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Копіювати пароль застосунку" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3416,10 @@ msgstr "Копіювати посилання" msgid "Copy link to list" msgstr "Копіювати посилання на список" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Копіювати посилання на пост" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "Копіювати текст повідомлення" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3457,7 @@ msgstr "Копіювати значення запису TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Політика захисту авторського права" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Не вдалось залишити чат" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Не вдалося завантажити стрічку" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Не вдалось стишити чат" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Створити" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Створити QR-код для підбірки" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Створити власну підбірку" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Створення власної підбірки для мене" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Реєстрація" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Створити обліковий запис" @@ -3666,15 +3633,15 @@ msgstr "Створити обліковий запис" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Натомість створити аватар" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Створити інший" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Культура" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Темна" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Темна" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Темна тема" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Типово" @@ -3894,7 +3861,7 @@ msgstr "Видалити мій обліковий запис" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Видалити пост" @@ -3988,7 +3955,7 @@ msgstr "Діалог: налаштувати, хто може взаємодія msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Тьмяна" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Вимкнено" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Видалити" msgid "Discard changes?" msgstr "Відхилити зміни?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Відхилити чернетку?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Не зберігати пост?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Попросити застосунки не показувати мій обліковий запис без входу" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Попросити застосунки не показувати мій msgid "Discover new custom feeds" msgstr "Відкрити для себе нові стрічки" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Відкрити для себе нові стрічки" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Відхилити" @@ -4103,19 +4070,19 @@ msgstr "Відхилити" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Пропустити помилку" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Пропустити посібник нового користувача" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Показувати більші мітки альтернативно msgid "Display name" msgstr "Ім'я" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Готово" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Торкніться двічі для закриття діалогу" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Редагувати зображення" msgid "Edit interaction settings" msgstr "Редагувати налаштування взаємодії" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Редагувати мої стрічки" @@ -4406,6 +4374,11 @@ msgstr "Редагувати мої стрічки" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Редагувати користувачів" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Редагувати, хто може відповідати" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Редагувати вашу власну підбірку" @@ -4500,8 +4473,8 @@ msgstr "Вбудований HTML код" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Вбудований пост" @@ -4509,7 +4482,7 @@ msgstr "Вбудований пост" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Вставте цей пост у Ваш сайт. Просто скопіюйте цей скрипт і вставте його в HTML код вашого сайту." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Вбудований відеоплеєр" @@ -4533,7 +4506,7 @@ msgstr "Дозволити вміст для дорослих" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Увімкнути зовнішні медіа" msgid "Enable media players for" msgstr "Увімкнути медіапрогравачі для" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "" msgid "Enabled" msgstr "Увімкнено" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Кінець стрічки" @@ -4608,7 +4582,7 @@ msgstr "Введіть слово або мітку" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Повноекранний режим" @@ -4650,11 +4624,11 @@ msgstr "Введіть псевдонім та пароль" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Помилка" @@ -4684,7 +4658,7 @@ msgstr "Сталася помилка під час збереження" msgid "Error receiving captcha response." msgstr "Помилка отримання відповіді Captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4670,8 @@ msgstr "Всі можуть відповідати" msgid "Everybody can reply to this post." msgstr "Всі можуть відповідати на цей пост." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Будь-хто" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Будь-хто" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "Окрім користувачів, на яких ви підписан msgid "Excludes users you follow" msgstr "Окрім користувачів, на яких ви підписані" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Вийти з повноекранного режиму" @@ -4755,11 +4729,11 @@ msgstr "Розгорнути список користувачів" msgid "Expand or collapse the full post you are replying to" msgstr "Розгорнути або згорнути весь пост, на який ви відповідаєте" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4776,15 @@ msgstr "Відверто або потенційно проблемний вмі msgid "Explicit sexual images." msgstr "Відверті сексуальні зображення." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Налаштування зовнішніх медіа" @@ -4886,7 +4860,7 @@ msgstr "Не вдалось змінити псевдонім. Будь ласк #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Не вдалося завантажити параметри стрічок" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Не вдалося завантажити рекомендовані стрічки" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Не вдалося завантажити запропоновані для читання облікові записи" @@ -5027,12 +5002,12 @@ msgstr "Не вдалося завантажити запропоновані д msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Стрічка" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Стрічки оновлено!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,11 +5244,11 @@ msgstr "" msgid "File saved successfully!" msgstr "Файл успішно збережено!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Знайти облікові записи для підписки" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Підписатися на {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5424,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Читати 7 облікових записів" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Читачі @{0}, яких читаєте ви" @@ -5544,7 +5515,7 @@ msgstr "Читачі, яких читаєте ви" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Читають {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5549,21 @@ msgstr "" msgid "Following feed preferences" msgstr "Налаштування стрічки тих, кого ви читаєте" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Налаштування стрічки тих, кого ви читаєте" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Підписаний(-на) на вас" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Шрифт" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Розмір шрифту" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "З міркувань безпеки ви бачите цей пароль лише один раз. Якщо ви втратите цей пароль застосунку, вам потрібно буде згенерувати новий." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Для отримання найкращого користувацького досвіду рекомендується використовувати шрифт теми." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5599,7 @@ msgstr "" msgid "Forever" msgstr "Назавжди" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Забули пароль?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "Від <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Згенерувати особисту підбірку" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Допомога" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Створити обличчя для вашого облікового запису" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Хештег" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Виникли проблеми?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Довідка" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Дайте людям знати, що ви не бот, завантаживши зображення або створивши аватар." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6122,9 @@ msgstr "" msgid "Hidden list" msgstr "Прихований список" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Прихований список" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Приховати" @@ -6198,7 +6172,7 @@ msgstr "Приховати відповідь від усіх" msgid "Hide reply for me" msgstr "Приховати відповідь від мене" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,12 +6192,12 @@ msgstr "Приховати цю відповідь?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "" @@ -6240,7 +6214,7 @@ msgstr "Приховати список користувачів" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6267,8 @@ msgstr "Хм, ми не змогли завантажити цей сервіс msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Чекай-но! Ми поступово даємо доступ до відео, а ви поки що чекаєте в черзі. Спробуйте пізніше!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Якщо ви хочете змінити пароль, ми надішлемо вам код, щоб переконатися, що це ваш обліковий запис." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Зараз ви на самоті. Додайте користувачів до власної підбірки шукаючи їх вище." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Вакансія: {0}" @@ -6816,8 +6788,8 @@ msgstr "Приєднатися до розмови" msgid "Journalism" msgstr "Журналістика" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0} додав мітки." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Автор додав мітки." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Мітки" @@ -6852,7 +6824,7 @@ msgstr "Мітки додано" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Мітки є анотаціями на користувачів і вміст. Вони можуть використані для приховання, попередження та категоризації мережі." @@ -6864,7 +6836,7 @@ msgstr "Мітки на вашому обліковому записі" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Налаштування мови" @@ -6874,7 +6846,7 @@ msgstr "Налаштування мови" msgid "Languages" msgstr "Мови" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Більше" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Нещодавні" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Дізнатися більше" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Дізнатися більше про це попередження" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Дізнатися більше." @@ -6993,8 +6965,8 @@ msgstr "Вийти" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Залишити Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "ще залишилося." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Дозвольте обрати мені" @@ -7057,7 +7029,7 @@ msgstr "Злітаємо!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Світла" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Світла" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Вподобати" @@ -7076,7 +7048,7 @@ msgstr "Вподобати" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Вподобати 10 постів" @@ -7085,7 +7057,7 @@ msgstr "Вподобати 10 постів" msgid "Like 10 posts to train the Discover feed" msgstr "Вподобати 10 постів задля тренування Стрічки відкриття" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Вподобати цю стрічку" @@ -7093,8 +7065,8 @@ msgstr "Вподобати цю стрічку" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Вподобано" @@ -7111,27 +7083,45 @@ msgstr "Вподобано" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Уподобання" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Уподобання цього посту" @@ -7144,7 +7134,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Список" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Список більше не ігноровано" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Завантажити більше" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Завантажити більше запропонованих стрічок" @@ -7292,8 +7282,8 @@ msgstr "Завантажити більше запропонованих стр msgid "Load new notifications" msgstr "Завантажити нові сповіщення" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Звіт" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Згенерувати для мене" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Відмітити як прочитане" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Медіа" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Медіавміст, який може бути тривожним або недоречним для певних глядачів." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "згадані користувачі" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Згадування" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Повідомлення видалено" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Повідомлення" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Модерація" @@ -7636,7 +7630,7 @@ msgstr "Список модерації оновлено" msgid "Moderation lists" msgstr "Списки для модерації" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Списки для модерації" @@ -7645,7 +7639,7 @@ msgstr "Списки для модерації" msgid "moderation settings" msgstr "Налаштування модерації" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Статус модерації" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Ігноровані облікові записи" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Ігноровані облікові записи" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Неважливо, створіть для мене псевдонім" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Новий" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Новий чат" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Новий пароль" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Новий пост" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Спочатку найновіші" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Новини" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Наступне зображення" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Стрічок не знайдено. Спробуйте пошукати щось інше." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ще немає вподобань" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Ви більше не читаєте {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Ще немає повідомлень" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ще немає цитувань" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Результати відсутні" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Нічого не знайдено" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8229,23 @@ msgstr "Нічого не знайдено" msgid "No results found for \"{query}\"" msgstr "Нічого не знайдено за запитом «{query}»" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Ні, дякую" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Ніхто" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Поки що це нікому не сподобалося. Можливо, ви повинні бути першим!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ніхто ще це не цитував. Ймовірно, ви маєте бути першим!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Несексуальна оголеність" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Не знайдено" @@ -8333,7 +8330,7 @@ msgstr "Примітка щодо поширення" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Примітка: Bluesky є відкритою і публічною мережею. Цей параметр обмежує видимість вашого вмісту лише у застосунках і на сайті Bluesky, але інші застосунки можуть цього не дотримуватися. Ваш вміст все ще може бути показаний відвідувачам без облікового запису іншими застосунками і вебсайтами." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Налаштування сповіщень" @@ -8353,11 +8350,12 @@ msgstr "Налаштування сповіщень" msgid "Notification sounds" msgstr "Звуки сповіщень" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "О, ні!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Добре" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Скинути ознайомлення" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Одна або декілька GIF не мають описового тексту." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Для одного або кількох зображень відсутній опис." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Одне або більше відео не мають описового тексту." @@ -8471,7 +8471,7 @@ msgstr "Тільки {0} можуть відповідати." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Підтримуються лише файли WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ой!" @@ -8544,7 +8544,7 @@ msgstr "Ой!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Відкрити створювач аватарів" @@ -8570,21 +8570,22 @@ msgstr "Відкрити налаштування розмови" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Емоджі" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Відкрити меню налаштувань стрічки" @@ -8627,7 +8628,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "Відкрити налаштування ігнорування слів і міток" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8700,7 @@ msgstr "Відкриє додаткову інформацію про запис msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Відкриє камеру на пристрої" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Відкриє процес створення нового облікового запису Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Пароль змінено!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Пауза" @@ -8925,12 +8926,12 @@ msgstr "Пауза" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Призупинити відео" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Люди" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Люди, яких читає @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Люди, які читають @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Зображення, призначені для дорослих." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9035,7 @@ msgstr "" msgid "Pin to home" msgstr "Закріпити на головній" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Закріпити на головній" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Закріплені" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Прикріплено до ваших стрічок" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Відтворити" @@ -9076,8 +9077,8 @@ msgstr "Відтворити {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Відтворити відео" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Політика" @@ -9269,7 +9270,7 @@ msgstr "Політика" msgid "Porn" msgstr "Порнографія" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Запостити" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Запостити" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Опублікувати все" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Пост від @{0}" @@ -9340,7 +9341,7 @@ msgstr "Пост приховано вами" msgid "Post interaction settings" msgstr "Налаштування взаємодії з постом" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Пост закріплено" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Пост відкріплено" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Пости" @@ -9398,6 +9396,10 @@ msgstr "Пости можуть бути приглушені залежно в msgid "Posts hidden" msgstr "Пости приховано" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Конфіденційність" msgid "Privacy and security" msgstr "Конфіденційність та безпека" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Конфіденційність та безпека" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Політика конфіденційності" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Обробка відео..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Цитування постів вимкнено" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Цитування" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Цитування цього поста" @@ -9647,7 +9650,7 @@ msgstr "Повторна активація облікового запису" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "Читати Політику конфіденційності Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Читати Умови використання Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Повторне з'єднання" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Перезавантажити розмови" @@ -9766,7 +9765,7 @@ msgstr "Перезавантажити розмови" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Видалити" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Видалити обліковий запис" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Вилучити з моїх стрічок" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Прибрати зі швидкого доступу?" @@ -9862,7 +9861,7 @@ msgstr "Прибрати зі швидкого доступу?" msgid "Remove from saved feeds" msgstr "Прибрати зі збережених стрічок" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Видалити зображення" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Видалено зі списку" msgid "Removed from saved feeds" msgstr "Вилучено зі збережених стрічок" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Відповіді" @@ -10037,7 +10037,7 @@ msgstr "Відповіді в цьому пості вимкнено." msgid "Reply" msgstr "Відповісти" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Відповісти" @@ -10098,8 +10098,8 @@ msgstr "Поскаржитися на розмову" msgid "Report dialog" msgstr "Діалогове вікно для скарг" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Поскаржитись на стрічку" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Ви зробили репост" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Репости цього поста" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Повторити останню дію, яка спричинила п #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Повертає до головної сторінки" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Повертає до попередньої сторінки" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Зберегти зміни" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Зберегти QR-код" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Зберегти до моїх стрічок" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Збережені стрічки" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Збережено до ваших стрічок" @@ -10520,8 +10520,8 @@ msgstr "Збережено до ваших стрічок" msgid "Say hello!" msgstr "Привітайтесь!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Наука" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Прогорнути вгору" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Пошук" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Шукати стрічки, якими ви б хотіли поділитись з іншими." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Пошук GIF-файлів" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Переглянути вакансії у Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Повзунок пошуку. Використовуйте клавіші зі стрілками для пошуку вперед і назад та пробіл для відтворення або паузи" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Вибрати колір" @@ -10764,11 +10769,11 @@ msgstr "Вибрати обліковий запис" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Виберіть аватар" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Виберіть емодзі" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Вибрати GIF" msgid "Select GIF \"{0}\"" msgstr "Вибрати GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Обрати {emojiName} емодзі як ваш аватар" @@ -10945,7 +10951,8 @@ msgstr "Надіслати повідомлення" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Надіслати пост до..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Надіслати електронний лист підтвердження" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Надіслати в особисті повідомлення" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Встановлює ел. адресу для скидання пароля" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Налаштування" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Все одно поширити" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Поділитись посиланням на діалог" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Поширити QR-код" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Поділитись цією підбіркою" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Поділіться цією підбіркою та допоможіть людям долучитись до своєї спільности у Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Тестувальник спільних налаштувань" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Показати" msgid "Show alt text" msgstr "Показати альтернативний текст" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Показати все одно" @@ -11274,9 +11281,9 @@ msgstr "Все одно показати список" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Показати більше" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Показати попередження і фільтрувати зі msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Вийти?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Необхідно увійти для перегляду" @@ -11469,7 +11476,7 @@ msgstr "Пропустити" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Менше" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Щось пішло не так. Будь ласка, спробуйте ще раз" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Спорт" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Розпочати новий чат" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Розпочати чат з {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Набір початківця" @@ -11715,12 +11722,16 @@ msgstr "Початкові набори, створені вами" msgid "Starter pack is invalid" msgstr "Хибний набір початківця" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Набори початківця" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Власні підбірки дозволяють легко ділитись з друзями улюбленими стрічками та користувачами." @@ -11728,7 +11739,7 @@ msgstr "Власні підбірки дозволяють легко ділит msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Сторінка стану" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Крок {0} з {1}" @@ -11754,7 +11765,7 @@ msgstr "Сховище очищено, тепер вам треба переза msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Підписатися на @{0}, щоб використовувати ці мітки:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Системна" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Торкніться, щоб пропустити" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "Завдання виконано — 10 вподобайок!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Покажіть нашому алгоритму, що ви любите" @@ -12060,7 +12073,7 @@ msgstr "Умови" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Підбірку не вдалось знайти." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "На цьому все!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "Схоже, на сервері певні проблеми. Будь л msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Підбірка, яку ви намагаєтесь переглянути, хибна. Ви можете її видалити." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "Введений вами код підтвердження хибний msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Тема" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "При з'єднанні з сервером виникла проблема" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Виникла проблема зі з'єднанням з сервером. Перевірте підключення до Інтернету і повторіть спробу знову." @@ -12283,8 +12296,8 @@ msgstr "Виникла проблема зі з'єднанням з сервер msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Виникла проблема з завантаженням сповіщень. Натисніть тут, щоб повторити спробу." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Виникла проблема з завантаженням постів. Натисніть тут, щоб повторити спробу." @@ -12309,7 +12322,7 @@ msgstr "Під час отримання інформації про викор msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Виникла проблема під час видалення цієї стрічки. Будь ласка, перевірте з'єднання з інтернетом та спробуйте знов." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Ці налаштування застосовуються лише дл msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Цей {screenDescription} був позначений:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Цей користувач вказав, що не хоче, аби його профіль бачили відвідувачі без облікового запису." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ця стрічка порожня! Можливо, вам треба підписатися на більшу кількість користувачів або змінити ваші налаштування мови." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Стрічка порожня." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Цей псевдонім використовується. Будь ласка, спробуйте інший." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Ця мітка була додана вами." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Цей мітник ще не заявив, які мітки він публікує, і може бути неактивним." @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Зазначається, що пост було створено — <0>{0}, але вперше цей пост було оприлюднено на Bluesky — <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Зазначається, що пост було створено — <0 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Цей пост буде приховано від стрічок та гілок. Цю дію не можна скасувати." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Автор цього поста вимкнув можливість його цитувати." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Ніхто не підписаний на користувача." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Цей користувач заблокував вас. Ви не можете бачити їх пости." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Цей користувач є в списку <0>{0}, який ви msgid "This user is new here. Press for more info about when they joined." msgstr "Це новий користувач. Натисніть для детальнішої інформації про дату приєднання." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Цей користувач не підписаний ні на кого." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Це прибере @{0} зі списку швидкого доступу." @@ -12786,7 +12801,7 @@ msgstr "Налаштування гілок" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Налаштування обговорень" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Топ" @@ -12858,7 +12873,7 @@ msgstr "Топ" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,7 +12919,7 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Розблокувати обліковий запис?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Відписатися від {0}" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Прибрати вподобання" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Перестати ігнорувати" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Увімкнути звук відео" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Відкріпити" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Відкріпити від головної сторінки" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Відкріпити список модерації" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13277,11 @@ msgstr "Відписатися від цього мітника" msgid "Unsubscribed from list" msgstr "Відписано від списку" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Не вдалось оновити видимість відповіді" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Натомість завантажити фото" @@ -13355,7 +13374,7 @@ msgstr "Завантажити з файлів" msgid "Upload from Library" msgstr "Завантажити з бібліотеки" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Завантаження зображень..." msgid "Uploading link thumbnail..." msgstr "Завантаження ескізу посилання..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Завантаження відео..." @@ -13408,7 +13427,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,7 +13637,7 @@ msgstr "Відео" msgid "Video failed to process" msgstr "Не вдалось обробити відео" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Відеоігри" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Відео не знайдено." @@ -13653,7 +13672,7 @@ msgstr "Відео не знайдено." msgid "Video settings" msgstr "Налаштування відео" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Відео завантажено" @@ -13662,17 +13681,17 @@ msgstr "Відео завантажено" msgid "Video: {0}" msgstr "Відео: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Переглянути аватар {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Переглянути профіль {0}" @@ -13724,13 +13743,13 @@ msgstr "Докладніше у публікації в блозі" msgid "View debug entry" msgstr "Переглянути запис для налагодження" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Переглянути деталі" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Переглянути обговорення" @@ -13761,7 +13780,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Переглянути послуги мічення від @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Переглянути користувачів, які вподобали цю стрічку" @@ -13831,7 +13850,7 @@ msgstr "Перегляньте списки модерації" msgid "View your muted accounts" msgstr "Переглянути ігноровані облікові записи" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "У нас виникли проблеми з мережею, спробуйте ще раз" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Дуже прикро, але нам не вдалося знайти ц msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "На жаль, ми не змогли зараз завантажити ваші ігноровані слова. Будь ласка, спробуйте ще раз." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Нам прикро! Пост, на який ви відповідаєте, видалено." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Як справи?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Упс!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Написати пост" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Написати відповідь" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Ви не можете завантажувати відео." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Тепер ви можете увійти за допомогою нового пароля." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Ви тимчасово досягли ліміту завантаження відео. Будь ласка, спробуйте пізніше." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Ви ще не створювали власних підбірок!" @@ -14614,7 +14636,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Ви можете додати лише 3 стрічки" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Ви маєте читати щонайменше сімох користувачів для генерування власної підбірки." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Ви читатимете запропонованих користувачів та стрічки щойно завершите створення облікового запису!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Ви читатимете запропонованих користувачів щойно завершите створення облікового запису!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Ваша домашня стрічка закінчилась! Підпишіться на більше користувачів щоб отримувати більше постів." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Ви досягли денного ліміту завантаження msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Ви досягли денного ліміту завантаження відео (забагато відео)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Ваш акаунт" @@ -14835,11 +14857,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ваш обліковий запис створено недостатньо давно для завантаження відео. Будь ласка, спробуйте пізніше." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/vi/messages.po b/src/locale/locales/vi/messages.po index 0e3d92dbc5..ad82209924 100644 --- a/src/locale/locales/vi/messages.po +++ b/src/locale/locales/vi/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: vi\n" +"Language: vi_VN\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(chứa nội dung nhúng)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, other {# giờ}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, other {# lượt thích}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} trong số 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} đã bày tỏ cảm xúc {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} đã xác thực bạn" msgid "{following} following" msgstr "{following} đang theo dõi" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "không thể nhắn tin cho {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, other {# mục chưa đọc}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} giờ trước" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} là người xác minh đáng tin cậy" @@ -842,13 +795,13 @@ msgstr "Các xác minh của {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, other {đang theo dõi}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {trích dẫn}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {lượt đăng lại}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 ngày" msgid "7 days" msgstr "7 ngày" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "Một dạng xác thực hoàn toàn mới" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Trợ năng" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Cài đặt trợ năng" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Tài khoản đã bị ẩn bởi Danh sách" msgid "Account options" msgstr "Tùy chọn tài khoản" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Tài khoản đã bị xóa khỏi truy cập nhanh" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Tài khoản có dấu tích xanh hình viền răng cưa <0><1/> có thể xác minh người khác. Những người xác minh đáng tin cậy này được chọn bởi Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Thêm văn bản thay thế (không bắt buộc)" msgid "Add another account" msgstr "Thêm tài khoản khác" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Thêm bài" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Thêm emoji để bày tỏ cảm xúc" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Thêm bảng tin này vào danh sách bảng tin của bạn" msgid "Add to lists" msgstr "Thêm vào danh sách" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "18+" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "Cho phép truy cập tin nhắn" msgid "Already have a code?" msgstr "Bạn đã có mã rồi?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "" @@ -1614,7 +1574,7 @@ msgstr "Email đã được gửi đến {0}, bao gồm mã xác nhận để nh msgid "An error has occurred" msgstr "Đã có lỗi xảy ra" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Đã có lỗi xảy ra" @@ -1631,7 +1591,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "Đã có lỗi xảy ra khi tải bảng tin." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Đã có lỗi xảy ra khi đang tạo gói khởi đầu của bạn. Bạn muốn thử lại không?" @@ -1640,11 +1600,11 @@ msgstr "Đã có lỗi xảy ra khi đang tạo gói khởi đầu của bạn. msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Đã có lỗi xảy ra khi đang tải video. Vui lòng thử lại sau." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Đã có lỗi xảy ra khi đang tải video. Vui lòng thử lại." @@ -1684,7 +1644,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1665,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Vấn đề không nằm trong các tùy chọn này" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Có vấn đề xảy ra khi đang mở cuộc trò chuyện" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1727,8 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1802,7 +1760,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1798,7 @@ msgstr "Mật khẩu ứng dụng phải dài tối thiểu 4 ký tự" msgid "App passwords" msgstr "Mật khẩu ứng dụng" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Mật khẩu ứng dụng" @@ -1891,8 +1849,8 @@ msgstr "Kháng nghị quyết định này" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Lưu trữ từ {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Bài đăng lưu trữ" @@ -1980,7 +1938,7 @@ msgstr "Bạn có chắc chắn muốn xóa khỏi bảng tin của bạn không msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Bạn có chắc chắn muốn hủy bỏ bài đăng này không?" @@ -2019,7 +1977,7 @@ msgid "Aurora" msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1991,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2008,16 @@ msgstr "Tự động phát video và GIF" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Bạn cần xác minh email trước khi có thể tạo gói khởi đầu." @@ -2135,10 +2097,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2122,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2153,9 @@ msgstr "" msgid "Birthday" msgstr "Ngày sinh" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "Đã bị chặn" msgid "Blocked accounts" msgstr "Tài khoản đã bị chặn" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Tài khoản đã bị chặn" @@ -2282,7 +2250,7 @@ msgstr "Tài khoản bị chặn không thể trả lời bài đăng của bạ 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 "Tài khoản bị chặn không thể trả lời bài đăng của bạn, đề cập đến bạn hoặc tương tác với bạn. Bạn sẽ không thể xem nội dung của họ và họ sẽ không được phép xem nội dung của bạn." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Việc chặn không ngăn dịch vụ gắn nhãn này đặt nhãn trên tài khoản của bạn." @@ -2305,10 +2273,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky không thể xác nhận tính xác thực của ngày được tuyên bố." @@ -2330,7 +2299,7 @@ msgstr "Bluesky là mạng mở nơi bạn có thể chọn nhà cung cấp dị msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky là một mạng xã hội mở, nơi bạn có thể tự chọn nơi quản lý tài khoản của mình. Nếu bạn mới tham gia, chúng tôi khuyên bạn nên sử dụng tùy chọn mặc định là Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky cùng bạn bè sẽ vui hơn!" @@ -2358,7 +2327,7 @@ msgstr "Điều khoản Dịch vụ của Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky sẽ chọn một tập hợp các tài khoản được đề xuất từ những người trong mạng lưới của bạn." @@ -2425,24 +2394,25 @@ msgstr "Xem thêm đề xuất trên trang Khám phá" msgid "Browse other feeds" msgstr "Xem các bảng tin khác" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "Tìm bài đăng về {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "Tìm bài đăng được gắn thẻ với {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "Xem bộ khởi đầu {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "Xem chủ đề {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "Tìm chủ đề {displayName}" @@ -2461,8 +2431,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Bởi {0}" @@ -2473,9 +2443,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Bởi <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "Bằng việc tạo tài khoản, bạn đồng ý với <0>Điều kho msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Bằng việc tạo tài khoản, bạn đồng ý với <0>Điều khoản dịch vụ." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Bởi bạn" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Máy ảnh" @@ -2534,7 +2504,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2555,7 @@ msgstr "Hủy kích hoạt lại và đăng xuất" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Huỷ tìm kiếm" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Đã tắt thông báo chat" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Hộp thư yêu cầu trò chuyện" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "Yêu cầu trò chuyện" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Cài đặt chat" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Đã bật lại thông báo chat" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2808,7 @@ msgstr "Chọn phương pháp xác minh tên miền" msgid "Choose Feeds" msgstr "Chọn bảng tin" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Chọn cho tôi" @@ -2854,7 +2825,7 @@ msgstr "Chọn người" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Chọn màu này làm hình đại diện của bạn" @@ -2879,7 +2850,7 @@ msgstr "Chọn bảng tin của riêng bạn! Các bảng tin được xây dự msgid "Choose your password" msgstr "Chọn mật khẩu của bạn" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Chọn tên người dùng của bạn" @@ -2966,7 +2937,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Nhấn để thử lại tin nhắn không thành công" @@ -3003,7 +2974,7 @@ msgstr "Nhấn để thử lại tin nhắn không thành công" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "Nhấn để thử lại tin nhắn không thành công" msgid "Close" msgstr "Đóng" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Đóng hộp thoại đang mở" @@ -3047,7 +3018,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Đóng bảng chọn" @@ -3090,7 +3061,7 @@ msgstr "" msgid "Close this dialog" msgstr "Đóng hộp thoại này" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3069,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Đóng cảnh báo cập nhật mật khẩu" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Đóng trình soạn bài đăng và huỷ bỏ nháp" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Chế độ màu" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "Truyện tranh" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Quy tắc cộng đồng" @@ -3141,7 +3112,7 @@ msgstr "Quy tắc cộng đồng" msgid "Complete onboarding and start using your account" msgstr "Hoàn thành quá trình hướng dẫn và bắt đầu sử dụng tài khoản của bạn" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Hoàn thành thử thách" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "Soạn bài đăng mới" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Soạn bài đăng với độ dài tối đa {0, plural, other {# kí tự}}" @@ -3160,11 +3131,11 @@ msgstr "Soạn bài đăng với độ dài tối đa {0, plural, other {# kí t msgid "Compose reply" msgstr "Soạn trả lời" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Đang nén video..." @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Liên hệ hỗ trợ" @@ -3253,7 +3224,7 @@ msgstr "Nội dung & phương tiện" msgid "Content and media" msgstr "Nội dung và phương tiện" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Nội dung và phương tiện" @@ -3265,10 +3236,6 @@ msgstr "Nội dung đã bị chặn" msgid "Content filters" msgstr "Lọc nội dung" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Nội dung trên mạng mà có thể bạn sẽ thích." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "Cảnh báo nội dung" msgid "Content warnings" msgstr "Cảnh báo nội dung" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Nền trình đơn, nhấn để đóng trình đơn." @@ -3302,7 +3269,7 @@ msgstr "Nền trình đơn, nhấn để đóng trình đơn." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "Tiếp tục thảo luận..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Đã sao chép phiên bản xây dựng vào bảng ghi tạm" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3343,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "Sao chép mật khẩu ứng dụng" msgid "Copy at:// URI" msgstr "Sao chép URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Sao chép mã DID của tác giả" @@ -3449,10 +3416,10 @@ msgstr "Sao chép liên kết" msgid "Copy link to list" msgstr "Sao chép liên kết đến danh sách" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Sao chép liên kết đến bài đăng" @@ -3470,8 +3437,8 @@ msgstr "" msgid "Copy message text" msgstr "Sao chép văn bản tin nhắn" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Sao chép URI at:// của bài đăng" @@ -3490,7 +3457,7 @@ msgstr "Sao chép giá trị bản ghi TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Chính sách bản quyền" @@ -3540,11 +3507,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Không thể rời khỏi chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Không thể tải bảng tin" @@ -3562,7 +3529,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Không thể tắt thông báo chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3573,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Tạo" @@ -3624,26 +3591,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Tạo mã QR cho gói khởi đầu" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Tạo gói khởi đầu" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Tạo gói khởi đầu cho tôi" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "Tạo tài khoản" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Tạo tài khoản" @@ -3666,15 +3633,15 @@ msgstr "Tạo tài khoản" msgid "Create an account without using this starter pack" msgstr "Tạo tài khoản nhưng không sử dụng gói khởi đầu này" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Tạo hình đại diện" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Tạo thêm" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3710,7 @@ msgstr "Văn hóa" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3737,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Tối" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tối" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Chế độ tối" @@ -3814,7 +3781,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Mặc định" @@ -3894,7 +3861,7 @@ msgstr "Xóa tài khoản của tôi" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Xóa bài đăng" @@ -3988,7 +3955,7 @@ msgstr "Hộp thoại: điều chỉnh ai có thể tương tác với bài đă msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Mờ" @@ -4002,7 +3969,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4012,9 @@ msgstr "Đã tắt" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "Hủy bỏ" msgid "Discard changes?" msgstr "Hủy thay đổi?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Hủy bản nháp?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Hủy bài đăng?" @@ -4079,6 +4046,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Ngăn ứng dụng hiển thị tài khoản của tôi cho người dùng đã đăng xuất" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "Ngăn ứng dụng hiển thị tài khoản của tôi cho người dù msgid "Discover new custom feeds" msgstr "Khám phá bảng tin mới" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Khám phá bảng tin mới" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Bỏ qua" @@ -4103,19 +4070,19 @@ msgstr "Bỏ qua" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Bỏ qua lỗi " -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Bỏ qua hướng dẫn bắt đầu" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Bỏ qua mục quan tâm" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" @@ -4142,7 +4109,7 @@ msgstr "Hiển thị biểu tượng văn bản thay thế lớn hơn" msgid "Display name" msgstr "Tên hiển thị" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4172,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "" msgid "Done" msgstr "Xong" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Nhấp đúp hoặc nhấp và giữ tin nhắn để thêm bày tỏ cảm xúc" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Nhấn đúp để đóng hộp thoại" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Chạm hai lần để thích" @@ -4328,6 +4295,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "Chỉnh sửa hình ảnh" msgid "Edit interaction settings" msgstr "Chỉnh sửa cài đặt tương tác" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Chỉnh sửa mục quan tâm" @@ -4397,7 +4365,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Chỉnh sửa bảng tin của tôi" @@ -4406,6 +4374,11 @@ msgstr "Chỉnh sửa bảng tin của tôi" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Thay đổi người" @@ -4444,7 +4417,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Chỉnh sửa ai có thể trả lời" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Chỉnh sửa gói khởi đầu của bạn" @@ -4500,8 +4473,8 @@ msgstr "Mã HTML nhúng" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Nhúng bài đăng" @@ -4509,7 +4482,7 @@ msgstr "Nhúng bài đăng" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Nhúng bài đăng vào trang web của bạn. Chỉ cần sao chép đoạn mã sau và dán vào mã HTML của trang web của bạn." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Trình phát video nhúng" @@ -4533,7 +4506,7 @@ msgstr "Bật nội dung 18+" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4523,13 @@ msgstr "Bật phương tiện ngoại vi" msgid "Enable media players for" msgstr "Bật trình phát phương tiện cho" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4555,7 @@ msgstr "Bật video nổi bật trong bảng tin Discover" msgid "Enabled" msgstr "Đã bật" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Cuối bảng tin" @@ -4608,7 +4582,7 @@ msgstr "Nhập từ hoặc thẻ" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Vào chế độ toàn màn hình" @@ -4650,11 +4624,11 @@ msgstr "Nhập tên đăng nhập và mật khẩu" msgid "Enters full screen" msgstr "Mở toàn màn hình" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "Giải trí" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Lỗi" @@ -4684,7 +4658,7 @@ msgstr "Đã có lỗi xảy ra khi đang lưu tệp" msgid "Error receiving captcha response." msgstr "Nhận được lỗi phản hồi captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Lỗi: {error}" @@ -4696,8 +4670,8 @@ msgstr "Mọi người có thể trả lời" msgid "Everybody can reply to this post." msgstr "Mọi người có thể trả lời bài đăng này." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Tất cả mọi người" @@ -4711,8 +4685,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Tất cả mọi người" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4712,7 @@ msgstr "Trừ người dùng bạn đang theo dõi" msgid "Excludes users you follow" msgstr "Trừ người dùng bạn đang theo dõi" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Thoát toàn màn hình" @@ -4755,11 +4729,11 @@ msgstr "Mở rộng danh sách người dùng" msgid "Expand or collapse the full post you are replying to" msgstr "Mở rộng hoặc thu gọn toàn bộ bài đăng bạn đang trả lời" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Mở rộng hoặc thu gọn nội dung bài đăng" @@ -4802,15 +4776,15 @@ msgstr "Phương tiện phản cảm hoặc có khả năng phản cảm." msgid "Explicit sexual images." msgstr "Hình ảnh khiêu dâm." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Khám phá" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "" @@ -4844,7 +4818,7 @@ msgstr "Phương tiện ngoại vi" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Phương tiện ngoại vi có thể cho phép trang web thu thập thông tin về bạn và thiết bị của bạn. Thông tin không được gởi đi hoặc yêu cầu cho đến khi bạn nhấn nút \"phát\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Tùy chỉnh phương tiện ngoại vi" @@ -4886,7 +4860,7 @@ msgstr "Không tạo được tên người dùng. Vui lòng thử lại." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Tải cuộc trò chuyện không thành công" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Không tải được cài đặt bảng tin" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4987,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Không tải được gợi ý bảng tin" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Không tải được gợi ý theo dõi" @@ -5027,12 +5002,12 @@ msgstr "Không tải được gợi ý theo dõi" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5166,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Bảng tin" @@ -5212,7 +5187,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu bảng tin" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Đã cập nhật bảng tin!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Bảng tin mà bạn có thể thích." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Tải cập nhật" @@ -5273,11 +5244,11 @@ msgstr "Tải cập nhật" msgid "File saved successfully!" msgstr "Lưu tệp thành công!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "" @@ -5310,7 +5281,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5323,8 @@ msgstr "Tìm tài khoản đề theo dõi" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5358,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5400,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "Theo dõi {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Theo dõi {handle}" @@ -5453,11 +5424,11 @@ msgstr "Theo dõi {handle}" msgid "Follow 10 accounts" msgstr "Theo dõi 10 tài khoản" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Theo dõi 7 tài khoản" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Người đang theo dõi @{0} mà bạn biết" @@ -5544,7 +5515,7 @@ msgstr "Người theo dõi bạn biết" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "Đang theo dõi {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Đang theo dõi {handle}" @@ -5578,21 +5549,21 @@ msgstr "Đang theo dõi {handle}" msgid "Following feed preferences" msgstr "Cài đặt bảng tin Đang theo dõi" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Cài đặt bảng tin Đang theo dõi" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Theo dõi bạn" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Phông chữ" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Kích cỡ phông chữ" @@ -5612,13 +5583,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Vì lý do bảo mật, bạn sẽ không thể xem lại trang này. Nếu bạn làm mất mật khẩu ứng dụng, bạn sẽ cần tạo một mật khẩu mới." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Chúng tôi khuyến nghị sử dụng phông chữ chủ đề để có trải nghiệm tốt nhất." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Dành cho bạn" @@ -5628,7 +5599,7 @@ msgstr "Dành cho bạn" msgid "Forever" msgstr "Vĩnh viễn" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5618,13 @@ msgstr "Quên mật khẩu?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5647,7 @@ msgstr "Từ <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Tạo gói khởi đầu" @@ -5718,39 +5691,39 @@ msgstr "" msgid "Get help" msgstr "Trợ giúp" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5735,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5772,11 @@ msgstr "Bắt đầu" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Chọn hình cho hồ sơ của bạn" @@ -5813,20 +5786,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5849,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6051,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6072,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Gặp trục trặc?" @@ -6114,7 +6088,7 @@ msgstr "" msgid "Help" msgstr "Giúp đỡ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Giúp người khác biết bạn không phải là bot bằng cách tải lên hoặc tạo hình đại diện." @@ -6140,7 +6114,7 @@ msgstr "" msgid "Hidden" msgstr "Bị ẩn" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Bị ẩn bởi cài đặt kiểm duyệt của bạn." @@ -6148,9 +6122,9 @@ msgstr "Bị ẩn bởi cài đặt kiểm duyệt của bạn." msgid "Hidden list" msgstr "Danh sách ẩn" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "Danh sách ẩn" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "Ẩn" @@ -6198,7 +6172,7 @@ msgstr "Ẩn trả lời cho tất cả mọi người" msgid "Hide reply for me" msgstr "Ẩn trả lời cho tôi" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ẩn thẻ này" @@ -6218,12 +6192,12 @@ msgstr "Ẩn trả lời này?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "Ẩn chủ đề nổi trội" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "Ẩn chủ đề nổi trội?" @@ -6240,7 +6214,7 @@ msgstr "Ẩn danh sách người dùng" msgid "Hide verification badges" msgstr "Ẩn các dấu xác minh" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Ẩn nội dung" @@ -6293,8 +6267,8 @@ msgstr "Hmmmm, không thể tải dịch vụ kiểm duyệt đó." msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Chờ nhé! Chúng tôi đang dần dần cấp quyền truy cập video, và bạn vẫn đang trong hàng chờ. Hãy kiểm tra lại sau!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6295,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Nổi bật" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6379,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Nếu bạn muốn thay đổi mật khẩu, chúng tôi sẽ gởi mã xác minh để xác nhận rằng đây là tài khoản của bạn." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -6548,7 +6519,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6560,6 +6531,7 @@ msgstr "Không có yêu cầu nào!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Chỉ mới có bạn thôi! Thêm người khác vào gói khởi đầu của bạn bằng cách tìm kiếm ở trên." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID công việc: {0}" @@ -6816,8 +6788,8 @@ msgstr "Tham gia trò chuyện" msgid "Journalism" msgstr "Báo chí" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Gắn nhãn bởi {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Gắn nhãn bởi người đăng." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Nhãn" @@ -6852,7 +6824,7 @@ msgstr "Đã thêm nhãn" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Nhãn là chú thích cho người dùng và nội dung. Chúng có thể được sử dụng để ẩn, cảnh báo, và phân loại mạng lưới." @@ -6864,7 +6836,7 @@ msgstr "Nhãn trên tài khoản của bạn" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Cài đặt ngôn ngữ" @@ -6874,7 +6846,7 @@ msgstr "Cài đặt ngôn ngữ" msgid "Languages" msgstr "Ngôn ngữ" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Lớn hơn" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Mới nhất" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Tìm hiểu thêm" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6909,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Tìm hiểu thêm về việc tự lưu trữ PDS của bạn." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Tìm hiểu thêm về kiểm duyệt được áp dụng cho nội dung này" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Tìm hiểu thêm về cảnh báo này" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Tìm hiểu thêm." @@ -6993,8 +6965,8 @@ msgstr "Rời đi" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "Rời Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +7014,7 @@ msgstr "" msgid "left to go." msgstr "còn lại." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Để tôi chọn" @@ -7057,7 +7029,7 @@ msgstr "Bắt đầu nào!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Sáng" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Sáng" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Thích" @@ -7076,7 +7048,7 @@ msgstr "Thích" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Thích ({0, plural, other {# lượt thích}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Thích 10 bài" @@ -7085,7 +7057,7 @@ msgstr "Thích 10 bài" msgid "Like 10 posts to train the Discover feed" msgstr "Thích 10 bài để dạy cho bảng tin Khám phá" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Thích bảng tin này" @@ -7093,8 +7065,8 @@ msgstr "Thích bảng tin này" msgid "Like this labeler" msgstr "Thích dịch vụ gắn nhãn này" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Thích bởi" @@ -7111,27 +7083,45 @@ msgstr "Thích bởi" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Thích bởi {0, plural, other {# người dùng}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Thích bởi {likeCount, plural, other {# người dùng}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Lượt thích" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Lượt thích cho bài đăng này" @@ -7144,7 +7134,7 @@ msgstr "Ngang hàng" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Danh sách" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Đã đã bỏ ẩn toàn danh sách" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7269,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Tải thêm" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Tải thêm gợi ý bảng tin" @@ -7292,8 +7282,8 @@ msgstr "Tải thêm gợi ý bảng tin" msgid "Load new notifications" msgstr "Tải thông báo mới" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7387,7 +7377,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Tạo cho tôi một cái" @@ -7418,15 +7408,15 @@ msgstr "" msgid "Mark all as read" msgstr "Đánh dấu tất cả là đã đọc" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "Đánh dấu đã đọc" msgid "Marked all as read" msgstr "Đã đánh dấu tất cả là đã đọc" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7446,12 @@ msgstr "" msgid "Maybe later" msgstr "Để sau" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Phương tiện" @@ -7475,7 +7469,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Phương tiện có thể gây phản cảm cho một số khán giả." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "người dùng được đề cập" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Nhắc đến" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Đã xóa tin nhắn" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7557,15 @@ msgstr "" msgid "Message options" msgstr "Tuỳ chọn tin nhắn" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Tin nhắn" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7586,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Kiểm duyệt" @@ -7636,7 +7630,7 @@ msgstr "Đã cập nhật danh sách kiểm duyệt" msgid "Moderation lists" msgstr "Danh sách kiểm duyệt" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Danh sách kiểm duyệt" @@ -7645,7 +7639,7 @@ msgstr "Danh sách kiểm duyệt" msgid "moderation settings" msgstr "Cài đặt kiểm duyệt" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Trạng thái kiểm duyệt" @@ -7786,7 +7780,7 @@ msgstr "" msgid "Muted accounts" msgstr "Tài khoản bị ẩn" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Tài khoản bị ẩn" @@ -7867,7 +7861,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Thôi, tạo tên người dùng cho tôi" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Tạo mới" @@ -7893,11 +7886,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Chat mới" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "Tính năng mới" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7959,13 @@ msgstr "Danh sách mới" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7975,12 @@ msgstr "" msgid "New password" msgstr "Mật khẩu mới" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Bài đăng mới" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "Trả lời mới nhất trước" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "Tin tức" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "Hình kế tiếp" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8098,7 +8091,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Không tìm thấy bảng tin nào. Thử tìm gì đó khác xem." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8118,7 +8111,7 @@ msgstr "" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Chưa có lượt thích nào" @@ -8135,7 +8128,7 @@ msgstr "" msgid "No longer following {0}" msgstr "Không còn theo dõi {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8136,7 @@ msgstr "" msgid "No messages yet" msgstr "Chưa có tin nhắn nào" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8184,12 +8177,12 @@ msgstr "" msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Chưa có trích dẫn nào" @@ -8202,7 +8195,7 @@ msgstr "" msgid "No replies" msgstr "" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8210,13 @@ msgstr "Không có kết quả" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Không có kết quả" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Không có kết quả nào cho \"{0}\"." @@ -8236,23 +8229,23 @@ msgstr "Không tìm thấy kết quả nào" msgid "No results found for \"{query}\"" msgstr "Không tìm thấy kết quả nào cho \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Không có kểt quả nào." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8258,7 @@ msgstr "Không, cảm ơn" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8271,7 @@ msgstr "Không ai" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Chưa có ai thích bài đăng này. Có lẽ bạn nên là người đầu tiên!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Chưa có ai trích dẫn bài đăng này. Có lẽ bạn nên là người đầu tiên!" @@ -8298,6 +8291,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Khỏa thân không khiêu dâm" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Không tìm thấy" @@ -8333,7 +8330,7 @@ msgstr "Chú ý về việc chia sẻ" 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 "Chú ý: Bluesky là một trang mạng mở và công khai. Cài đặt này chỉ giới hạn trạng thái hiển thị nội dung của bạn trên ứng dụng và trang web Bluesky, các ứng dụng khác có thể không tôn trọng cài đặt này. Nội dung của bạn vẫn có thể được hiển thị bởi các ứng dụng và trang web khác cho người dùng sau đăng xuất." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Cài đặt thông báo" @@ -8353,11 +8350,12 @@ msgstr "Cài đặt thông báo" msgid "Notification sounds" msgstr "Âm thanh thông báo" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "Ôi không!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "OK" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "Đặt lại quá trình hướng dẫn" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Một hoặc nhiều GIF thiếu văn bản thay thế." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Một hoặc nhiều hình ảnh thiếu văn bản thay thế." @@ -8454,11 +8454,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Một hoặc nhiều video thiếu văn bản thay thế" @@ -8471,7 +8471,7 @@ msgstr "Chỉ {0} có thể trả lời" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8519,7 +8519,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Chỉ hỗ trợ tệp WebVTT (.vtt)" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ôi!" @@ -8544,7 +8544,7 @@ msgstr "Ôi!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Mở trình tạo hình đại diện" @@ -8570,21 +8570,22 @@ msgstr "Mở tùy chọn hội thoại" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Mở trình đơn" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Mở trình chọn biểu tượng cảm xúc" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Mở màn hình thông tin bảng tin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Mở trình đơn tùy chọn bảng tin" @@ -8627,7 +8628,7 @@ msgstr "Mở trang gỡ lỗi kiểm duyệt" msgid "Open muted words and tags settings" msgstr "Mở cài đặt thẻ và từ cấm" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Mở gói" @@ -8699,7 +8700,7 @@ msgstr "Mở chi tiết bổ sung cho một mục gỡ lỗi" msgid "Opens alt text dialog" msgstr "Mở hộp thoại văn bản thay thế" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Mở máy ảnh trên thiết bị" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Mở quy trình tạo tài khoản Bluesky mới" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Mở quy trình đăng nhập vào tài khoản Bluesky hiện tại của bạn" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "Đã cập nhật mật khẩu!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Dừng" @@ -8925,12 +8926,12 @@ msgstr "Dừng" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Dừng video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Con người" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Người\tđược @{0} theo dõi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Người đang theo dõi @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "Hình ảnh cho người lớn" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Ghim bảng tin" @@ -9034,7 +9035,7 @@ msgstr "Ghim bảng tin" msgid "Pin to home" msgstr "Ghim vào trang chủ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Ghim vào trang chủ" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "Đã ghim" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Đã ghim {0} vào trang chủ" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "Đã ghim vào bảng tin của bạn" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Phát" @@ -9076,8 +9077,8 @@ msgstr "Phát {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Phát video" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "Chính trị" @@ -9269,7 +9270,7 @@ msgstr "Chính trị" msgid "Porn" msgstr "Hình ảnh khiêu dâm" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Đăng" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "Đăng" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Đăng tất cả" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Đăng bởi @{0}" @@ -9340,7 +9341,7 @@ msgstr "Bài đăng ẩn bởi bạn" msgid "Post interaction settings" msgstr "Cài đặt tương tác bài đăng" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Cài đặt tương tác bài đăng" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "Đã ghim bài đăng" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "Đã gở ghim bài đăng" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Bài đăng" @@ -9398,6 +9396,10 @@ msgstr "Bài đăng có thể bị ẩn dựa trên văn bản, thẻ, hoặc c msgid "Posts hidden" msgstr "Bài đăng đã ẩn" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Quyền riêng tư" msgid "Privacy and security" msgstr "Quyền riêng tư và bảo mật" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Quyền riêng tư và bảo mật" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Chính sách bảo mật" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Đang xử lý video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Danh sách công khai, chia sẻ được của người dùng để cho việc ẩn hoặc chặn hàng loạt." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Đăng bài" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Đăng bài" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Đăng trả lời" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Đăng trả lời" @@ -9599,12 +9602,12 @@ msgstr "Trích dẫn bài đăng đã bị tắt" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Trích dẫn" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Trích dẫn của bài đăng này" @@ -9647,7 +9650,7 @@ msgstr "Tái kích hoạt tài khoản của bạn" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Đọc bài blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Thu gọn" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Xem thêm" @@ -9687,11 +9690,11 @@ msgstr "Đọc Chính sách bảo mật của Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Đọc Điều khoản dịch vụ của Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Đề xuất" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Kết nối lại" @@ -9748,7 +9747,7 @@ msgstr "Từ chối yêu cầu trò chuyện" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Tải lại hội thoại" @@ -9766,7 +9765,7 @@ msgstr "Tải lại hội thoại" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Xóa" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Xóa tài khoản" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Xóa khỏi bảng tin của tôi" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Xóa khỏi truy cập nhanh?" @@ -9862,7 +9861,7 @@ msgstr "Xóa khỏi truy cập nhanh?" msgid "Remove from saved feeds" msgstr "Xóa khỏi bảng tin đã lưu" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Xóa hình" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Đã xóa khỏi danh sách" msgid "Removed from saved feeds" msgstr "Đã xóa khỏi bảng tin được lưu" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Trả lời" @@ -10037,7 +10037,7 @@ msgstr "Trả lời cho bài đăng này đã bị tắt." msgid "Reply" msgstr "Trả lời" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Trả lời" @@ -10098,8 +10098,8 @@ msgstr "Báo cáo hội thoại" msgid "Report dialog" msgstr "Hộp thoại báo cáo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Báo cáo bảng tin" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Đăng lại bởi bạn" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Lượt đăng lại của bài đăng này" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Thử lại hành động cuối cùng (đã xảy ra lỗi)" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Trở về trang chủ" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Trở về trang trước" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Lưu thay đổi" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Lưu mã QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Lưu vào bảng tin của tôi" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Bảng tin đã lưu" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Đã lưu vào bảng tin của bạn" @@ -10520,8 +10520,8 @@ msgstr "Đã lưu vào bảng tin của bạn" msgid "Say hello!" msgstr "Gửi lời chào!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Khoa học" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Cuộn đến đầu trang" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Tìm kiếm" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Tìm kiếm bài đăng của @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Tìm kiếm bảng tin bạn muốn đề xuất cho người khác." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Tìm thêm tài khoản" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Tìm thêm bảng tin" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Tìm GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10709,6 +10709,7 @@ msgstr "Xem công việc tại Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "" @@ -10716,8 +10717,12 @@ msgstr "" msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Thanh trượt. Sử dụng các phím mũi tên để tìm kiếm về phía trước và phía sau, và phím cách để phát / tạm dừng" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Chọn màu" @@ -10764,11 +10769,11 @@ msgstr "Chọn tài khoản" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Chọn hình hiển thị" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Chọn emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Chọn GIF" msgid "Select GIF \"{0}\"" msgstr "Chọn GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Chọn emoji {emojiName} làm hình hiển thị" @@ -10945,7 +10951,8 @@ msgstr "Gửi tin nhắn" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Gửi bài đăng đến..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Gửi email xác minh" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Gửi qua tin nhắn" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Đặt email để đặt lại mật khẩu" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Cài đặt" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Vẫn chia sẻ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Hộp thoại chia sẻ liên kết" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Chia sẻ mã QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Chia sẻ bảng tin này" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Chia sẻ gói khởi đầu này" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Chia sẻ gói khởi đầu này và giúp mọi người tham gia cộng đồng của bạn trên Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughts…" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Trình kiểm tra cài đặt đã chia sẻ" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Hiện" msgid "Show alt text" msgstr "Hiển thị văn bản thay thế" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Vẫn hiển thị" @@ -11274,9 +11281,9 @@ msgstr "Vẫn hiển thị danh sách" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Hiển thị thêm" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Hiển thị cảnh báo và bộ lọc từ bảng tin" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Hiển thị thông tin về thời gian đăng của bài này" @@ -11341,15 +11348,15 @@ msgstr "Hiển thị thông tin về thời gian đăng của bài này" msgid "Shows other accounts you can switch to" msgstr "Hiển thị các tài khoản khác bạn có thể chuyển đổi sang" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Hiển thị nội dung" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Hiển thị nội dung" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Đăng xuất?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Yêu cầu đăng nhập" @@ -11469,7 +11476,7 @@ msgstr "Bỏ qua" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Nhỏ hơn" @@ -11499,7 +11506,7 @@ msgstr "Tạm bỏ qua lời nhắc" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Ai đó đã bày tỏ cảm xúc {0}" @@ -11554,7 +11561,7 @@ msgstr "Ai đó đã bày tỏ cảm xúc {0}" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Có gì đó không đúng, vui lòng thử lại" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "Có lỗi xảy ra. Xin vui lòng thử lại." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Có gì không đúng? Hãy cho chúng tôi biết." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "Thể thao" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Bắt đầu cuộc trò chuyện mới" @@ -11682,17 +11689,17 @@ msgstr "Bắt đầu thêm người" msgid "Start adding people!" msgstr "Bắt đầu thêm người!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Bắt đầu trò chuyện với {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Gói khởi đầu" @@ -11715,12 +11722,16 @@ msgstr "Gói khởi đầu bởi bạn" msgid "Starter pack is invalid" msgstr "Gói khởi đầu không hợp lệ" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Gói khởi đầu" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Gói khởi đầu giúp bạn dễ dàng chia sẻ bảng tin và người yêu thích của mình với bạn bè." @@ -11728,7 +11739,7 @@ msgstr "Gói khởi đầu giúp bạn dễ dàng chia sẻ bảng tin và ngư msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Trang trạng thái" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Bước {0} / {1}" @@ -11754,7 +11765,7 @@ msgstr "Dữ liệu đã được xóa, bạn cần khởi động lại ứng d msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Đăng ký @{0} để sử dụng nhãn:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "Đã xác minh thành công" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Hoàng hôn" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Chuyển sang {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Hệ thống" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Nhấp để đóng menu tuỳ chọn" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Nhấn để bỏ qua" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Hoàn thành nhiệm vụ - 10 người theo dõi!" msgid "Task complete - 10 likes!" msgstr "Hoàn thành nhiệm vụ - 10 lượt thích!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Dạy thuật toán những điều bạn thích" @@ -12060,7 +12073,7 @@ msgstr "Điều khoản" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Không thể tìm thấy gói khởi đầu đó." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Hết!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Hết bảng tin video!" @@ -12216,7 +12229,7 @@ msgstr "Máy chủ có vẻ đang có vấn đề. Vui lòng thử lại sau ít msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Gói khởi đầu bạn đang xem là không hợp lệ. Bạn có thể xóa gói khởi đầu này." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Tiêu đề của menu tuỳ chọn" @@ -12238,7 +12251,7 @@ msgstr "Mã xác minh bạn cung cấp là không hợp lệ. Vui lòng chắc c msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Giao diện" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Có vấn đề khi kết nối với máy chủ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Có vấn đề khi kết nối với máy chủ, vui lòng kiểm tra kết nối mạng của bạn và thử lại." @@ -12283,8 +12296,8 @@ msgstr "Có vấn đề khi kết nối với máy chủ, vui lòng kiểm tra k msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Có vấn đề khi tải thông báo. Nhấn vào đây để thử lại." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Có vấn đề khi tải bài đăng. Nhấn vào đây để thử lại." @@ -12309,7 +12322,7 @@ msgstr "Có vấn đề khi tải thông tin dịch vụ của bạn" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Có vấn đề khi xóa bảng tin này. Vui lòng kiểm tra kết nối mạng của bạn và thử lại." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Các cài đặt này chỉ áp dụng cho bảng tin Following." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They won’t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} này đã bị đánh dấu:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Tài khoản này có một hoặc nhiều lần thử xác minh, nhưng hiện tại chưa được xác minh thành công." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Tài khoản này đã yêu cầu người dùng đăng nhập để xem hồ sơ của họ." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Bảng tin này đang trống! Bạn có thể phải theo dõi thêm người dùng hoặc điều chỉnh cài đặt ngôn ngữ của mình." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Bảng tin này đang trống." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Tên người dùng này đã được đặt trước. Vui lòng thử tên khác." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Nhãn này đã được bắn bởi bạn." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dịch vụ gắn nhãn này chưa khai báo các nhãn, và có thể không hoạt động." @@ -12621,13 +12634,13 @@ msgstr "Danh sách này đang trống." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Bài đăng này khai rằng đã được tạo vào <0>{0}, nhưng lần đầu tiên được Bluesky nhìn thấy vào <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Bài đăng này khai rằng đã được tạo vào <0>{0}, nhưng msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Bài đăng này có loại threadgate không xác định. Ứng dụng của bạn có thể đã lỗi thời." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bài đăng này sẽ bị ẩn khỏi bảng tin và thảo luận. Hành động này không thể hoàn tác." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Tác giả bài đăng này đã tắt chức năng trích dẫn bài đăng." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Người dùng này không có tên hiển thị, vì vậy không thể được xác minh." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Người dùng này không có người nào theo dõi." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Người dùng này đã chặn bạn. Bạn không thể thấy nội dung của họ." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Người dùng này nằm trong danh sách <0>{0} mà bạn đã ẩ msgid "This user is new here. Press for more info about when they joined." msgstr "Người dùng này mới đến đây. Nhấn vào để biết họ đã tham gia khi nào." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Người dùng này không theo dõi ai cả." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Tác vụ này sẽ xóa @{0} khỏi danh sách truy cập nhanh." @@ -12786,7 +12801,7 @@ msgstr "Cài đặt thảo luận" msgid "Threaded" msgstr "Phân luồng" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Cài đặt thảo luận" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Hàng đầu" @@ -12858,7 +12873,7 @@ msgstr "Hàng đầu" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Chủ đề" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Chủ đề nổi trội" @@ -12902,7 +12919,7 @@ msgstr "Chủ đề nổi trội" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" @@ -12918,11 +12935,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Niềm tin hình thành từ các mối quan hệ, cộng đồng và bối cảnh chung, vì vậy chúng tôi cũng kích hoạt <0>người xác minh đáng tin cậy: các tổ chức có thể trực tiếp cấp xác minh." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13043,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "Bỏ chặn tài khoản" msgid "Unblock list" msgstr "Mở khoá danh sách" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "Bỏ theo dõi {0}" msgid "Unfollow account" msgstr "Bỏ theo dõi tài khoản" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Bỏ theo dõi người này" @@ -13132,7 +13151,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Bỏ thích" @@ -13192,7 +13211,7 @@ msgstr "" msgid "Unmute thread" msgstr "Bật lại thông báo cho thảo luận" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Bật lại thông báo cho video" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "Bỏ ghim" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Bỏ ghim bảng tin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Bỏ ghim khỏi trang chủ" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "Bỏ ghim khỏi danh sách kiểm duyệt" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Đã bỏ ghim {0} khỏi Trang chủ" @@ -13258,11 +13277,11 @@ msgstr "Bỏ đăng ký dịch vụ gắn nhãn" msgid "Unsubscribed from list" msgstr "Đã bỏ đăng ký danh sách" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Không thể cập nhật trạng thái hiển thị của trả lời" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Tải lên ảnh" @@ -13355,7 +13374,7 @@ msgstr "Tải lên từ Files" msgid "Upload from Library" msgstr "Tải lên từ Thư viện" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13388,7 @@ msgstr "Đang tải lên hình..." msgid "Uploading link thumbnail..." msgstr "Đang tải lên hình cho liên kết..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Đang tải lên video..." @@ -13408,7 +13427,7 @@ msgstr "Sử dụng để đăng nhập vào ứng dụng khác cùng với tên msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13529,7 @@ msgstr "Xác minh không thành công, xin vui lòng thử lại." msgid "Verification settings" msgstr "Cài đặt xác minh" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Cài đặt xác minh" @@ -13618,7 +13637,7 @@ msgstr "Video" msgid "Video failed to process" msgstr "Không thể xử lý video" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Bảng tin video" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "Video từ {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "Trò chơi điện tử" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Đã tạm dừng video" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Đang phát video" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Không tìm thấy video." @@ -13653,7 +13672,7 @@ msgstr "Không tìm thấy video." msgid "Video settings" msgstr "Cài đặt video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Đã tải lên video" @@ -13662,17 +13681,17 @@ msgstr "Đã tải lên video" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Video" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13710,9 @@ msgstr "Xem hình đại diện của {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Xem hồ sơ của {0}" @@ -13724,13 +13743,13 @@ msgstr "Xem bài đăng để biết thêm chi tiết" msgid "View debug entry" msgstr "Xem bản ghi gỡ lỗi" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Xem chi tiết" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Xem toàn bộ thảo luận" @@ -13761,7 +13780,7 @@ msgstr "Xem thêm" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,11 +13817,11 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Xem dịch vụ gắn nhãn bởi @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Xem xác minh của người dùng này" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Xem người dùng thích bảng tin này" @@ -13831,7 +13850,7 @@ msgstr "Xem danh sách kiểm duyệt của bạn" msgid "View your muted accounts" msgstr "Xem tài khoản bạn đã ẩn" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Xem xác minh của bạn" @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "Chúng tôi đang gặp vấn đề mạng, hãy thử lại" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "" @@ -14043,7 +14062,7 @@ msgstr "" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Chúng tôi đang giới thiệu một lớp xác minh mới trên Bluesky — một dấu tích dễ nổi bật." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "" @@ -14064,13 +14083,15 @@ msgstr "Xin lỗi, chúng tôi không thể xử lý danh sách này. Nếu vẫ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Xin lỗi, chung tối không thể tải từ cấm của bạn vào lúc này. Vui lòng thử lại." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14099,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Xin lỗi! Bài đăng bạn đang trả lời đã bị xóa." @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Có gì mới?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "Ai có thể xác minh?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ôi không!" @@ -14220,21 +14241,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Soạn bài đăng" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Soạn trả lời" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14363,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Bạn không được phép tải lên video." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14383,7 @@ msgstr "Bạn đã được xác minh. Bạn sẽ bị mất dấu xác minh n msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Bạn đã được xác minh. Bạn sẽ bị mất dấu xác minh nếu bạn thay đổi tên tài khoản. <0>Tìm hiểu thêm." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Bạn có thể thay đổi mục quan tâm bất cứ lúc nào tại cài đặt \"Nội dung và phương tiện\"." @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "Bạn có thể đăng nhập bằng mật khẩu mới của mình." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14460,9 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "Bạn có thể cập nhật lại sau trong phần cài đặt." @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14577,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Bạn đã tạm thời đạt giới hạn tải lên video. Vui lòng thử lại sau." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14585,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Bạn chưa tạo gói khởi đầu nào!" @@ -14614,7 +14636,7 @@ msgstr "Bạn chỉ có thể thêm tối đa {STARTER_PACK_MAX_SIZE, plural, ot msgid "You may only add up to 3 feeds" msgstr "Bạn chỉ có thể thêm tối đa 3 bảng tin" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14644,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Bạn phải theo dõi ít nhất bảy người khác để tạo gói khởi đầu." @@ -14639,7 +14661,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "Bạn cần phải xác thực địa chỉ email trước khi mở xác thực hai lớp qua email." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "Bạn có thể cần phải khởi động lại ứng ngay bây giờ." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Bạn đã bày tỏ cảm xúc {0}" @@ -14667,15 +14689,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14737,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Bạn sẽ theo dõi người dùng và bảng tin được đề xuất sau khi hoàn tất việc tạo tài khoản!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Bạn sẽ theo dõi người dùng được đề xuất sau khi hoàn tất việc tạo tài khoản!" @@ -14791,7 +14813,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Bạn đã đến cuối bảng tin! Hãy tìm thêm một số tài khoản để theo dõi." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14821,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14837,11 @@ msgstr "Bạn đã đến quá giới hạn tải lên video hàng ngày (quá n msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Bạn đã đến giới hạn tải lên video hàng ngày (quá nhiều video)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Không còn video để xem nữa. Có lẽ đây là thời điểm thích hợp để nghỉ giải lao?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Tài khoản của bạn" @@ -14835,11 +14857,11 @@ msgstr "Tài khoản của bạn đã bị đình chỉ" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tài khoản của bạn chưa đủ tuổi để tải lên video. Vui lòng thử lại sau." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14930,8 +14952,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Mục quan tâm của bạn đã được cập nhật!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Mục quan tâm của bạn giúp chúng tôi tìm những gì bạn thích!" @@ -14967,11 +14989,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "Mật khẩu của bạn phải có ít nhất 8 ký tự." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15014,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 "Hồ sơ, bài đăng, bảng tin, và danh sách của bạn sẽ không còn hiển thị cho người dùng Bluesky khác. Bạn có thể kích hoạt lại tài khoản bất kì lúc nào bằng cách đăng nhập." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15027,7 @@ msgstr "Báo cáo của bạn sẽ được gửi tới <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Mục quan tâm mà bạn chọn giúp chúng tôi đưa nội dung mà bạn quan tâm đến." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index 15f269878f..92d25ea8e1 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: zh\n" +"Language: zh_CN\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "“{interestsDisplayName}”类别(已选中)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(已隐藏屏蔽的信息)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(包含嵌入内容)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(已删除信息)" @@ -54,9 +54,9 @@ msgid "(invalid chat invite link)" msgstr "(无效的对话邀请链接)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" -msgstr "" +msgstr "(你加入之前发送的信息)" #: src/screens/Settings/AccountSettings.tsx:74 msgid "(no email)" @@ -75,7 +75,7 @@ msgstr "(引用帖文)" #. placeholder {0}: labels.length #: src/components/moderation/LabelsOnMe.tsx:57 msgid "{0, plural, one {# account label} other {# account labels}}" -msgstr "{0, plural,one {# 个账户标签}other {# 个账户标签}}" +msgstr "{0, plural,one {# 个账户标记}other {# 个账户标记}}" #. placeholder {0}: diff.value #: src/lib/hooks/useTimeAgo.ts:169 @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# 小时} other {# 小时}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural,one {你的帖文应用了 # 个标记}other {你的帖文应用了 # 个标记}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural,one {已应用 # 个标记} other {已应用 # 个标记}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# 次喜欢} other {# 次喜欢}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural,one {# 个成员}other {# 个成员}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# 条新的加入申请} other {# 条新的加入申请 #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural,one {# 个人} other {# 个人}} 对此做出了 {1} 反应" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{1} {0}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0}(账户)" @@ -251,36 +252,13 @@ msgstr "{0} 已受邀加入对话" msgid "{0} and {1} added to chat" msgstr "{0} 和 {1} 已受邀加入对话" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} 位正在关注" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} 屏蔽了你" @@ -324,14 +302,6 @@ msgstr "{0} 离开了" msgid "{0} left the group" msgstr "{0} 离开了群组" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "已输入 {0} 个字符,最多 50 个字符" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} 作出了 {1} 反应" @@ -380,7 +350,7 @@ msgstr "{0} 已被移除出群组" #. placeholder {0}: link(lang) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:113 msgid "{0}, " -msgstr "" +msgstr "{0}、" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}、{1} 以及{memberCount, plural,one {其他 # 人}other {其他 # 人}}已受邀加入对话" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -531,7 +486,7 @@ msgstr "{estimatedTimeMins, plural, one {分} other {分}}" #: src/screens/Search/components/SearchHistory.tsx:170 msgid "{filterCount, plural, one {+# filter} other {+# filters}}" -msgstr "" +msgstr "{filterCount, plural,one {+# 个筛选条件}other {+# 个筛选条件}}" #: src/view/com/notifications/NotificationFeedItem.tsx:361 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} 对你授予了认证" msgid "{following} following" msgstr "{following} 位正在关注" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "无法添加 {handle}" @@ -698,7 +660,7 @@ msgstr "无法添加 {handle}" msgid "{handle} can't be messaged" msgstr "目前无法向 {handle} 发送信息" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "目前无法向 {handle} 发送信息" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# 条未读通知} other {# 条未读 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {找到了 # 位联系人} other {找到了 # 位联系人}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName}在 {timeAgoString}前加入了 Bluesky" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName}在 {timeAgoString}前使用新手包加入了 Bluesky" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, other {剩余 # 个字符}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} 回复了" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} 回复了 {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} 回复了你" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# 条邀请} other {# 条邀请}}" msgid "{requestCount}+ requests" msgstr "超过 {requestCount} 条邀请" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} 小时前" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} 是可信的认证人" @@ -842,13 +795,13 @@ msgstr "{userName} 的认证" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {正在关注} other {正在关注}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0}{1, plural,one {引用}other {引用}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0}{1, plural,one {转发}other {转发}}" @@ -903,9 +856,9 @@ msgstr "<0>{0}{1, plural,one {收藏}other {收藏}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, other {个喜欢}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2>添加了你" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>登录<1>或<2>创建账户<3><4>即可在 Bluesky 上搜索新闻、体育、政治等正在发生的新鲜事。" @@ -971,7 +924,7 @@ msgstr "30 天" msgid "7 days" msgstr "7 天" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "你可以在 Bluesky 上找到一系列热门动态源,包括 News、Booksky、Game Dev、Blacksky 以及 Fountain Pens" @@ -988,9 +941,11 @@ msgstr "发生了网络错误,请检查你的网络连接" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,9 +959,9 @@ msgstr "已发送新的代码" msgid "A new form of verification" msgstr "全新的认证机制" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" -msgstr "" +msgstr "回复你加入之前发送的信息" #. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "一张帖文编辑器的截图。在发布按钮旁边有一个新的草稿按钮,并带有彩虹烟花效果。编辑区内的文本内容为:“嘿,你听说了吗?Bluesky 现在有草稿功能了!!!”。" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "选择的收信人未被发信人关注。" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "已发送申请!请等待群组所有者同意以加入群组。" msgid "Accessibility" msgstr "无障碍" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "无障碍设置" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "该账户已被列表隐藏" msgid "Account options" msgstr "账户选项" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "已从快速访问中移除该账户" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "带有蓝色扇形外观认证徽章的账户 <0><1/> 可以为其他账户授予认证,这些可信认证人由 Bluesky 官方所挑选。" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "其他人的动态" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "活动通知" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,17 +1183,17 @@ msgstr "添加替代文本(可选)" msgid "Add another account" msgstr "添加其他账户" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "添加另一则帖文" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "添加另一则帖文至帖文串" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" -msgstr "" +msgstr "添加另一个搜索筛选条件" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" @@ -1247,15 +1207,15 @@ msgstr "添加应用密码" #: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" -msgstr "添加自动化标签至此账户" +msgstr "添加自动化标记至此账户" #: src/components/dms/EmojiReactionPicker.web.tsx:31 msgid "Add emoji reaction" msgstr "添加表情符号反应" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" -msgstr "" +msgstr "添加筛选条件" #: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" @@ -1338,7 +1298,7 @@ msgstr "添加到你的动态源" msgid "Add to lists" msgstr "添加至列表" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "添加到帖文收藏" @@ -1400,7 +1360,7 @@ msgstr "色情" msgid "Adult content" msgstr "成人内容" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1447,7 +1407,7 @@ msgstr "只需几分钟即可完成年龄验证" #: src/ageAssurance/components/NoAccessScreen.tsx:449 msgid "Age assurance only takes a few minutes." -msgstr "" +msgstr "只需几分钟即可完成年龄验证。" #: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" @@ -1489,12 +1449,12 @@ msgstr "你的动态源将显示所有语言的内容。" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:245 msgid "All of these words" -msgstr "" +msgstr "包含下列所有文字" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 msgid "All posts" -msgstr "" +msgstr "所有帖文" #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." @@ -1560,7 +1520,7 @@ msgstr "允许读取私人信息" msgid "Already have a code?" msgstr "已经有验证码了?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "已经有账户了?" @@ -1614,7 +1574,7 @@ msgstr "已发送一封电子邮件至 {0}。它包含你需要在下方输入 msgid "An error has occurred" msgstr "发生错误" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "发生错误" @@ -1631,7 +1591,7 @@ msgstr "获取建议账户出错。" msgid "An error occurred while fetching the feed." msgstr "载入动态源时发生错误。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "创建新手包时发生错误,要再试一次吗?" @@ -1640,11 +1600,11 @@ msgstr "创建新手包时发生错误,要再试一次吗?" msgid "An error occurred while hiding suggestion. {0}" msgstr "隐藏建议时发生错误。{0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "播放视频时发生错误,请重试。" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "播放视频时发生错误,请重试。" @@ -1684,7 +1644,7 @@ msgstr "发生错误。{0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "一张图片,显示用户头像从通讯录流向 Bluesky 应用程序" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "包含 Bluesky 的几则帖文插图,旁边还有转发、喜欢和评论图标" @@ -1705,17 +1665,15 @@ msgstr "邀请链接可以让其他人通过链接直接加入群组对话,你 msgid "An issue not included in these options" msgstr "不在这些选项中的问题" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "创建群组对话时出现问题,请重试。" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "开始对话时出现问题,请重试。" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "开启对话时出现问题" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "开始群组对话时出现问题,请重试。" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1766,11 +1724,11 @@ msgstr "为你介绍 Bluesky 上的认证机制" #. Placeholder text for a date picker #: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 msgid "Any date" -msgstr "" +msgstr "任何日期" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "任何人" @@ -1802,7 +1760,7 @@ msgstr "关注我的人" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "任何人都无法再通过此链接加入对话,但你随时可以重新创建链接。" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1829,7 +1787,7 @@ msgstr "应用密码名称不得与现有的重复" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" -msgstr "" +msgstr "应用密码名称只能包含字母、数字、空格、连字符(-)及下划线(_)" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" @@ -1840,7 +1798,7 @@ msgstr "应用密码名称至少应包含 4 个字符" msgid "App passwords" msgstr "应用密码" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "应用密码" @@ -1858,7 +1816,7 @@ msgstr "对“{0}”标记提出申诉" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "申诉标记" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1847,10 @@ msgstr "对此决定提出申诉" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "对此标记提出申诉" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "应用提交变更" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "自 {0} 起被归档" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "已归档帖文" @@ -1926,19 +1884,19 @@ msgstr "你真的确定要继续吗?" #. placeholder {1}: link(languages[1]) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 msgid "Are you searching for posts in {0} or {1}?" -msgstr "" +msgstr "你正在搜索用 {0} 或 {1} 撰写的帖文吗?" #. placeholder {0}: link(languages[0]) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 msgid "Are you searching for posts in {0}?" -msgstr "" +msgstr "你正在搜索用 {0} 撰写的帖文吗?" #. List formatting: {0}, {1}, or {2} #. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) #. placeholder {1}: link(last) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 msgid "Are you searching for posts in {0}or {1}?" -msgstr "" +msgstr "你正在搜索用 {0} 或 {1} 撰写的帖文吗?" #. placeholder {0}: appPassword.name #: src/screens/Settings/AppPasswords.tsx:210 @@ -1980,7 +1938,7 @@ msgstr "你确定要将此从你的动态源中删除吗?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "你确定要撤销加入 {0} 的申请吗?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "你确定要放弃发布这则帖文吗?" @@ -2019,24 +1977,24 @@ msgid "Aurora" msgstr "极光" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "自动化账户" #: src/screens/Login/components/HostingProviderDialog.tsx:165 #: src/screens/Login/components/HostingProviderDialog.tsx:167 msgid "Automatic" -msgstr "" +msgstr "自动" #: src/screens/Settings/AccountSettings.tsx:155 #: src/screens/Settings/AccountSettings.tsx:158 msgid "Automation label" -msgstr "自动化标签" +msgstr "自动化标记" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" -msgstr "自动化标签" +msgstr "自动化标记" #: src/screens/Settings/ContentAndMediaSettings.tsx:118 #: src/screens/Settings/ContentAndMediaSettings.tsx:124 @@ -2050,12 +2008,16 @@ msgstr "自动播放视频及 GIF" msgid "Available" msgstr "可用" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2095,15 +2057,15 @@ msgstr "被禁用户试图绕过封禁" #: src/ageAssurance/components/NoAccessScreen.tsx:184 msgid "Based on your device's location, we think you're in <0>{geolocationString}." -msgstr "" +msgstr "根据你设备提供的位置信息,我们认为你位于<0>{geolocationString}。" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236 msgid "Based on your device's location, we think you're in <0>{region}." -msgstr "" +msgstr "根据你设备提供的位置信息,我们认为你位于<0>{region}。" #: src/ageAssurance/components/NoAccessScreen.tsx:194 msgid "Based on your network, we think you're in <0>{geolocationString}. This estimate may be inaccurate if you're using a VPN." -msgstr "" +msgstr "基于你的网络信息,我们认为你位于 <0>{geolocationString}。如果你正在使用 VPN,此估算结果可能不准确。" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "在你撰写帖文或回复之前,你必须首先验证你的电子邮箱。" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "在创建新手包之前,你必须首先验证你的电子邮箱。" @@ -2135,10 +2097,10 @@ msgstr "在你接收 {name} 的发帖提醒之前,你必须首先验证你的 #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2122,28 @@ msgstr "请填写以下栏位,以开始年龄验证流程。" msgid "Beta Feature" msgstr "测试功能" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "测试功能" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "测试功能已启用" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "测试功能可能不稳定,部分更改可能需要重新加载应用。" #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "测试功能可能不稳定,部分更改可能需要重新启动应用。" #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "出生日期" msgid "Birthday" msgstr "出生日期" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "已被屏蔽" msgid "Blocked accounts" msgstr "已屏蔽账户" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "已屏蔽账户" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "屏蔽该用户不会阻止其继续标记你的账户。" @@ -2301,14 +2269,15 @@ msgstr "博客" #. Advanced search: Examples of hashtags #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:17 msgid "bloomscrolling booksky" -msgstr "" +msgstr "标签搜索" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 无法确认帖文发布时间的真实性。" @@ -2330,7 +2299,7 @@ msgstr "Bluesky 是一个开放的社交网络,你可以自行选择托管服 msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky 是一个开放的社交网络,你可以自行选择托管服务提供商。但如果你是新用户,我们建议你选择默认的 Bluesky Social 选项。" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "与天友们一起,Bluesky 更美好!" @@ -2358,7 +2327,7 @@ msgstr "Bluesky 服务条款" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky 将你的联系人信息编码加密存储,若你删除联系人将会立即删除此数据。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky 将从你的关系网中选择一组推荐关注的账户。" @@ -2425,24 +2394,25 @@ msgstr "在探索页面浏览更多建议" msgid "Browse other feeds" msgstr "浏览其他动态源" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "浏览有关 {displayName} 的帖文" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "浏览带有标签 {displayName} 的帖文" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "浏览新手包 {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "浏览 {0} 话题" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "浏览话题 {displayName}" @@ -2461,8 +2431,8 @@ msgstr "返回到主页时间线的按钮" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "来自 {0}" @@ -2473,9 +2443,9 @@ msgstr "来自 @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "来自 <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "继续创建账户即代表你同意我们的<0>服务条款和<1> msgid "By creating an account you agree to the <0>Terms of Service." msgstr "继续创建账户即代表你同意我们的<0>服务条款。" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "由你创建" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "相机" @@ -2534,7 +2504,7 @@ msgstr "需要相机权限" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "需要相机权限" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,13 +2555,13 @@ msgstr "取消重新启用账户并登出" msgid "Cancel reply" msgstr "取消回复" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "取消搜索" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 msgid "Cancels signing in so you can check your username" -msgstr "" +msgstr "取消登录以便您检查用户名" #: src/components/PostControls/index.tsx:108 #: src/components/PostControls/index.tsx:138 @@ -2620,7 +2590,7 @@ msgstr "标签 {tag}" #. Advanced search: Example of an “all of these words” search. Paired with “cows pigs”. #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 msgid "cats dogs" -msgstr "" +msgstr "猫 狗" #: src/components/Post/Translated/index.tsx:439 #: src/screens/Settings/components/Email2FAToggle.tsx:31 @@ -2649,7 +2619,7 @@ msgstr "更改账户代码" #: src/screens/Login/LoginForm.tsx:644 msgid "Change hosting provider" -msgstr "" +msgstr "更改托管服务提供商" #: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "列表在创建后将是一个独立副本,任何对新手包的更改将不会影响已创建的列表。" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "已隐藏对话" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "无法找到对话。" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "对话选项" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "对话所有者无法离开对话。" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "对话收信人未被发信人关注。" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "对话邀请收件箱" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "对话邀请" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "对话设置" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "已取消隐藏对话" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "对话" @@ -2810,7 +2781,7 @@ msgstr "请在下方输入发送到你电子邮箱 <0>{currentEmail} 的验 #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "请过段时间再来查看!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "选择验证域名的方式" msgid "Choose Feeds" msgstr "选择动态源" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "帮我选择" @@ -2854,7 +2825,7 @@ msgstr "选择用户" msgid "Choose post languages" msgstr "选择帖文语言" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "选择此颜色作为你的头像背景" @@ -2869,7 +2840,7 @@ msgstr "选择要邀请的人" #: src/components/dialogs/ServerInput.tsx:134 #: src/screens/Login/components/HostingProviderDialog.tsx:155 msgid "Choose your hosting provider" -msgstr "" +msgstr "选择你的托管服务提供商" #: src/view/screens/Feeds.tsx:726 msgid "Choose your own timeline! Feeds built by the community help you find content you love." @@ -2879,7 +2850,7 @@ msgstr "自定义专属于你的时间线!由社群打造的动态源能帮助 msgid "Choose your password" msgstr "设置你的密码" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "设置你的用户名" @@ -2887,7 +2858,7 @@ msgstr "设置你的用户名" #: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.tsx:110 #: src/screens/Search/components/AdvancedSearchDialog/ClearableInput.tsx:59 msgid "Clear" -msgstr "" +msgstr "清除" #: src/screens/Settings/Settings.tsx:507 msgid "Clear all storage data" @@ -2899,7 +2870,7 @@ msgstr "清除所有数据(并重新启动应用)" #: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:70 msgid "Clear date" -msgstr "" +msgstr "清除日期" #. Accessibility label for the X button inside the search input that clears the typed query and returns to the trending feed. #: src/features/gifPicker/components/GifPickerHeader.tsx:67 @@ -2966,7 +2937,7 @@ msgstr "点击此处以查看此群组对话的邀请链接" msgid "Click to open tag menu for {0}" msgstr "点按以开启 {0} 的标签菜单" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "点击以重试发送信息" @@ -3003,7 +2974,7 @@ msgstr "点击以重试发送信息" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "点击以重试发送信息" msgid "Close" msgstr "关闭" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "关闭活动对话框" @@ -3047,7 +3018,7 @@ msgstr "关闭横幅" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "关闭图片查看器" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "关闭菜单" @@ -3090,7 +3061,7 @@ msgstr "关闭加入申请通知横幅" msgid "Close this dialog" msgstr "关闭此窗口" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "关闭欢迎界面" @@ -3098,7 +3069,7 @@ msgstr "关闭欢迎界面" msgid "Closes password update alert" msgstr "关闭密码更新警告" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "关闭编辑器并舍弃草稿" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "颜色" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "主题模式" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "漫画" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "社群准则" @@ -3141,7 +3112,7 @@ msgstr "社群准则" msgid "Complete onboarding and start using your account" msgstr "完成入门引导并开始使用你的账户" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "完成验证" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "撰写新帖文" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "撰写最多 {0, plural,other {# 个字符}} 的帖文" @@ -3160,11 +3131,11 @@ msgstr "撰写最多 {0, plural,other {# 个字符}} 的帖文" msgid "Compose reply" msgstr "撰写回复" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "正在压缩 GIF……" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "正在压缩视频……" @@ -3199,12 +3170,12 @@ msgstr "正在连接到服务……" #: src/screens/Login/LoginForm.tsx:542 msgid "Connecting to service…" -msgstr "" +msgstr "正在连接到服务……" #: src/screens/Login/ForgotPasswordForm.tsx:138 #: src/screens/Login/LoginForm.tsx:548 msgid "Connecting…" -msgstr "" +msgstr "连接中……" #: src/ageAssurance/components/RedirectOverlay.tsx:297 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "联系我们的支持团队" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "联系支持" @@ -3253,7 +3224,7 @@ msgstr "内容与媒体" msgid "Content and media" msgstr "内容与媒体" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "内容与媒体" @@ -3265,10 +3236,6 @@ msgstr "已屏蔽该内容" msgid "Content filters" msgstr "内容过滤器" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "我们从网络的各个角落精选出了你可能会感兴趣的内容。" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "内容语言" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "宣扬或提倡自残内容" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "内容警告" msgid "Content warnings" msgstr "内容警告" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "上下文菜单背景,点击以关闭菜单。" @@ -3302,7 +3269,7 @@ msgstr "上下文菜单背景,点击以关闭菜单。" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3315,7 +3282,7 @@ msgstr "以 {0} 的身份继续(当前已登录)" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 msgid "Continue signing in" -msgstr "" +msgstr "继续登录" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "加载更多帖文串……" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "继续设置群组名称" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,15 +3335,15 @@ msgstr "找不到对话。" msgid "Copied build version to clipboard" msgstr "已复制构建版本号至剪贴板" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" -msgstr "" +msgstr "已将链接复制至剪贴板" #: src/components/dms/ChatInvite/Root.tsx:99 #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "复制应用密码" msgid "Copy at:// URI" msgstr "复制 at:// 链接" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "复制发布者 DID" @@ -3449,10 +3416,10 @@ msgstr "复制链接" msgid "Copy link to list" msgstr "复制列表链接" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "复制帖文链接" @@ -3470,8 +3437,8 @@ msgstr "复制新手包链接" msgid "Copy message text" msgstr "复制信息文本" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "复制帖文 at:// 链接" @@ -3490,7 +3457,7 @@ msgstr "复制 TXT 记录值" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "版权许可" @@ -3540,11 +3507,11 @@ msgstr "无法关注所有匹配的联系人。{0}" msgid "Could not leave chat" msgstr "无法离开对话" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "无法离开对话。" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "无法加载动态源" @@ -3562,7 +3529,7 @@ msgstr "无法加载资料" msgid "Could not mute chat" msgstr "无法隐藏对话" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "无法移除成员。" @@ -3600,14 +3567,14 @@ msgstr "国家代码" #. Advanced search: Example of a “none of these words” search. Paired with “cats dogs”. #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 msgid "cows pigs" -msgstr "" +msgstr "牛 猪" #. Text on button to create a new starter pack #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "创建" @@ -3624,26 +3591,26 @@ msgstr "从新手包创建列表" msgid "Create a QR code for a starter pack" msgstr "为新手包创建二维码" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "创建新手包" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "创建新手包" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "为我创建新手包" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "创建账户" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "创建一个账户" @@ -3666,15 +3633,15 @@ msgstr "创建一个账户" msgid "Create an account without using this starter pack" msgstr "不使用此新手包注册账号" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "创建一个头像" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "再创建一个" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "创建群组对话" @@ -3741,9 +3708,9 @@ msgstr "文化" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "当前测试功能" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "当前对话" @@ -3770,8 +3737,8 @@ msgstr "危险物质或药物滥用" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "深色" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "深色" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "深色模式" @@ -3814,7 +3781,7 @@ msgstr "忽略此建议语言" msgid "Deepfake adult content" msgstr "深度伪造成人内容" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "默认" @@ -3894,7 +3861,7 @@ msgstr "删除我的账户" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "删除帖文" @@ -3986,9 +3953,9 @@ msgstr "对话框:调整哪些人可以参与这则帖文的互动" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 msgid "Dialog: Set search filters" -msgstr "" +msgstr "对话框:设置搜索筛选条件" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "昏暗" @@ -4002,7 +3969,7 @@ msgstr "停用" msgid "Disable 2FA" msgstr "停用两步验证" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "关闭字幕" @@ -4045,9 +4012,9 @@ msgstr "停用" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "舍弃" msgid "Discard changes?" msgstr "要放弃更改吗?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "要舍弃草稿吗?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "要放弃发布吗?" @@ -4079,6 +4046,10 @@ msgstr "已断开与 Germ DM 的连接" msgid "Discourage apps from showing my account to logged-out users" msgstr "阻止平台向未登录用户显示我的账户" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "探索动态源" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "阻止平台向未登录用户显示我的账户" msgid "Discover new custom feeds" msgstr "探索新的自定义动态源" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "探索新的动态源" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "探索新的动态源" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "跳过" @@ -4103,19 +4070,19 @@ msgstr "跳过" msgid "Dismiss banner" msgstr "忽略横幅提示" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "忽略错误" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "跳过入门指南" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "忽略兴趣" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "关闭直播活动横幅" @@ -4142,7 +4109,7 @@ msgstr "显示更大的替代文本标签" msgid "Display name" msgstr "名称" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "告别网络喷子和标题党,找到你真正在意的人和感兴趣的对话。" @@ -4205,8 +4172,8 @@ msgstr "别担心!你现有的对话及设置都已保存,只需验证你已 #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "别担心!你现有的对话及设置都已保存,只需验证你已 msgid "Done" msgstr "完成" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "双击或长按信息以添加反应" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "双击以关闭对话框" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "双击以点赞" @@ -4328,6 +4295,7 @@ msgstr "进食障碍" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "编辑图片" msgid "Edit interaction settings" msgstr "编辑互动选项" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "编辑兴趣" @@ -4397,7 +4365,7 @@ msgstr "编辑直播状态" msgid "Edit moderation list" msgstr "编辑内容审核列表" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "编辑我的动态源" @@ -4406,6 +4374,11 @@ msgstr "编辑我的动态源" msgid "Edit name" msgstr "编辑名称" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "编辑来自 {0} 的通知" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "编辑用户" @@ -4444,7 +4417,7 @@ msgstr "编辑用户列表" msgid "Edit who can reply" msgstr "编辑哪些人可以回复" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "编辑你的新手包" @@ -4500,8 +4473,8 @@ msgstr "嵌入 HTML 代码" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "嵌入帖文" @@ -4509,7 +4482,7 @@ msgstr "嵌入帖文" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "将这则帖文嵌入到你的网站。只需复制以下代码片段,并将其插入到你网站的 HTML 代码中的合适位置即可。" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "嵌入式视频播放器" @@ -4531,9 +4504,9 @@ msgstr "启用成人内容显示" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "启用测试功能" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "开启字幕" @@ -4550,12 +4523,13 @@ msgstr "启用外部媒体" msgid "Enable media players for" msgstr "启用媒体播放器" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "转到其个人主页,点击 <0>提醒图标 即可接收该账户的动态提醒<1/>。" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "启用推送通知" @@ -4581,7 +4555,7 @@ msgstr "在你的“Discover”动态源中启用热门视频" msgid "Enabled" msgstr "启用" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "已浏览到末尾" @@ -4608,7 +4582,7 @@ msgstr "输入字词或标签" msgid "Enter code" msgstr "输入验证码" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "进入全屏模式" @@ -4650,11 +4624,11 @@ msgstr "输入你的用户名和密码" msgid "Enters full screen" msgstr "进入全屏模式" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "娱乐" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "错误" @@ -4684,7 +4658,7 @@ msgstr "保存文件时发生错误" msgid "Error receiving captcha response." msgstr "CAPTCHA(人机验证)响应错误。" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "错误:{error}" @@ -4696,8 +4670,8 @@ msgstr "任何人都可以回复" msgid "Everybody can reply to this post." msgstr "任何人都可以回复这则帖文。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "所有人" @@ -4711,14 +4685,14 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "其他内容" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 msgid "Everything look right?" -msgstr "" +msgstr "一切看起来都正确吗?" #. Advanced search filter #. Advanced search filter @@ -4728,7 +4702,7 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 msgid "Exclude" -msgstr "" +msgstr "排除" #: src/components/dialogs/MutedWords.tsx:320 msgid "Exclude users you follow" @@ -4738,7 +4712,7 @@ msgstr "排除你已关注的用户" msgid "Excludes users you follow" msgstr "排除你已关注的用户" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "退出全屏模式" @@ -4755,11 +4729,11 @@ msgstr "展开用户列表" msgid "Expand or collapse the full post you are replying to" msgstr "展开或折叠你正在回复的完整帖文" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "展开帖文文本" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "展开或折叠帖文文本" @@ -4802,15 +4776,15 @@ msgstr "血腥、露骨或其他可能引起不适的媒体内容。" msgid "Explicit sexual images." msgstr "露骨的色情图片。" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "探索" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "探索应用" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "外部媒体偏好设置" @@ -4886,7 +4860,7 @@ msgstr "无法更改账户代码,请重试。" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "无法复制链接" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "无法离开群组对话" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "无法加载对话" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "无法加载动态源" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "无法加载动态源偏好设置" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "无法加载通知设置。" @@ -5012,14 +4987,14 @@ msgstr "无法加载首选项。" msgid "Failed to load profiles" msgstr "无法加载个人资料" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "无法加载建议的动态源" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "无法加载建议关注" @@ -5027,12 +5002,12 @@ msgstr "无法加载建议关注" msgid "Failed to lock group chat" msgstr "无法锁定群组对话" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "无法将所有对话标记为已读" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "无法撤销你的申请,请重试。" msgid "Failed to resolve location. Please try again." msgstr "无法获取位置信息,请重试。" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "无法保存草稿" @@ -5191,7 +5166,7 @@ msgstr "虚假账户或机器人" msgid "False information about elections" msgstr "散布选举相关虚假信息" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "动态源" @@ -5212,7 +5187,7 @@ msgstr "动态源创建者" msgid "Feed identifier" msgstr "动态源标识符" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "动态源菜单" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "已提交反馈给动态源维护者" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "已更新动态源!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "我们认为你可能会喜欢的动态源。" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "获取更新" @@ -5273,21 +5244,21 @@ msgstr "获取更新" msgid "File saved successfully!" msgstr "已成功保存文件!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" -msgstr "" +msgstr "依发布者筛选" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" -msgstr "" +msgstr "依发布者筛选(目前:{currentLabel})" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 msgid "Filter by media" -msgstr "" +msgstr "依媒体筛选" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 msgid "Filter by media (currently: {currentLabel})" -msgstr "" +msgstr "依媒体筛选(目前:{currentLabel})" #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" @@ -5304,13 +5275,13 @@ msgstr "按语言过滤搜索(当前:{currentLanguageLabel})" #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" -msgstr "" +msgstr "以 {0} 筛选此搜索结果" #: src/screens/Settings/ActivityPrivacySettings.tsx:106 msgid "Filter who can opt to receive notifications for your activity" msgstr "筛选谁可以选择接收你的动态提醒" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "筛选你想接收的通知来源" @@ -5318,7 +5289,7 @@ msgstr "筛选你想接收的通知来源" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "筛选器" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5323,8 @@ msgstr "去关注更多账户" msgid "Find and invite friends" msgstr "寻找并邀请朋友" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "寻找联系人" @@ -5387,7 +5358,7 @@ msgstr "寻找你的朋友" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "通过验证你的电话号码并与你的通讯录匹配,即可找到正在使用 Bluesky 的朋友。我们严格保护你的数据信息,你可随时掌握后续任何操作。<0>了解更多" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "找到志同道合的人" @@ -5429,7 +5400,7 @@ msgstr "聚焦搜索栏" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "关注 {0}" msgid "Follow {displayName}" msgstr "关注 {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "关注 {handle}" @@ -5453,11 +5424,11 @@ msgstr "关注 {handle}" msgid "Follow 10 accounts" msgstr "关注 10 个账户" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "关注 10 个人以开始" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "关注 7 个账户" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "关注者可以加入" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "你认识的这些人也关注了 @{0}" @@ -5544,7 +5515,7 @@ msgstr "你认识的关注者" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "已关注 {0}" msgid "Following {displayName}" msgstr "正在关注 {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "已关注 {handle}" @@ -5578,21 +5549,21 @@ msgstr "已关注 {handle}" msgid "Following feed preferences" msgstr "“Following”动态源偏好设置" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "“Following”动态源偏好设置" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "关注了你" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "字体" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "字体大小" @@ -5612,13 +5583,13 @@ msgstr "出于安全原因,我们将发送验证码到你的电子邮箱地址 msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "出于安全原因,你将无法再次查看此应用密码。若你忘记了此密码,则需重新生成。" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "我们建议你使用主题字体,以获得最佳使用体验。" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "为你推荐" @@ -5628,7 +5599,7 @@ msgstr "为你推荐" msgid "Forever" msgstr "永久" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "忘记那些无止尽的骚扰" @@ -5647,18 +5618,20 @@ msgstr "忘记密码?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "四个代表群聊的聊天气泡。第一条信息:“你听说了吗?Bluesky 现在有群组对话功能了!”,第二条信息:“天呐”,第三条信息:“厉害了,一个对话里有50个人!”,第四条消息:“你也可以发送邀请链接!”" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "还你一个干净的时间线" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "发自" #: src/screens/Hashtag.tsx:123 msgid "From {sanitizedAuthor}" -msgstr "" +msgstr "来自 {sanitizedAuthor}" #: src/screens/Hashtag.tsx:124 msgid "From @{sanitizedAuthor}" @@ -5672,9 +5645,9 @@ msgstr "来自 <0/>" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 msgid "From these people" -msgstr "" +msgstr "来自这些人" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "创建一个新手包" @@ -5712,45 +5685,45 @@ msgstr "重新连接 Germ DM" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features we’re testing." -msgstr "" +msgstr "抢先体验我们正在测试的功能。" #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "获取帮助" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "当有人通过你的新手包加入、账户验证或其他状态更新时收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "当有人关注你时收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "当有人喜欢了你的帖文时收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "当有人喜欢了你转发的帖文时收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "当有人提及你时收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "当有人引用了你的帖文时收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "当有人回复了你的帖文时收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "当有人转发了你的帖文时收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "当有人转发了你转发的帖文时收到通知。" @@ -5762,15 +5735,15 @@ msgstr "当有人向你发送信息请求时收到通知。" msgid "Get notifications when people send you messages." msgstr "当有人向你发送信息时收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "当你订阅的帖文有状态更新时收到通知。" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "当其发布新帖文时收到提醒" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "当你选择的账户发布新帖文或回复时收到提醒。" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "当 {name} 发布新帖文时收到提醒" @@ -5799,11 +5772,11 @@ msgstr "开始吧" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "已上传 GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "为你的个人资料选择头像" @@ -5813,20 +5786,20 @@ msgstr "颂扬暴力" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5849,9 @@ msgid "Go live for" msgstr "直播时长" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "转到 {0} 的个人资料" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "已更新群组对话名称" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "群组对话设置" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "群组对话最多只能拥有 {0, plural,other {# 名成员}}。" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "群组已锁定" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "群组名称" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "群组名称太长,{MAX_GROUP_NAME_GRAPHEME_LENGTH, plural,other {不能超过 # 个字符。}}" @@ -6077,7 +6051,7 @@ msgstr "有害或高风险活动" msgid "Harming or endangering minors" msgstr "伤害或危及未成年人安全" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "标签" @@ -6098,7 +6072,7 @@ msgstr "已经有验证码了?<0>点击这里。" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "位置信息判断有误?<0>点击此处来通过 GPS 更新你所在的位置。" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "遇到问题了吗?" @@ -6114,7 +6088,7 @@ msgstr "由 Bluesky 保留 7 天以防止滥用,并在之后删除" msgid "Help" msgstr "帮助" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "通过上传图片或生成头像,来让大家知道你不是机器人。" @@ -6140,7 +6114,7 @@ msgstr "嗨!" msgid "Hidden" msgstr "隐藏" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "由你的内容审核设置所隐藏。" @@ -6148,9 +6122,9 @@ msgstr "由你的内容审核设置所隐藏。" msgid "Hidden list" msgstr "隐藏列表" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "隐藏列表" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "隐藏" @@ -6181,7 +6155,7 @@ msgstr "隐藏列表" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "隐藏密码" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6172,7 @@ msgstr "为所有人隐藏回复" msgid "Hide reply for me" msgstr "仅为我隐藏回复" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "隐藏这张卡片" @@ -6218,12 +6192,12 @@ msgstr "要隐藏这则回复吗?" msgid "Hide translation" msgstr "隐藏翻译" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "隐藏热门话题" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "要隐藏热门话题吗?" @@ -6240,7 +6214,7 @@ msgstr "隐藏用户列表" msgid "Hide verification badges" msgstr "隐藏认证徽章" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "隐藏内容" @@ -6255,11 +6229,11 @@ msgstr "抱歉,你似乎正在使用<0>应用密码登录。如需更改 #: src/ageAssurance/useVerificationFlow.ts:122 msgid "Hmm, it seems we weren't able to compute your level of access. Please try again." -msgstr "" +msgstr "抱歉,我们无法确认你的访问权限,请再试一次。" #: src/ageAssurance/useVerificationFlow.ts:141 msgid "Hmm, it seems your device was unable to share age information with us." -msgstr "" +msgstr "抱歉,你的设备似乎不支持报告年龄信息。" #: src/view/com/posts/PostFeedErrorMessage.tsx:125 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." @@ -6293,8 +6267,8 @@ msgstr "抱歉,我们无法加载该内容审核提供服务方。" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "请稍等!我们正在逐步开放上传视频的权限。你目前仍在等待队伍中,请稍后再回来查看!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6315,15 +6289,11 @@ msgstr "托管服务提供商" #. placeholder {0}: toNiceHostingUrl(state.pdsUrl) #: src/screens/Login/LoginForm.tsx:655 msgid "Hosting provider: {0}" -msgstr "" +msgstr "托管服务提供商:{0}" #: src/screens/Login/LoginForm.tsx:657 msgid "Hosting provider: Bluesky" -msgstr "" - -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "热门" +msgstr "托管服务提供商:Bluesky" #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" @@ -6409,6 +6379,7 @@ msgstr "如果你更新电子邮箱地址,电子邮箱两步验证将会停用 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "如果你想要更改密码,我们将发送验证码到你的电子邮箱地址,以验证这是你的账户。" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "如果你想限制其他人接收你账户的动态提醒,可以转到<0>设置 → 隐私与安全更改允许范围。" @@ -6548,7 +6519,7 @@ msgstr "应用内、系统推送、所有人" msgid "In-app, push, people you follow" msgstr "应用内、系统推送、你关注的人" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "收件箱为空" @@ -6560,36 +6531,37 @@ msgstr "收件箱清空啦!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" -msgstr "" +msgstr "包含" #. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 msgid "Include or exclude matching posts (currently: {0})" -msgstr "" +msgstr "包含或排除符合的帖文(目前:{0})" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 msgid "Include posts and/or replies (currently: {currentLabel})" -msgstr "" +msgstr "包含帖文和/或回复(当前:{currentLabel})" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 msgid "Include posts made since this date" -msgstr "" +msgstr "包含自此日期之后发布的帖文" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 msgid "Include posts made until this date" -msgstr "" +msgstr "包含自此日期之前发布的帖文" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 msgid "Include these results" -msgstr "" +msgstr "包含这些结果" #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "现在只有你一个!通过上面的列表将更多人添加到你的新手包里面。" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "作业 ID:{0}" @@ -6816,8 +6788,8 @@ msgstr "加入对话" msgid "Journalism" msgstr "新闻学" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "保留编辑内容" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS 官网" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "由 {0} 标记。" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "由发布者标记。" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "标记" @@ -6850,9 +6822,9 @@ msgstr "已添加标记" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "应用到此帖文的标记" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "标记可用于隐藏特定内容、显示警告或分类用户和内容。" @@ -6862,9 +6834,9 @@ msgstr "你账户上的标记" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 msgid "Language" -msgstr "" +msgstr "语言" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "语言设置" @@ -6874,7 +6846,7 @@ msgstr "语言设置" msgid "Languages" msgstr "语言" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "更大" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "最后一次请求于不久前" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "最新" @@ -6904,14 +6876,14 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "了解详情(英文)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "了解详情" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." -msgstr "" +msgstr "进一步了解<0>如何使用高级搜索。" #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 msgid "Learn more about age assurance" @@ -6937,8 +6909,8 @@ msgstr "了解更多导入通讯录功能" msgid "Learn more about self hosting your PDS." msgstr "深入了解有关自行托管 PDS 的信息。" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "深入了解有关应用于该内容的内容审核信息" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "你可以阅读我们的博客文章,了解有关改动的更多资讯,以及如何与我们分享你的想法。" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "深入了解有关此警告的信息" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "在你的<0>账户设置了解详情" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "了解详情。" @@ -6993,8 +6965,8 @@ msgstr "离开" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "离开 Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "离开此对话将触发永久锁定,你将无法重新加入。" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "离开群组对话。" @@ -7042,7 +7014,7 @@ msgstr "离开群组对话。" msgid "left to go." msgstr "个人排在你前面。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "自定义" @@ -7057,7 +7029,7 @@ msgstr "让我们开始吧!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "浅色" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "浅色" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "喜欢" @@ -7076,7 +7048,7 @@ msgstr "喜欢" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "喜欢({0, plural, one {# 次喜欢} other {# 次喜欢}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "喜欢 10 则帖文" @@ -7085,7 +7057,7 @@ msgstr "喜欢 10 则帖文" msgid "Like 10 posts to train the Discover feed" msgstr "喜欢 10 则帖文以训练“Discover”资讯源" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "喜欢此动态源" @@ -7093,8 +7065,8 @@ msgstr "喜欢此动态源" msgid "Like this labeler" msgstr "喜欢此标记者" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "喜欢的用户" @@ -7111,27 +7083,45 @@ msgstr "喜欢的用户" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# 位用户} other {# 位用户}}喜欢" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "被 {0} 喜欢" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "被 {0} 及 {1} 喜欢" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# 位用户} other {# 位用户}}喜欢" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "喜欢" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "喜欢你转发的帖文" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "这则帖文的喜欢数" @@ -7144,7 +7134,7 @@ msgstr "线性视图" msgid "Link copied to clipboard" msgstr "已复制链接至剪贴板" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "列表" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "已取消隐藏该列表" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "直播" msgid "Live event happening now: {0}" msgstr "正在进行的直播活动:{0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "已隐藏直播活动" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "已取消隐藏直播活动" @@ -7279,12 +7269,12 @@ msgstr "直播功能正在测试阶段" msgid "Live link" msgstr "直播链接" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "加载更多" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "加载更多建议的动态源" @@ -7292,8 +7282,8 @@ msgstr "加载更多建议的动态源" msgid "Load new notifications" msgstr "加载更多通知" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "锁定此群组对话" msgid "Locked" msgstr "已锁定" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "日志" @@ -7387,7 +7377,7 @@ msgstr "爱情 GIFs" msgid "Make adjustments to email settings for your account" msgstr "调整你账户关联的电子邮箱设置" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "帮我选择" @@ -7411,22 +7401,22 @@ msgstr "管理你的隐藏字词和标签" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "手动" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "标记所有为已读" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "将所有对话标记为已读" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "标记为已读" msgid "Marked all as read" msgstr "已标记所有为已读" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "已将所有对话标记为已读" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "已将所有申请标记为已读" @@ -7456,8 +7446,12 @@ msgstr "已将所有申请标记为已读" msgid "Maybe later" msgstr "之后再说" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "我" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "媒体" @@ -7475,7 +7469,7 @@ msgstr "媒体文件已存储到其他设备" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "可能会令部分受众不安或造成不适的媒体内容。" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "已从群组对话中移除成员。" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "被提及的用户" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "提及" @@ -7502,7 +7496,7 @@ msgstr "提及" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 msgid "Mentions of these people" -msgstr "" +msgstr "提及这些用户" #: src/components/Menu/index.tsx:119 msgid "Menu" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "已删除信息" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "信息发送失败。" @@ -7563,15 +7557,15 @@ msgstr "信息过长({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "信息选项" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "信息" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "当此用户屏蔽你时,其发送的信息将会隐藏。" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "当你屏蔽此用户时,其发送的信息将会隐藏。" @@ -7592,7 +7586,7 @@ msgstr "误导" msgid "Missing media" msgstr "缺失媒体文件" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "内容审核" @@ -7636,7 +7630,7 @@ msgstr "已更新内容审核列表" msgid "Moderation lists" msgstr "内容审核列表" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "内容审核列表" @@ -7645,7 +7639,7 @@ msgstr "内容审核列表" msgid "moderation settings" msgstr "内容审核设置" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "内容审核状态" @@ -7786,7 +7780,7 @@ msgstr "已隐藏" msgid "Muted accounts" msgstr "已隐藏账户" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "已隐藏账户" @@ -7867,7 +7861,6 @@ msgstr "需要举报侵害版权、法律要求及合规性问题吗?" msgid "Nevermind, create a handle for me" msgstr "不用了,请帮我创建一个账户代码" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "最新" @@ -7893,11 +7886,11 @@ msgstr "来自 {firstAuthorName} 的新{postsCount, plural, one {帖文} other { #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "新对话" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "新功能" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "新关注者" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "创建群组对话" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "创建群组对话" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "与这些人开始群组对话:" @@ -7966,13 +7959,13 @@ msgstr "新列表" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "新信息申请" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "新信息" @@ -7982,12 +7975,12 @@ msgstr "新信息" msgid "New password" msgstr "新密码" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "新帖文" @@ -8011,7 +8004,7 @@ msgstr "创建新手包" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "初来乍到 Bluesky?<0>注册" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "最新回复优先" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "新闻" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "下一张图片" msgid "Night" msgstr "夜晚" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "无广告,无侵入式追踪,更没有成瘾性设计。Bluesky 充分尊重你宝贵的时间与注意力。" @@ -8067,7 +8060,7 @@ msgstr "目前还没有应用密码" #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "目前没有测试功能。" #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8091,7 @@ msgstr "未设置到期时间" msgid "No feeds found. Try searching for something else." msgstr "找不到动态源,尝试搜索点别的。" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "目前还没有关注者" @@ -8118,7 +8111,7 @@ msgstr "没有图片" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "目前还没有喜欢" @@ -8135,7 +8128,7 @@ msgstr "没有列表" msgid "No longer following {0}" msgstr "已不再关注 {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "目前还没有媒体内容" @@ -8143,7 +8136,7 @@ msgstr "目前还没有媒体内容" msgid "No messages yet" msgstr "目前还没有信息" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "告别那些充斥着垃圾信息的算法,找到对你有利而非有害的动态源。" @@ -8184,12 +8177,12 @@ msgstr "没有人可以发送信息" msgid "No posts here" msgstr "目前这里还没有帖文" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "目前还没有帖文" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "目前还没有引用" @@ -8200,9 +8193,9 @@ msgstr "暂无最近使用的 GIF,尝试使用一些 GIF 吧。" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 msgid "No replies" -msgstr "" +msgstr "没有回复" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "目前还没有回复" @@ -8217,13 +8210,13 @@ msgstr "没有结果" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "没有结果" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "找不到符合“{0}”的结果。" @@ -8236,23 +8229,23 @@ msgstr "找不到结果" msgid "No results found for \"{query}\"" msgstr "找不到符合“{query}”的结果" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." -msgstr "" +msgstr "应用高级搜索筛选器后,未找到匹配“<0>{query}”的结果。" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "找不到符合 “<0>{query}” 的结果。" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." -msgstr "" +msgstr "应用高级搜索筛选后,未找到匹配的结果。" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "没有结果。" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "目前还没有新手包" @@ -8265,7 +8258,7 @@ msgstr "不,谢谢" msgid "No translation received from your device." msgstr "无法从你的设备获取到翻译结果。" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "目前还没有视频帖文" @@ -8278,7 +8271,7 @@ msgstr "没有人" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "目前还没有人喜欢这则帖文,或许你可以来当第一个哦!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "目前还没有人引用这则帖文,或许你可以来当第一个哦!" @@ -8298,10 +8291,14 @@ msgstr "非自愿的亲密视频" msgid "Non-sexual Nudity" msgstr "非色情裸露" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "无" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" -msgstr "" +msgstr "不包含这些字词" #: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 msgid "Not available on this platform" @@ -8316,8 +8313,8 @@ msgstr "此功能无法在这个平台上使用。" msgid "Not followed by anyone you’re following" msgstr "没有被任何你认识的人关注" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "找不到" @@ -8333,7 +8330,7 @@ msgstr "分享注意事项" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注意:Bluesky 是一个开放的社交网络。此设置仅限制你的内容在 Bluesky 应用及网页上的可见性,但第三方应用未必会遵从此设置,仍可能会向未登录的用户显示你发布的内容。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "注:这则帖文仅对已登录用户可见。" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "目前没有收藏内容" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "通知设置" @@ -8353,11 +8350,12 @@ msgstr "通知设置" msgid "Notification sounds" msgstr "通知提示音" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "糟糕!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "好的" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "好的" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "重新开始入门引导" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "选择的收信人中有人不允许群组对话。" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "选择的收信人中有人屏蔽了你,无法发送信息。" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "至少有一张 GIF 缺失了替代文本。" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "至少有一张图片缺失了替代文本。" @@ -8454,11 +8454,11 @@ msgstr "你所选中的部分文件格式不被支持。" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "你选中的部分文件太大,最大的文件大小为 {VIDEO_MAX_SIZE_MB} MB。" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "一则或多则帖文内容过长,无法保存为草稿{MAX_DRAFT_GRAPHEME_LENGTH, plural,one {最大字数限制为 # 个字符。}other {最大字数限制为 # 个字符。}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "至少有一段视频缺失了替代文本。" @@ -8471,7 +8471,7 @@ msgstr "仅限{0}可以回复。" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "你共上传了 {1} 张图片,我们仅会保留前 {0} {2, plural,one {张} other {张}};上限为 {MAX_GALLERY_IMAGES}" @@ -8509,17 +8509,17 @@ msgstr "只有群组所有者关注的人可以加入" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" -msgstr "" +msgstr "仅包含带有媒体的帖文" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 msgid "Only posts with videos" -msgstr "" +msgstr "仅包含带有视频的帖文" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 msgid "Only replies" -msgstr "" +msgstr "仅包含回复" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "仅支持 WebVTT(.vtt)格式" @@ -8532,19 +8532,19 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "哎呀,此资料不存在,请尝试扫描另一个。" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "糟糕!" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 msgid "Open advanced search options" -msgstr "" +msgstr "开启高级搜索选项" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "开启头像创建工具" @@ -8570,21 +8570,22 @@ msgstr "开启对话选项" msgid "Open draft" msgstr "开启草稿" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "开启抽屉菜单" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "开启表情符号选择器" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "开启动态源详情页面" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "开启动态源选项菜单" @@ -8627,7 +8628,7 @@ msgstr "开启内容审核调试页面" msgid "Open muted words and tags settings" msgstr "开启隐藏字词和标签设置" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "开启新手包" @@ -8681,7 +8682,7 @@ msgstr "开启对话框以向你的帖文内容添加警告" #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "打开对话框以更改你登录的托管服务提供商" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8700,7 @@ msgstr "开启调试记录的额外详细信息" msgid "Opens alt text dialog" msgstr "打开替代文本对话框" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "开启设备相机" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "开启创建新 Bluesky 账户流程" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "开启登录到你现有的 Bluesky 账户流程" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "已更新密码!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "暂停" @@ -8925,12 +8926,12 @@ msgstr "暂停" msgid "Pause GIF" msgstr "暂停 GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "暂停视频" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "用户" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName} 的关注者可以申请加入" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "被 @{0} 关注的用户" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "关注 @{0} 的用户" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "我关注的人" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "我关注的人可以申请加入" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "你关注的人" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "不适合未成年人的图片。" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "固定动态源" @@ -9034,7 +9035,7 @@ msgstr "固定动态源" msgid "Pin to home" msgstr "固定到主页" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "固定到主页" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "已固定" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "固定 {0} 到主页" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "已固定到你的动态源中" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "播放" @@ -9076,8 +9077,8 @@ msgstr "播放 {0}" msgid "Play GIF" msgstr "播放 GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "播放视频" @@ -9103,7 +9104,7 @@ msgstr "播放视频" #: src/view/com/composer/labels/LabelsBtn.tsx:111 msgid "Please add any content warning labels that are applicable for the media you are posting." -msgstr "请为你所发布的媒体内容添加适当的内容警告标签。" +msgstr "请为你所发布的媒体内容添加适当的内容警告标记。" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189 msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "请在以下栏位填写你的信息:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "政治" @@ -9269,7 +9270,7 @@ msgstr "政治" msgid "Porn" msgstr "色情" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "发布" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "帖文" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "发布一张图片" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "发布一段视频" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "全部发布" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "仍然发布" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "帖文已被屏蔽" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} 的帖文" @@ -9340,7 +9341,7 @@ msgstr "你已隐藏这则帖文" msgid "Post interaction settings" msgstr "帖文互动选项" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "帖文互动选项" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "已固定帖文" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "已收藏帖文" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,14 +9378,15 @@ msgstr "已取消固定帖文" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "帖文" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 msgid "Posts and replies" -msgstr "" +msgstr "帖文及回复" #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." @@ -9398,6 +9396,10 @@ msgstr "可以根据文本、标签或结合两者来隐藏帖文。我们建议 msgid "Posts hidden" msgstr "已隐藏帖文" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "帖文、回复" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "潜在误导性链接" @@ -9449,20 +9451,21 @@ msgstr "隐私" msgid "Privacy and security" msgstr "隐私与安全" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "隐私与安全" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "隐私与安全设置" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "隐私政策" msgid "Privacy violation of a minor" msgstr "侵犯未成年隐私" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "正在处理 GIF……" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "正在处理视频……" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "公开且可对外分享的列表,可用来批量隐藏或屏蔽账户。" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "发布帖文" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "发布帖文" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "发布回复" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "发布回复" @@ -9599,12 +9602,12 @@ msgstr "已停用帖文引用" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "引用" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "引用这则帖文" @@ -9647,21 +9650,21 @@ msgstr "重新启用你的账户" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "继续阅读 {0, plural, one {# 则回复} other {# 则回复}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" -msgstr "" +msgstr "阅读如何使用高级搜索筛选器" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "阅读博客文章" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "查看更少" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "查看更多" @@ -9687,11 +9690,11 @@ msgstr "浏览 Bluesky 隐私设置" msgid "Read the Bluesky Terms of Service" msgstr "浏览 Bluesky 服务条款" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "真实的对话。" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "真实的用户。" @@ -9721,10 +9724,6 @@ msgstr "最近的搜索记录" msgid "Recently used" msgstr "最近使用" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "推荐" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "重新连接" @@ -9748,7 +9747,7 @@ msgstr "拒绝对话邀请" msgid "Reject join request" msgstr "拒绝加入申请" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "重新加载对话" @@ -9766,7 +9765,7 @@ msgstr "重新加载对话" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "移除" @@ -9790,10 +9789,10 @@ msgstr "移除 {displayName}?" #: src/screens/Search/components/SearchHistory.tsx:182 msgid "Remove {q}" -msgstr "" +msgstr "移除 {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "移除账户" @@ -9839,21 +9838,21 @@ msgstr "要删除动态源吗?" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 msgid "Remove filter" -msgstr "" +msgstr "移除筛选器" #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "从对话中移除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "从我的动态源中删除" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "要从快速访问中移除吗?" @@ -9862,7 +9861,7 @@ msgstr "要从快速访问中移除吗?" msgid "Remove from saved feeds" msgstr "从已保存的动态源中删除" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "从帖文收藏里删除" @@ -9880,8 +9879,8 @@ msgstr "删除图片" msgid "Remove live status" msgstr "移除直播状态" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "移除成员" @@ -9943,7 +9942,7 @@ msgstr "已从列表中删除" msgid "Removed from saved feeds" msgstr "已从已保存的动态源中删除" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "已从帖文收藏里删除" @@ -9952,7 +9951,7 @@ msgstr "已从帖文收藏里删除" msgid "Removed from starter pack" msgstr "已从你的新手包中删除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "对你进行回复" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "来自 {senderName} 的回复信息,点击以滚动到该信息对应的位置" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" -msgstr "" +msgstr "被回复的信息是在你加入之前发送的" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "回复信息,点击以滚动到该信息对应的位置" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "回复" @@ -10037,7 +10037,7 @@ msgstr "这则帖文的回复已被停用。" msgid "Reply" msgstr "回复" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "回复" @@ -10098,8 +10098,8 @@ msgstr "举报对话" msgid "Report dialog" msgstr "举报页面" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "举报动态源" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "你已转发" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "转发" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "转发这则帖文" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "转发你转发的帖文" @@ -10253,7 +10253,7 @@ msgstr "已发送申请" msgid "Requests" msgstr "邀请" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10333,7 +10333,7 @@ msgstr "重置密码" #: src/screens/Login/LoginForm.tsx:422 msgid "Reset your password by sending a code to your email" -msgstr "" +msgstr "通过向你的邮箱发送验证码来重置密码" #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 @@ -10358,10 +10358,10 @@ msgstr "重试上次出错的操作" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "返回主页" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "返回上一页" @@ -10406,7 +10406,7 @@ msgstr "返回上一步" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "显示密码" #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "保存出生日期" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "保存更改" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "保存更改?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "保存草稿" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "保存草稿?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "保存二维码" msgid "Save these options for next time" msgstr "保存这些选项以供下次使用" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "保存到我的动态源" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "已保存动态源" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "帖文收藏" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "已保存到你的动态源" @@ -10520,8 +10520,8 @@ msgstr "已保存到你的动态源" msgid "Say hello!" msgstr "问声好!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "向某人问声好" @@ -10535,7 +10535,7 @@ msgstr "扫描" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "扫描二维码" @@ -10543,15 +10543,15 @@ msgstr "扫描二维码" msgid "Science" msgstr "科学" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "向左旋转" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "向右旋转" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "滚动到此回复对应的位置" @@ -10564,8 +10564,8 @@ msgstr "滚动到顶部" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "搜索" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "搜索 @{0} 的帖文" @@ -10602,21 +10602,21 @@ msgstr "搜索“{interestsDisplayName}“(已选中)" #: src/screens/Search/components/AutocompleteResults.tsx:49 msgid "Search for “{searchText}”" -msgstr "" +msgstr "搜索“{searchText}”" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "搜索 {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "通过搜索来添加你想分享的动态源。" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "搜索更多账户" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "搜索更多动态源" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "搜索 GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "未登录状态无法使用搜索功能" @@ -10661,7 +10661,7 @@ msgstr "搜索个人资料" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 msgid "Search query" -msgstr "" +msgstr "搜索关键字" #: src/screens/Profile/ProfileSearch.tsx:38 msgid "Search..." @@ -10709,6 +10709,7 @@ msgstr "查看 Bluesky 的工作职缺" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "浏览更多" @@ -10716,8 +10717,12 @@ msgstr "浏览更多" msgid "See more suggested profiles" msgstr "查看更多建议的个人资料" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "查看更多热门话题" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "查看建议账户" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "播放进度条。使用方向键来前进或后退,按空格键控制播放或暂停。" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "选择“{interestsDisplayName}“类别" @@ -10748,7 +10753,7 @@ msgstr "选择 {0}" msgid "Select {langName}" msgstr "选择 {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "选择一个颜色" @@ -10764,11 +10769,11 @@ msgstr "选择账户" msgid "Select an app language" msgstr "选择应用语言" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "选择一个头像" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "选择一个表情符号" @@ -10780,12 +10785,13 @@ msgstr "选择一个选项" msgid "Select app language" msgstr "选择应用语言" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "选择字幕文件(.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "选择对话“{name}”" @@ -10801,7 +10807,7 @@ msgstr "选择持续时长" #. placeholder {0}: labels[filter.field].title #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 msgid "Select filter type (currently: {0})" -msgstr "" +msgstr "选择搜索筛选条件类型(目前:{0})" #: src/screens/Login/index.tsx:166 msgid "Select from an existing account" @@ -10826,7 +10832,7 @@ msgstr "选择 GIF" msgid "Select GIF \"{0}\"" msgstr "选择 GIF “{0}”" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "选择群组对话成员" @@ -10864,7 +10870,7 @@ msgstr "选择主要语言" msgid "Select telephone code" msgstr "选择电话区号" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "选择 {emojiName} 表情符号作为你的头像" @@ -10945,7 +10951,8 @@ msgstr "发送信息" msgid "Send post to {name}" msgstr "发送帖文给 {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "发送帖文给……" @@ -10963,12 +10970,12 @@ msgstr "从你的手机发送这则信息" msgid "Send verification email" msgstr "发送验证电子邮件" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "通过私人信息发送" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "通过对话发送" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "请在下方设置你的出生日期,我们很快就会让你继续四 #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "手动设置托管服务提供商" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "手动设置托管服务提供商" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "设置用于重置密码的电子邮箱" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "设置" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "来自其他人的动态提醒设置" @@ -11036,49 +11043,49 @@ msgstr "来自其他人的动态提醒设置" msgid "Settings for allowing others to be notified of your posts" msgstr "允许他人接收你发布帖文提醒的设置" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "喜欢通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "提及通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "新关注者通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "其他通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "转发的喜欢通知设置" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "新信息申请的通知设置" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "新信息的通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "转发的转发通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "引用通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "回复通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "转发通知设置" @@ -11109,14 +11116,14 @@ msgstr "分享" #: src/ageAssurance/useVerificationFlow.ts:62 msgid "Share age range" -msgstr "" +msgstr "分享年龄范围" #: src/view/com/profile/ProfileMenu.tsx:549 msgid "Share anyway" msgstr "仍然分享" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "分享作者 DID" @@ -11125,9 +11132,9 @@ msgstr "分享作者 DID" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "分享反馈" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "分享链接对话框" msgid "Share my profile" msgstr "分享我的资料" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "分享帖文 at:// 链接" @@ -11169,14 +11176,14 @@ msgstr "分享资料" msgid "Share QR code" msgstr "分享二维码" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "分享此动态源" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" -msgstr "" +msgstr "分享此搜索结果" #: src/screens/StarterPack/StarterPackScreen.tsx:440 msgid "Share this starter pack" @@ -11186,8 +11193,8 @@ msgstr "分享此新手包" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "分享此新手包,以帮助其他人更快融入你在 Bluesky 上的关系网。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,23 +11210,23 @@ msgstr "分享你的联系人来寻找朋友" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughts…" -msgstr "" +msgstr "分享你的想法……" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "共享偏好测试器" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 msgid "Sharing your age range reveals only the range associated with your Apple Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "分享您的年龄范围只会透露你 Apple 账户关联的大致信息——例如,你已年满 18 岁。<0>你的确切年龄和生日信息永远不会被分享,年龄范围数据也永远不会离开此设备。因此,它只能在此设备上启用访问权限。或者,<1>你可以使用我们的可信合作伙伴 KWS来完成验证,从而在所有平台上启用访问权限。" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "分享您的年龄范围只会透露你 Google 账户关联的大致信息——例如,你已年满 18 岁。<0>你的确切年龄和生日信息永远不会被分享,年龄范围数据也永远不会离开此设备。因此,它只能在此设备上启用访问权限。或者,<1>你可以使用我们的可信合作伙伴 KWS来完成验证,从而在所有平台上启用访问权限。" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,20 +11236,20 @@ msgstr "显示" msgid "Show alt text" msgstr "显示替代文本" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "仍然显示" #: src/screens/Settings/AutomationLabelSettings.tsx:185 #: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" -msgstr "显示自动化标签" +msgstr "显示自动化标记" #: src/lib/moderation/useLabelBehaviorDescription.ts:30 #: src/lib/moderation/useLabelBehaviorDescription.ts:66 @@ -11274,8 +11281,8 @@ msgstr "仍然显示列表" msgid "Show lists of users to select from" msgstr "显示可供选择的用户列表" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "显示更多" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "显示警告并从动态源中过滤" msgid "Show when you’re live" msgstr "显示直播状态" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "显示这则帖文的创建时间" @@ -11341,15 +11348,15 @@ msgstr "显示这则帖文的创建时间" msgid "Shows other accounts you can switch to" msgstr "显示可供你切换的其他账户" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "显示内容" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "显示内容" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "以 {0} 登录" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in as…" -msgstr "" +msgstr "登录为……" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "确定要登出吗?" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "注册" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "需要登录" @@ -11450,7 +11457,7 @@ msgstr "以 @{0} 的身份登录" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 msgid "Since" -msgstr "" +msgstr "自" #: src/components/contacts/screens/PhoneInput.tsx:163 #: src/components/contacts/screens/VerifyNumber.tsx:205 @@ -11469,7 +11476,7 @@ msgstr "跳过" msgid "Skip contact sharing and continue to the app" msgstr "跳过分享通讯录并继续使用应用程序" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "跳过空白帖文?" @@ -11487,7 +11494,7 @@ msgstr "跳至下一步" msgid "slide" msgstr "幻灯片" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "更小" @@ -11499,14 +11506,14 @@ msgstr "暂停提醒" msgid "So many thoughts, you should post one" msgstr "总有一个想法值得被看见,挑一则发布吧" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "由你掌控的社交媒体。" #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "关系圈帖文推荐" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "有人离开了群组" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "有人作出了 {0} 反应" @@ -11554,9 +11561,9 @@ msgstr "有人作出了 {0} 反应" msgid "Someone reacted {0} to {target}" msgstr "有人对 {target} 作出了 {0} 反应" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" -msgstr "" +msgstr "有人回复了" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "出了点问题,请重试" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "发生错误,请稍后重试。" msgid "Something went wrong. Please try again." msgstr "发生错误,请重试。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "看起来有点问题?请告诉我们。" @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "垃圾信息或其他虚假欺骗行为" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "运动" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "发现你的好友和关注的人喜欢过的帖文。" #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "当你和其他人开始聊天后,对话就会出现在这里。" msgid "Start a group chat" msgstr "开始群组对话" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "开始一个新对话" @@ -11682,17 +11689,17 @@ msgstr "开始添加用户" msgid "Start adding people!" msgstr "开始添加用户!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "开始对话" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "与 {displayName} 开始对话" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "新手包" @@ -11715,12 +11722,16 @@ msgstr "你创建的新手包" msgid "Starter pack is invalid" msgstr "无效的新手包" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "新手包" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "新手包" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "新手包能使你轻松与朋友分享你喜欢的用户和动态源。" @@ -11728,7 +11739,7 @@ msgstr "新手包能使你轻松与朋友分享你喜欢的用户和动态源。 msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "新手包能使你与朋友分享你喜欢的用户和动态源。" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "新手包能使你与朋友分享你喜欢的动态源与人物。" @@ -11742,7 +11753,7 @@ msgstr "状态页" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "第 {0} 步(共 {1} 步)" @@ -11754,7 +11765,7 @@ msgstr "已清除数据,请立即重新启动应用。" msgid "Stored as part of a secure code for matching with others" msgstr "存储为安全代码的一部分,以匹配其他人" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "提交申诉" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "提交反馈" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "在 {0} 上订阅 {publicationTitle}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "订阅 @{0} 以使用这些标记:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "成功认证" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "建议" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "建议账户" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "你所在的国家尚不支持此功能!请过几天再回来看看。" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "已冻结的用户无法加入群组对话。" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "已冻结的用户无法参与聊天。" @@ -11921,8 +11934,8 @@ msgstr "切换到 {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "系统" @@ -11945,7 +11958,7 @@ msgstr "将对话设为私密。" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "点击下方的“允许”按钮以允许 Bluesky 读取你的位置信息,我们将使用该数据来更准确地确认你所在地区可用的内容及功能。" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "点击以获取详细信息" @@ -11976,7 +11989,7 @@ msgstr "点按以关闭上下文菜单" msgid "Tap to copy this invite link" msgstr "点击以复制此邀请链接" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "点按以跳过" @@ -12003,7 +12016,7 @@ msgstr "点击以移除你的 {0} 反应" msgid "Tap to request access to join this group chat" msgstr "点击以申请加入此群组对话" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "点击以重试" @@ -12016,7 +12029,7 @@ msgstr "点击以显示 {0} 反应" msgid "Tap to show all reactions" msgstr "点击以显示所有反应" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "点击以显示反应" @@ -12032,7 +12045,7 @@ msgstr "任务完成:关注 10 个账户!" msgid "Task complete - 10 likes!" msgstr "任务完成:喜欢 10 则帖文!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "让我们的算法了解你的喜好" @@ -12060,7 +12073,7 @@ msgstr "条款" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "感谢你的反馈,相关信息将会发送给动态源维护者。" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "感谢您的反馈!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "找不到那个新手包。" msgid "That username is already taken" msgstr "该用户名已被占用" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "就这些,完毕!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "就这些了!" @@ -12171,7 +12184,7 @@ msgstr "动态源已替换为“Discover”。" #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "以下标记已应用到此帖文。" #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "服务器似乎遇到了问题,请稍后重试。" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "你尝试查看的新手包无效。你可以考虑删除此新手包。" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "上下文菜单对应的主题" @@ -12238,7 +12251,7 @@ msgstr "你提供的验证码无效。请检查你使用的验证链接是否正 msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "验证服务提供商无法向你的电话号码发送代码,请检查你的电话号码并重试。" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "主题" @@ -12266,7 +12279,7 @@ msgstr "无法加载 GIFs,检查你的网络链接并再试一次。" msgid "There was a problem with your internet connection, please try again" msgstr "你的网络连接发生了一些问题,请重试" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "你的网络连接发生了一些问题,请重试" msgid "There was an issue contacting the server" msgstr "连接服务器时出现问题" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "连接至服务器时出现问题。请检查网络连接并重试。" @@ -12283,8 +12296,8 @@ msgstr "连接至服务器时出现问题。请检查网络连接并重试。" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "刷新通知时出现问题,点击重试。" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "刷新帖文时出现问题,点击重试。" @@ -12309,7 +12322,7 @@ msgstr "获取你的服务信息时出现问题" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "更新动态源时出现问题。请检查网络连接并重试。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12368,12 +12381,12 @@ msgstr "这些是你的默认设置" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 msgid "These domains" -msgstr "" +msgstr "这些域名" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 msgid "These hashtags" -msgstr "" +msgstr "这些话题标签" #: src/screens/Settings/FollowingFeedPreferences.tsx:66 msgid "These settings only apply to the Following feed." @@ -12382,9 +12395,9 @@ msgstr "这些偏好设置只适用于“Following”动态源。" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 msgid "These URLs" -msgstr "" +msgstr "这些链接" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "他们是此对话的所有者" @@ -12392,7 +12405,7 @@ msgstr "他们是此对话的所有者" msgid "They won’t be able to rejoin unless you invite them again." msgstr "除非你再次发出邀请,否则他们将无法重新加入。" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} 已被标记:" @@ -12408,7 +12421,7 @@ msgstr "此账户已被其所有人标记为自动化账户。" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "此账户已尝试进行一次或多次认证,但尚未被正式认证。" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "该账户要求登录后才能查看其个人资料。" @@ -12510,7 +12523,7 @@ msgstr "此电子邮箱已与你的账户关联。" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:280 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:283 msgid "This exact phrase" -msgstr "" +msgstr "完全匹配此语句" #: src/screens/Settings/ActivityPrivacySettings.tsx:56 msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "此动态源为空。可能你需要先关注更多用户,或检查你的语言设置。" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "此动态源为空。" @@ -12554,7 +12567,7 @@ msgstr "此对话已被所有者的内容审核动作锁定" msgid "This handle is reserved. Please try a different one." msgstr "该账户代码被预留,请尝试输入另一个。" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "无法使用这张图片,请改用其他图片格式,例如 .jpg 或 .png。" @@ -12572,7 +12585,7 @@ msgstr "此邀请链接无效" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 msgid "This is just a one-time security check, since we haven't seen this account on this device before." -msgstr "" +msgstr "这只是一次性的安全检查,因为我们之前未在此设备上登录过该账户。" #: src/features/liveNow/components/EditLiveDialog.tsx:171 #: src/features/liveNow/components/GoLiveDialog.tsx:161 @@ -12581,7 +12594,7 @@ msgstr "无效链接" #: src/screens/Settings/AutomationLabelSettings.tsx:173 msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time." -msgstr "此标签让大家了解这是自动管理的账户。如果选择开启,此标签会显示在个人资料及帖文的账户名称旁,你可以随时决定添加或移除此标签。" +msgstr "此标记让大家了解这是自动管理的账户。如果选择开启,此标记会显示在个人资料及帖文的账户名称旁,你可以随时决定添加或移除此标签。" #: src/components/moderation/ModerationDetailsDialog.tsx:254 msgid "This label was applied by the author." @@ -12589,14 +12602,14 @@ msgstr "此标签是由该发布者标记的。" #: src/components/moderation/LabelsOnMeDialog.tsx:184 msgid "This label was applied by you." -msgstr "此标签是你标记的。" +msgstr "此标记由你添加。" #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "此标记已应用于整个用户账户,并将出现在所有帖文中。" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "此标记者尚未公开他发布的标记类型,也可能不再提供服务。" @@ -12621,13 +12634,13 @@ msgstr "此列表为空。" msgid "This message is hidden" msgstr "这条信息已隐藏" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "此信息已被隐藏,因为此用户屏蔽了你。" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "此信息已被隐藏,因为你屏蔽了此用户。" @@ -12641,7 +12654,7 @@ msgstr "这个人屏蔽了你" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "这则帖文声称发布于 <0>{0},但首次出现在 Bluesky 的时间为 <1>{1}。" @@ -12649,7 +12662,7 @@ msgstr "这则帖文声称发布于 <0>{0},但首次出现在 Bluesky 的 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "此帖文存在未知的内容类型,你的应用版本可能已过时。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "这则帖文仅对已登录用户可见。" @@ -12661,7 +12674,7 @@ msgstr "这则帖文已被发布者删除" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "这则帖文将从动态源和讨论串中隐藏。注意:此操作无法撤消。" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "这则帖文的发布者已停用引用帖文。" @@ -12698,11 +12711,12 @@ msgstr "这应该只需要几分钟。" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "此用户没有设置名称,因此无法授予认证。" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "该用户目前没有任何关注者。" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "此用户屏蔽了你,无法发送信息。" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "你已被该用户屏蔽,无法查看其内容。" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "此用户已禁用对话功能,无法发送信息。" @@ -12733,17 +12748,17 @@ msgstr "该用户包含在你已隐藏的 <0>{0} 列表中。" msgid "This user is new here. Press for more info about when they joined." msgstr "该用户是近期加入 Bluesky 的。点按此处可获取其加入的具体时间。" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "该账户目前没有关注任何人。" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "此视频无法在你的设备上播放,你的浏览器或系统可能缺失所需的视频解码器(H.264/AAC)。" #: src/view/com/composer/videos/VideoPreview.web.tsx:65 msgid "This video can’t be previewed in your browser. It will still be uploaded." -msgstr "" +msgstr "此视频无法在你的浏览器中预览,但仍会被上传。" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 msgid "This will create a new list with the same name, description, and members as this starter pack." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "这将永久删除你的 Bluesky 账户 <0>{currentHandle} 及所有关联数据。请注意:这也会影响此账户使用其他 <1>AT 协议 的服务。" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "这将从你的快速访问中移除 @{0}。" @@ -12786,7 +12801,7 @@ msgstr "讨论串偏好设置" msgid "Threaded" msgstr "树形视图" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "讨论串偏好设置" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "太多联系人了——你导入的联系人数量已超过寻找朋友上限" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "热门" @@ -12858,7 +12873,7 @@ msgstr "热门" msgid "Top replies first" msgstr "热门回复优先" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "话题" @@ -12893,7 +12908,9 @@ msgstr "你的设备不支持将原文翻译成相同语言。" msgid "Tree view" msgstr "树形视图" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "热门" @@ -12902,7 +12919,7 @@ msgstr "热门" msgid "Trending GIFs" msgstr "热门 GIFs" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "热门选项" @@ -12918,13 +12935,13 @@ msgstr "引战" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "信任源于人际关系、社群和共享环境,因此我们也引入了<0>可信的认证人:可以直接为其他账户授予认证的组织。" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." -msgstr "" +msgstr "尝试以不同的关键词搜索,或移除部分筛选条件。" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." -msgstr "" +msgstr "尝试搜索不同的关键字。" #: src/features/inviteFriends/InviteScannerScreen.tsx:221 #: src/features/inviteFriends/InviteScannerScreen.tsx:226 @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "无法获取加入申请。" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "找不到选中的收信人。" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "找不到选中的收信人。" @@ -13024,12 +13043,12 @@ msgstr "目前无法使用" msgid "Unavailable feed information" msgstr "动态源信息不可用" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "要取消屏蔽账户吗?" msgid "Unblock list" msgstr "取消屏蔽列表" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "取消关注 {0}" msgid "Unfollow account" msgstr "取消关注账户" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "取消关注用户" @@ -13132,7 +13151,7 @@ msgstr "未标记的成人内容" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "未标记、具骚扰性,或非自愿的成人内容" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "取消喜欢" @@ -13192,7 +13211,7 @@ msgstr "取消隐藏此群组对话" msgid "Unmute thread" msgstr "取消隐藏讨论串" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "取消隐藏视频" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "取消固定" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "取消固定动态源" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "从主页取消固定" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "取消固定限制列表" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "从主页取消固定 {0}" @@ -13258,18 +13277,18 @@ msgstr "取消订阅此标记者" msgid "Unsubscribed from list" msgstr "已从列表中取消订阅" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "不支持的剪贴板内容" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "不支持的视频类型:{mimeType}" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 msgid "Until" -msgstr "" +msgstr "至" #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 msgid "Up to 50 people" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "更新回复可见性失败" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "上传图片" @@ -13355,7 +13374,7 @@ msgstr "从文件上传" msgid "Upload from Library" msgstr "从照片图库上传" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "正在上传 GIF……" @@ -13369,7 +13388,7 @@ msgstr "正在上传图片……" msgid "Uploading link thumbnail..." msgstr "正在上传链接缩略图……" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "正在上传视频……" @@ -13408,7 +13427,7 @@ msgstr "使用这个和你的账户代码一起登录其他应用。" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "直接使用你账户绑定的电子邮件地址,或提供一个你拥有的其他电子邮件地址,以防日后 KWS 或 Bluesky 需要与你联系。" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "用户" @@ -13482,7 +13501,7 @@ msgstr "用户名只能包含字母(a-z)、数字及连字符(-)" #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "用户名或电子邮箱" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13529,7 @@ msgstr "无法授予认证,请重试。" msgid "Verification settings" msgstr "认证设置" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "认证设置" @@ -13563,7 +13582,7 @@ msgstr "现在验证" #: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 #: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 msgid "Verify now using KWS" -msgstr "" +msgstr "立即使用 KWS 验证" #: src/components/contacts/screens/PhoneInput.tsx:175 #: src/components/contacts/screens/VerifyNumber.tsx:217 @@ -13618,7 +13637,7 @@ msgstr "视频" msgid "Video failed to process" msgstr "视频处理失败" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "视频动态源" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "来自 {0} 的视频:{text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "来自 {0} 的视频。点击以播放或暂停视频" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "电子游戏" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "视频已暂停" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "视频正在播放" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "无法找到视频。" @@ -13653,7 +13672,7 @@ msgstr "无法找到视频。" msgid "Video settings" msgstr "视频设置" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "已上传视频" @@ -13662,17 +13681,17 @@ msgstr "已上传视频" msgid "Video: {0}" msgstr "视频:{0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "视频" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "视频长度不得超过 3 分钟。" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "查看" @@ -13691,9 +13710,9 @@ msgstr "查看 {0} 的头像" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "查看 {0} 的个人资料" @@ -13724,13 +13743,13 @@ msgstr "查看博客文章以获取更多资讯" msgid "View debug entry" msgstr "查看调试项目" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "查看详情" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "查看完整讨论串" @@ -13761,7 +13780,7 @@ msgstr "查看更多" msgid "View more trending videos" msgstr "浏览更多热门视频" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "查看帖文" @@ -13798,11 +13817,11 @@ msgstr "查看此群组对话的邀请链接" msgid "View the labeling service provided by @{0}" msgstr "查看由 @{0} 提供的标记服务。" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "查看此用户的认证" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "查看此动态源被谁喜欢" @@ -13831,7 +13850,7 @@ msgstr "查看你的内容审核列表" msgid "View your muted accounts" msgstr "查看你隐藏的账户" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "查看你的认证" @@ -13898,7 +13917,7 @@ msgstr "无法找到该列表,可能已被删除。" #: src/screens/Login/LoginForm.tsx:348 msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." -msgstr "" +msgstr "我们无法找到该用户名所对应的账户。请检查否输入正确,或<0>手动设置您的托管服务提供商。" #: src/screens/Hashtag.tsx:260 msgid "We couldn't find any results for that tag." @@ -13922,7 +13941,7 @@ msgstr "我们目前无法加载此对话选项" #: src/screens/Login/LoginForm.tsx:482 msgid "We couldn’t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." -msgstr "" +msgstr "我们无法验证你所属的托管服务提供商。请检查你的网络连接,或<0>手动设置托管服务提供商。" #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -14001,7 +14020,7 @@ msgstr "我们会在找到你的朋友时发送通知。" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "We’d love to hear about your experience testing beta features!" -msgstr "" +msgstr "我们很想听听你使用测试功能的体验!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "我们遇到了网络问题,请再试一次" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "我们遇到了网络问题,请再试一次" @@ -14043,13 +14062,13 @@ msgstr "我们遇到了网络问题,请再试一次" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "为你介绍 Bluesky 的全新认证机制 —— 认证徽章。" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "我们非常高兴你选择加入我们!" #: src/ageAssurance/useVerificationFlow.ts:117 msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." -msgstr "" +msgstr "很抱歉,根据你设备所提供的数据,你尚未达到使用 Bluesky 所需的年龄。" #: src/ageAssurance/components/NoAccessScreen.tsx:227 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 @@ -14064,13 +14083,15 @@ msgstr "很抱歉,我们无法解析此列表。如果问题持续发生,请 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "很抱歉,我们无法加载你的隐藏字词列表。请重试。" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." -msgstr "" +msgstr "很抱歉,无法完成你的搜索。" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "很抱歉,无法完成你的搜索。请几分钟后重试。" @@ -14078,7 +14099,7 @@ msgstr "很抱歉,无法完成你的搜索。请几分钟后重试。" msgid "We're sorry, you cannot access this screen at this time." msgstr "很抱歉,你目前无法访问此页面。" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "很抱歉!你回复的帖文已被删除。" @@ -14131,10 +14152,10 @@ msgstr "你希望如何命名你的新手包?" #. Advanced search: Example of an “exact phrase” search #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:285 msgid "what’s up" -msgstr "" +msgstr "有什么新鲜事" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "发生了什么新鲜事?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "哪些人可以获得认证?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "糟糕!" @@ -14220,21 +14241,21 @@ msgstr "需要屏蔽该用户、离开对话,或两者一并执行吗?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "在查看其他草稿之前,需要先保存现有内容吗?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "需要把现有内容保存为草稿,以便日后编辑吗?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "撰写一篇帖文" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "撰写帖文" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "撰写你的回复" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "你所在的地区依法要求我们在允许您使用 Bluesky 应用之前验证你的年龄。" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "你屏蔽了 {0}" @@ -14342,7 +14363,7 @@ msgstr "你已停止直播" msgid "You are not allowed to upload videos." msgstr "你目前无法上传视频。" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "你还没有关注任何账户" @@ -14362,7 +14383,7 @@ msgstr "你已获得认证。一旦你更改名称,你将会失去认证状态 msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "你已获得认证。一旦你更改账户代码,你将会失去认证状态。<0>了解详情。" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "你可以随时在设置“内容与媒体”中调整你的兴趣。" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "你现在可以使用新密码登录。" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "帖文最多只能添加 {MAX_GALLERY_IMAGES, plural,other {# 张图片}}" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "你目前只能保存最多 1000 个字符的草稿。" @@ -14439,9 +14460,9 @@ msgstr "你仍然可以查看对话记录,但无法发送新信息。" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "你最多可以选择 {MAX_GALLERY_IMAGES, plural,other {# 张图片}}。" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "你可以随时在设置里重新更改。" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "你不能添加超过 {EMOJI_REACTION_LIMIT, plural,one {# 个表情符号反应}other {# 个表情符号反应}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "你暂时无法创建群组对话。" @@ -14555,7 +14577,7 @@ msgstr "你已成功验证电子邮箱地址,现在你可以关闭此对话框 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "你已暂时达到视频上传的限制。请稍后再试。" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "你有未保存的更改,需要保存吗?" @@ -14563,7 +14585,7 @@ msgstr "你有未保存的更改,需要保存吗?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "你有未保存的更改。在查看其他草稿前,需要先保存现有内容吗?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "你还没有创建任何新手包!" @@ -14614,7 +14636,7 @@ msgstr "你最多只能添加 {STARTER_PACK_MAX_SIZE, plural,other {{STARTER_PAC msgid "You may only add up to 3 feeds" msgstr "你最多只能添加 3 个动态源" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "你必须是对话所有人才能移除成员。" @@ -14622,7 +14644,7 @@ msgstr "你必须是对话所有人才能移除成员。" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "你必须年满13周岁才能使用 Bluesky,阅读我们的<0>服务条款以获取更多资讯。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "你必须至少关注 7 个人以创建新手包。" @@ -14639,7 +14661,7 @@ msgstr "你必须授予权限以访问媒体内容。" msgid "You need to verify your email address before you can enable email 2FA." msgstr "你需要验证你的电子邮箱地址才能启用电子邮箱两步验证。" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "你是此对话的所有者" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "你可能需要重启应用程序。" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "你作出了 {0} 反应" @@ -14667,15 +14689,15 @@ msgstr "你对 {target} 作出了 {0} 反应" msgid "You recently changed your birthdate" msgstr "你最近修改了你的出生日期" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "你回复了" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "你回复了 {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "你回复了自己" @@ -14715,11 +14737,11 @@ msgstr "除非受到邀请,否则你将无法重新加入。" msgid "You: {message}" msgstr "你:{message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "当你完成创建账户后,你将自动关注建议的用户和动态源!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "当你完成创建账户后,你将自动关注建议的用户!" @@ -14747,11 +14769,11 @@ msgstr "你将通过这些动态源接收最新动态" #: src/ageAssurance/useVerificationFlow.ts:133 msgid "You're all set!" -msgstr "" +msgstr "一切就绪!" #: src/ageAssurance/useVerificationFlow.ts:127 msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." -msgstr "" +msgstr "一切就绪!不过,一些功能可能在你能证明自己已成年之前仍处于限制状态。" #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 msgid "You’re in control" @@ -14791,7 +14813,7 @@ msgstr "你已到达内容的结尾。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "你已经浏览完动态源的所有帖文啦!寻找一些更多的账户关注吧。" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "你已达到最大草稿保存数量" @@ -14799,9 +14821,9 @@ msgstr "你已达到最大草稿保存数量" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "你已达到请求上限,请稍后再试。" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." -msgstr "" +msgstr "你已达到 {MAX_FILTERS, plural,one {# 个筛选条件}other {# 个筛选条件}}的上限,试试修改或替换部分筛选条件以继续。" #: src/components/FocusScope/index.tsx:88 msgid "You've reached the start of the active content." @@ -14815,11 +14837,11 @@ msgstr "你已达到每日上传视频上限(文件太大)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "你已达到每日上传视频上限(数量太多)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "你已经看完了所有视频,或许是时候休息一下?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "你的账户" @@ -14835,11 +14857,11 @@ msgstr "你的账户已被冻结" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "你的账户注册时间过短,暂时无法上传视频。请稍后再试。" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "你的账户创建时间太短了" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "要建立新的群组对话,你的账号必须创建至少 7 天以上。" @@ -14924,14 +14946,14 @@ msgstr "你的完整账户代码将修改为 <0>@{0}" #: src/screens/Login/components/HostingProviderDialog.tsx:182 msgid "Your hosting provider can’t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." -msgstr "" +msgstr "无法通过电子邮件地址检测你的托管服务提供商,因此将使用默认的 Bluesky 服务。请改为输入你的用户名,或手动设置您的托管服务提供商。" #: src/screens/Login/components/HostingProviderDialog.tsx:188 msgid "Your hosting provider is detected automatically from the username you enter." -msgstr "" +msgstr "你的托管服务提供商将根据你输入的用户名自动检测。" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "已更新你的兴趣!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "选择兴趣主题可以帮助我们推荐更多你喜欢的内容!" @@ -14967,11 +14989,11 @@ msgstr "已成功更改你的密码!请你今后使用你的新密码登录 Bl msgid "Your password must be at least 8 characters long." msgstr "你输入的密码至少应包含 8 个字符。" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "已发布你的帖文" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "已发布你的帖文" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "你的主要语言" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "你的头像" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "你的头像周围环绕着许多其他人的头像" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "已发布你的回复" @@ -15005,13 +15027,13 @@ msgstr "你的举报信息将提交给 <0>{0}。" msgid "Your selected interests help us serve you content you care about." msgstr "你选择的兴趣主题将帮助我们提供更多你想看到的内容。" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "你的帖文串中包含空白帖文,继续发布将会跳过这些内容,其余帖文会重新组合成完整的帖文串发布。" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you don’t recognize this provider, double-check your username." -msgstr "" +msgstr "你的用户名和密码共享给 <0>{host} 。如果你不认识此托管服务提供商,请仔细检查你的用户名填写是否正确。" #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/zh-HK/messages.po b/src/locale/locales/zh-HK/messages.po index f84c8b8daf..20bc7f9aa5 100644 --- a/src/locale/locales/zh-HK/messages.po +++ b/src/locale/locales/zh-HK/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: zh\n" +"Language: zh_HK\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Chinese Traditional, Hong Kong\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "「{interestsDisplayName}」類別(已揀選)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(已隱藏封鎖嘅訊息)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(包含嵌入內容)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(已刪除訊息)" @@ -54,9 +54,9 @@ msgid "(invalid chat invite link)" msgstr "(無效嘅傾偈邀請連結)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" -msgstr "" +msgstr "(你加入前所傳送嘅訊息)" #: src/screens/Settings/AccountSettings.tsx:74 msgid "(no email)" @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {#個鐘} other {#個鐘}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural, other {你嘅帖文被套用咗 # 個標記}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural, other {已套用 # 個標記}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# 人讚佢} other {# 人讚佢}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# 個成員}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, other {# 個新加入申請}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {# 個人}}畀咗個 {1} 反應" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{1} · {0}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0}(帳號)" @@ -251,36 +252,13 @@ msgstr "{0} 已受邀加入傾偈" msgid "{0} and {1} added to chat" msgstr "{0} 同 {1} 已受邀加入傾偈" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} 個跟緊" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} 已封鎖你" @@ -324,14 +302,6 @@ msgstr "{0} 離開咗" msgid "{0} left the group" msgstr "{0} 離開咗羣組" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "已輸入 {0} 個字元,最多輸入 50 個字元" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} 畀咗個 {1} 反應" @@ -388,21 +358,6 @@ msgstr "{0}、" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}、{1} 同{memberCount, plural, other {其他 # 人}}已受邀加入傾偈" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} 授權咗你驗證" msgid "{following} following" msgstr "{following} 個跟緊" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "邀請唔到 {handle}" @@ -698,7 +660,7 @@ msgstr "邀請唔到 {handle}" msgid "{handle} can't be messaged" msgstr "唔得同 {handle} 傳送訊息" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "傳送唔到訊息畀 {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# 條未讀} other {# 條未讀}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {搵到 # 個聯絡人}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "「{profileName}」喺 {timeAgoString}前加入咗 Bluesky" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "「{profileName}」喺 {timeAgoString}前使用新手包加入咗 Bluesky" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, other {剩餘 # 個字元}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} 覆咗" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} 覆咗 {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} 覆咗你" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {# 個邀請}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ 個邀請" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} 個鐘頭前" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} 係受信任嘅驗證者" @@ -842,13 +795,13 @@ msgstr "{userName} 嘅驗證" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {個跟緊} other {個跟緊}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {次引用}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {次轉發}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, other {次收藏}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, other {個讚好}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> 已將你加入" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>登入<1>或<2>建立帳號<3><4>就可以搵到新聞、體育、政治,同埋 Bluesky 上面嘅大小事。" @@ -971,7 +924,7 @@ msgstr "30 日" msgid "7 days" msgstr "7 日" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "喺 Bluesky 上你可以搵到一系列嘅熱門動態源,包括 News、Booksky、Game Dev、Blacksky,同 Fountain Pens" @@ -988,9 +941,11 @@ msgstr "發生網絡錯誤,請檢查你嘅網絡連線狀態" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,9 +959,9 @@ msgstr "已傳送新代碼" msgid "A new form of verification" msgstr "全新嘅驗證機制" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" -msgstr "" +msgstr "一則對你加入之前訊息嘅回覆" #. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "呢張係帖文編輯器嘅截圖,「發布」掣隔籬多咗粒寫住「草稿」嘅新掣,仲有彩虹煙花特效。下低輸入框寫住:「喂,收到風未?Bluesky 而家有草稿功能喇!!!」。" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "揀選嘅收信人未有俾傳送人跟隨。" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "已送出申請!請等待羣組擁有者審覈加入申請。" msgid "Accessibility" msgstr "無障礙" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "無障礙設定" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "帳號已被清單靜音" msgid "Account options" msgstr "帳號設定" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "已從快速存取度移除帳號" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "帶有圓齒藍色剔號徽章嘅帳號<0><1/>可以授權驗證其他帳號。呢啲受信任嘅驗證者係由 Bluesky 官方所揀。" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "其他人嘅動態" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,17 +1183,17 @@ msgstr "新增替代文字(可選)" msgid "Add another account" msgstr "加多個帳號" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "加多另一條帖文" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "加多另一條帖文到討論串" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" -msgstr "" +msgstr "新增第個搵嘢篩選條件" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" @@ -1253,7 +1213,7 @@ msgstr "加入自動化標記到此帳號" msgid "Add emoji reaction" msgstr "加入 Emoji 反應" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "新增篩選條件" @@ -1338,7 +1298,7 @@ msgstr "將佢加入到你嘅動態源" msgid "Add to lists" msgstr "加到清單" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "加入帖文收藏" @@ -1400,7 +1360,7 @@ msgstr "色情" msgid "Adult content" msgstr "成人內容" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1447,7 +1407,7 @@ msgstr "淨係用幾分鐘就攪掂年齡認證" #: src/ageAssurance/components/NoAccessScreen.tsx:449 msgid "Age assurance only takes a few minutes." -msgstr "" +msgstr "淨係用幾分鐘就攪掂年齡驗證。" #: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" @@ -1560,7 +1520,7 @@ msgstr "允許取用你嘅私訊" msgid "Already have a code?" msgstr "有咗重設碼?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "有咗帳號?" @@ -1614,7 +1574,7 @@ msgstr "電郵送咗去 {0} 度。你可以抄低郵件度個驗證碼跟住喺 msgid "An error has occurred" msgstr "發生錯誤" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "發生錯誤" @@ -1631,7 +1591,7 @@ msgstr "攞緊建議帳號嗰陣發生錯誤。" msgid "An error occurred while fetching the feed." msgstr "攞緊動態源嗰陣發生錯誤。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "幫手砌緊你嘅新手包嗰陣發生錯誤。使唔使試多次?" @@ -1640,11 +1600,11 @@ msgstr "幫手砌緊你嘅新手包嗰陣發生錯誤。使唔使試多次?" msgid "An error occurred while hiding suggestion. {0}" msgstr "隱藏建議嗰陣發生錯誤。{0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "撈緊影片嗰陣發生錯誤。唔該遲啲試多次。" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "撈緊影片嗰陣發生錯誤。唔該試多次。" @@ -1684,7 +1644,7 @@ msgstr "發生錯誤。{0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "一張插圖,展示用戶頭像從聯絡人湧入去 Bluesky 應用程式" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Bluesky 嘅幾條帖文嘅插圖,旁邊仲有轉發、讚好同留言嘅圖標" @@ -1705,17 +1665,15 @@ msgstr "邀請連結可以畀人直接加入呢個羣組傾偈。你可以控制 msgid "An issue not included in these options" msgstr "問題唔喺上高嗰啲選項度" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "建立羣組傾偈嗰陣出咗問題,唔該試多次。" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "開始羣組傾偈嗰陣出咗問題,唔該試多次。" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "開啓傾偈嗰陣出咗問題" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1766,11 +1724,11 @@ msgstr "同你介紹 Bluesky 上嘅認證機制" #. Placeholder text for a date picker #: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 msgid "Any date" -msgstr "" +msgstr "任何日期" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "任何人" @@ -1802,7 +1760,7 @@ msgstr "跟我嘅人" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "任何人都唔得再透過此連結夾入羣組,但你可以隨時建立新嘅邀請連結。" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1829,7 +1787,7 @@ msgstr "密碼名稱唔得同而家嘅一樣" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" -msgstr "" +msgstr "應用程式密碼名稱淨係用得字母、數字、空格、連字號(-)同底線(_)" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" @@ -1840,7 +1798,7 @@ msgstr "密碼名稱必須至少有 4 個字元" msgid "App passwords" msgstr "應用程式專用密碼" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "應用程式專用密碼" @@ -1858,7 +1816,7 @@ msgstr "申訴「{0}」標記" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "申訴標記" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1847,10 @@ msgstr "對此決定提出申訴" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "申訴此標記" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "套用 Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "封存於 {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "封存咗嘅帖文" @@ -1980,7 +1938,7 @@ msgstr "你確定要喺你嘅動態源度刪除呢個?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "你確定要撤回申請加入 {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "你確定要放棄發布呢條帖文?" @@ -2019,21 +1977,21 @@ msgid "Aurora" msgstr "極光" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "自動化帳號" #: src/screens/Login/components/HostingProviderDialog.tsx:165 #: src/screens/Login/components/HostingProviderDialog.tsx:167 msgid "Automatic" -msgstr "" +msgstr "自動" #: src/screens/Settings/AccountSettings.tsx:155 #: src/screens/Settings/AccountSettings.tsx:158 msgid "Automation label" msgstr "機械人標記" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "機械人標記" @@ -2050,12 +2008,16 @@ msgstr "自動播放影片同 GIF" msgid "Available" msgstr "用到" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2095,15 +2057,15 @@ msgstr "停權用戶嘗試逃避懲罰" #: src/ageAssurance/components/NoAccessScreen.tsx:184 msgid "Based on your device's location, we think you're in <0>{geolocationString}." -msgstr "" +msgstr "根據你裝置嘅位置,我哋估你身處 <0>{geolocationString}。" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236 msgid "Based on your device's location, we think you're in <0>{region}." -msgstr "" +msgstr "根據你裝置嘅位置,我哋估你身處 <0>{region}。" #: src/ageAssurance/components/NoAccessScreen.tsx:194 msgid "Based on your network, we think you're in <0>{geolocationString}. This estimate may be inaccurate if you're using a VPN." -msgstr "" +msgstr "根據你嘅網絡,我哋估你身處 <0>{geolocationString}。若然你用緊 VPN 嘅話,可能會估錯。" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "喺你讚寫帖文或回覆之前,你必須驗證你嘅電郵先。" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "喺建立新手包之前,你必須驗證你嘅電郵先。" @@ -2135,10 +2097,10 @@ msgstr "喺你接收 {name} 帖文通知之前,你必須驗證你嘅電郵。" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2122,28 @@ msgstr "請填寫下低欄位,以開始年齡驗證流程。" msgid "Beta Feature" msgstr "測試功能" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "測試功能" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "測試功能可能唔穩定。部分變更可能需要重新載入應用程式。" #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "測試功能可能唔穩定。部分變更可能需要重新啓動應用程式。" #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "出世日期" msgid "Birthday" msgstr "生日" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "已被封鎖" msgid "Blocked accounts" msgstr "已封鎖帳號" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "已封鎖嘅帳號" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "封鎖唔會阻止呢個用戶標記你嘅帳號。" @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 無法確認貼文發布日期嘅真實性。" @@ -2330,7 +2299,7 @@ msgstr "Bluesky 係一個開放嘅網絡,你可以去揀其他託管服務提 msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky 係一個開放嘅網絡,你可以去揀其他託管服務提供者。若果你係新手,我哋建議你用住預設嘅 Bluesky Social 選項先。" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky 係要同多啲天友玩先正!" @@ -2358,7 +2327,7 @@ msgstr "Bluesky Social 服務條款" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky 將你嘅聯絡人儲存成加密資訊,刪除聯絡人亦都會即刻刪除此資訊。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky 將會喺你社交網絡度揀一啲推薦嘅帳號。" @@ -2425,24 +2394,25 @@ msgstr "喺探索頁面瀏覽更多建議" msgid "Browse other feeds" msgstr "瀏覽其他動態源" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "睇吓同 {displayName} 有挐掕嘅貼文" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "睇吓用咗 {displayName} 標籤嘅貼文" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "瀏覽新手包 {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "瀏覽話題 {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "瀏覽話題 {displayName}" @@ -2461,8 +2431,8 @@ msgstr "去返首頁時間軸粒掣" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "嚟自 {0}" @@ -2473,9 +2443,9 @@ msgstr "嚟自 @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "嚟自 <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "建立帳號即係表示你同意<0>服務條款同<1>私隱政策Terms of Service." msgstr "建立帳號即係表示你同意<0>服務條款。" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "你所建立" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "相機" @@ -2534,7 +2504,7 @@ msgstr "需要取用相機權限" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "需要取用相機權限" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,13 +2555,13 @@ msgstr "取消重新啓動兼登出" msgid "Cancel reply" msgstr "唔再覆佢" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "唔再搵嘢" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 msgid "Cancels signing in so you can check your username" -msgstr "" +msgstr "取消登入以便你檢查用戶名稱" #: src/components/PostControls/index.tsx:108 #: src/components/PostControls/index.tsx:138 @@ -2620,7 +2590,7 @@ msgstr "標籤 {tag}" #. Advanced search: Example of an “all of these words” search. Paired with “cows pigs”. #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 msgid "cats dogs" -msgstr "" +msgstr "貓 狗" #: src/components/Post/Translated/index.tsx:439 #: src/screens/Settings/components/Email2FAToggle.tsx:31 @@ -2649,7 +2619,7 @@ msgstr "變更帳號代碼" #: src/screens/Login/LoginForm.tsx:644 msgid "Change hosting provider" -msgstr "" +msgstr "變更託管服務提供者" #: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "清單建立後會係一個獨立嘅副本,新手包有咩變更都會唔影響到份清單。" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "已靜音傾偈" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "搵唔到個傾偈。" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "傾偈選項" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "傾偈擁有者唔可以離開羣組傾偈。" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "傳送者未有跟隨訊息接收者。" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "傾偈邀請收件箱" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "傾偈邀請" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "傾偈設定" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "已唔再靜音傾偈" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "傾偈" @@ -2810,7 +2781,7 @@ msgstr "喺下低輸入傳送至 <0>{currentEmail} 嘅驗證碼:" #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "遲啲至過嚟睇睇!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "揀選網域驗證方法" msgid "Choose Feeds" msgstr "揀選動態源" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "幫我揀" @@ -2854,7 +2825,7 @@ msgstr "揀人" msgid "Choose post languages" msgstr "揀選帖文語言" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "用呢隻色做你嘅頭像背景" @@ -2869,7 +2840,7 @@ msgstr "揀選要邀請嘅人" #: src/components/dialogs/ServerInput.tsx:134 #: src/screens/Login/components/HostingProviderDialog.tsx:155 msgid "Choose your hosting provider" -msgstr "" +msgstr "揀選你嘅託管服務提供者" #: src/view/screens/Feeds.tsx:726 msgid "Choose your own timeline! Feeds built by the community help you find content you love." @@ -2879,7 +2850,7 @@ msgstr "自訂你自己嘅時間軸!社羣建立嘅動態源會幫你搵到啱 msgid "Choose your password" msgstr "設定你嘅密碼" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "設定你嘅用戶名稱" @@ -2966,7 +2937,7 @@ msgstr "撳呢度睇吓此羣組傾偈嘅邀請連結" msgid "Click to open tag menu for {0}" msgstr "撳低去打開 {0} 嘅標籤選單" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "撳低去試多次傳送訊息" @@ -3003,7 +2974,7 @@ msgstr "撳低去試多次傳送訊息" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "撳低去試多次傳送訊息" msgid "Close" msgstr "閂" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "閂咗目前嘅對話框" @@ -3047,7 +3018,7 @@ msgstr "閂咗橫額" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "閂咗圖片檢視器" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "閂咗選單" @@ -3090,7 +3061,7 @@ msgstr "閂咗加入申請通知橫額" msgid "Close this dialog" msgstr "閂呢個對話框" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "刪咗歡迎介面" @@ -3098,7 +3069,7 @@ msgstr "刪咗歡迎介面" msgid "Closes password update alert" msgstr "閂咗密碼更新警示" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "閂咗帖文編輯器兼棄置草稿" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "顏色" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "顏色模式" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "漫畫" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "社羣準則" @@ -3141,7 +3112,7 @@ msgstr "社羣準則" msgid "Complete onboarding and start using your account" msgstr "攪掂入門指導跟住開始使用你嘅帳號" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "完成呢個挑戰" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "撰寫新帖文" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "撰寫最多 {0, plural,other {# 個字元}}嘅帖文" @@ -3160,11 +3131,11 @@ msgstr "撰寫最多 {0, plural,other {# 個字元}}嘅帖文" msgid "Compose reply" msgstr "撰寫回覆" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "壓縮緊 GIF……" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "壓縮緊條片……" @@ -3199,12 +3170,12 @@ msgstr "連緊線到服務……" #: src/screens/Login/LoginForm.tsx:542 msgid "Connecting to service…" -msgstr "" +msgstr "連緊線到服務……" #: src/screens/Login/ForgotPasswordForm.tsx:138 #: src/screens/Login/LoginForm.tsx:548 msgid "Connecting…" -msgstr "" +msgstr "連緊線……" #: src/ageAssurance/components/RedirectOverlay.tsx:297 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "聯絡我哋嘅支援團隊" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "聯絡支援" @@ -3253,7 +3224,7 @@ msgstr "內容同媒體" msgid "Content and media" msgstr "內容同媒體" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "內容同媒體" @@ -3265,10 +3236,6 @@ msgstr "已封鎖內容" msgid "Content filters" msgstr "內容篩選器" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "我哋精選咗啲喺唔同社交網絡搵到,可能會啱你心水嘅內容。" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "內容語言" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "鼓吹或提倡自殘內容" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "內容警告" msgid "Content warnings" msgstr "內容警告" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "內容選單背景,撳低去閂咗選單。" @@ -3302,7 +3269,7 @@ msgstr "內容選單背景,撳低去閂咗選單。" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3315,7 +3282,7 @@ msgstr "用 {0} 身份繼續 (目前已登入)" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 msgid "Continue signing in" -msgstr "" +msgstr "繼續登入" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "繼續撈啲討論串……" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "繼續設定羣組名稱" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "搵唔到對話。" msgid "Copied build version to clipboard" msgstr "已複製組建版本號到剪貼簿" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "已複製連結到剪貼簿" @@ -3376,7 +3343,7 @@ msgstr "已複製連結到剪貼簿" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "複製應用程式專用密碼" msgid "Copy at:// URI" msgstr "複製 at:// 連結" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "複製發布者 DID" @@ -3449,10 +3416,10 @@ msgstr "複製連結" msgid "Copy link to list" msgstr "複製清單連結" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "複製貼文連結" @@ -3470,8 +3437,8 @@ msgstr "複製新手包連結" msgid "Copy message text" msgstr "複製訊息文字" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "複製貼文 at:// 連結" @@ -3490,7 +3457,7 @@ msgstr "複製 TXT 記錄值" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "版權政策" @@ -3540,11 +3507,11 @@ msgstr "跟唔到所有確認嘅聯絡人。{0}" msgid "Could not leave chat" msgstr "離開唔到呢度嘅傾偈" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "離開唔到呢度嘅傾偈。" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "撈唔到動態源" @@ -3562,7 +3529,7 @@ msgstr "撈唔到個人檔案" msgid "Could not mute chat" msgstr "靜音唔到對話" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "移除唔到成員。" @@ -3606,8 +3573,8 @@ msgstr "牛 豬" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "建立" @@ -3624,26 +3591,26 @@ msgstr "從呢個新手包建立清單" msgid "Create a QR code for a starter pack" msgstr "幫新手包建立 QR Code" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "建立一個新手包" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "建立新手包" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "幫我建立一個新手包" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "建立帳號" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "建立一個帳號" @@ -3666,15 +3633,15 @@ msgstr "建立一個帳號" msgid "Create an account without using this starter pack" msgstr "唔用呢個新手包註冊帳號" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "或建立一個頭像" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "建立多一個" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "建立羣組傾偈" @@ -3741,9 +3708,9 @@ msgstr "文化" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "目前嘅測試功能" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "目前嘅傾偈" @@ -3770,8 +3737,8 @@ msgstr "危險物質或藥物濫用" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "深色" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "深色" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "深色主題" @@ -3814,7 +3781,7 @@ msgstr "拒絕此建議語言" msgid "Deepfake adult content" msgstr "Deepfake 成人內容" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "預設" @@ -3894,7 +3861,7 @@ msgstr "刪除我嘅帳號" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "刪除帖文" @@ -3986,9 +3953,9 @@ msgstr "對話框:調整邊啲人可以喺呢條帖文度互動" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 msgid "Dialog: Set search filters" -msgstr "" +msgstr "對話框:設定搵嘢篩選條件" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "昏暗" @@ -4002,7 +3969,7 @@ msgstr "停用" msgid "Disable 2FA" msgstr "停用雙重驗證" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "關閉字幕" @@ -4045,9 +4012,9 @@ msgstr "停用" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "棄置" msgid "Discard changes?" msgstr "係咪要放棄變更?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "係咪要棄置份草稿?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "係咪要放棄發布?" @@ -4079,6 +4046,10 @@ msgstr "中斷連結 Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "阻止其他 App 向未登入嘅用戶顯示我嘅帳號" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "阻止其他 App 向未登入嘅用戶顯示我嘅帳號" msgid "Discover new custom feeds" msgstr "發掘新嘅自訂動態源" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "發掘新嘅動態源" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "發掘新嘅動態源" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "跳過" @@ -4103,19 +4070,19 @@ msgstr "跳過" msgid "Dismiss banner" msgstr "忽略提示" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "跳過錯誤" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "跳過入門指南" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "唔啱心水" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "閂咗直播活動橫幅" @@ -4142,7 +4109,7 @@ msgstr "顯示大啲嘅替代文字標誌" msgid "Display name" msgstr "名稱" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "遠離撩交嗌者同標題黨。搵眞正在乎嘅人,傾眞正關心啲事。" @@ -4205,8 +4172,8 @@ msgstr "唔使驚!你所有現存嘅訊息同設定經已儲存,只要驗證 #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "唔使驚!你所有現存嘅訊息同設定經已儲存,只要驗證 msgid "Done" msgstr "攪掂" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "撳兩吓或撳住訊息去加入反應" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "撳兩吓閂咗呢個對話框" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "撳兩吓讚佢" @@ -4328,6 +4295,7 @@ msgstr "飲食失調" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "編輯圖片" msgid "Edit interaction settings" msgstr "編輯互動設定" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "編輯心水主題" @@ -4397,7 +4365,7 @@ msgstr "編輯直播狀態" msgid "Edit moderation list" msgstr "編輯內容審覈清單" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "編輯我嘅動態源" @@ -4406,6 +4374,11 @@ msgstr "編輯我嘅動態源" msgid "Edit name" msgstr "編輯名稱" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "編輯用戶" @@ -4444,7 +4417,7 @@ msgstr "編輯用戶清單" msgid "Edit who can reply" msgstr "調整邊啲人可以回覆" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "編輯你嘅新手包" @@ -4500,8 +4473,8 @@ msgstr "嵌入 HTML 程式碼" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "嵌入帖文" @@ -4509,7 +4482,7 @@ msgstr "嵌入帖文" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "將呢條帖文嵌入到你嘅網站嘅話,淨係需要複製下低程式碼片段,跟住將佢貼到落你網站嘅 HTML 程式碼度。" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "嵌入式影片播放器" @@ -4531,9 +4504,9 @@ msgstr "啓用成人內容" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "啓用測試功能" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "啓用字幕" @@ -4550,12 +4523,13 @@ msgstr "啓用外部媒體" msgid "Enable media players for" msgstr "啓用媒體播放器" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "去到此帳號嘅個人檔案,撳<0>鐘仔圖標,即可收到該帳號動態通知<1/>。" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "啓用推播通知" @@ -4581,7 +4555,7 @@ msgstr "喺你「Discover」動態源度啓用時興影片" msgid "Enabled" msgstr "啓用" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "睇晒冇嘢喇" @@ -4608,7 +4582,7 @@ msgstr "輸入字詞或標籤" msgid "Enter code" msgstr "輸入代碼" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "進入全螢幕" @@ -4650,11 +4624,11 @@ msgstr "輸入你嘅用戶名稱同密碼" msgid "Enters full screen" msgstr "進入全螢幕" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "娛樂" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "錯誤" @@ -4684,7 +4658,7 @@ msgstr "儲存檔案嗰陣發生錯誤" msgid "Error receiving captcha response." msgstr "接收 CAPTCHA 回覆嗰陣發生錯誤。" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "錯誤:{error}" @@ -4696,8 +4670,8 @@ msgstr "所有人都可以回覆" msgid "Everybody can reply to this post." msgstr "所有人都可以回覆呢條帖文。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "所有人" @@ -4711,14 +4685,14 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "其他內容" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 msgid "Everything look right?" -msgstr "" +msgstr "確定一切啱晒?" #. Advanced search filter #. Advanced search filter @@ -4738,7 +4712,7 @@ msgstr "排除你跟嘅用戶" msgid "Excludes users you follow" msgstr "排除你跟嘅用戶" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "離開全螢幕" @@ -4755,11 +4729,11 @@ msgstr "展開用戶清單" msgid "Expand or collapse the full post you are replying to" msgstr "展開或摺疊你覆緊嘅完整帖文" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "展開帖文文字" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "展開或摺疊帖文文字" @@ -4802,15 +4776,15 @@ msgstr "血腥、暴露或獵奇等其他可能令人反感嘅媒體內容。" msgid "Explicit sexual images." msgstr "打大赤肋嘅鹹溼相。" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "探索" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "探索應用程式" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "外部媒體偏好設定" @@ -4886,7 +4860,7 @@ msgstr "改唔到帳號代碼,唔該試多次。" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "複製唔到連結" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "離開唔到羣組傾偈" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "撈唔到對話" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "撈唔到動態源" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "撈唔到動態源偏好設定" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "撈唔到通知設定。" @@ -5012,14 +4987,14 @@ msgstr "撈唔到偏好設定。" msgid "Failed to load profiles" msgstr "撈唔到個人檔案" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "撈唔到建議嘅動態源" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "撈唔到建議你跟嘅人" @@ -5027,12 +5002,12 @@ msgstr "撈唔到建議你跟嘅人" msgid "Failed to lock group chat" msgstr "鎖定唔到邀請連結" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "標記唔到所有傾偈做已讀" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "撤回唔到你嘅申請,唔該試多次。" msgid "Failed to resolve location. Please try again." msgstr "取用唔到位置資訊,唔該試多次。" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "存儲唔到草稿" @@ -5191,7 +5166,7 @@ msgstr "虛假帳號或機械人" msgid "False information about elections" msgstr "散播選擧相關虛假資訊" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "動態源" @@ -5212,7 +5187,7 @@ msgstr "動態源建立者" msgid "Feed identifier" msgstr "動態源 ID" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "動態源選單" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "已提交意見到動態源維護者" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "已更新動態源!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "我哋覺得呢啲動態源可能會啱你心水。" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "取得更新" @@ -5273,11 +5244,11 @@ msgstr "取得更新" msgid "File saved successfully!" msgstr "檔案儲存成功!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "按發布者篩選" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "按發布者篩選(目前:{currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "用 {0} 篩選此搵嘢結果" msgid "Filter who can opt to receive notifications for your activity" msgstr "篩選邊個可以選擇接收你嘅動態通知" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "篩選你想接收嘅通知來源" @@ -5318,7 +5289,7 @@ msgstr "篩選你想接收嘅通知來源" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "篩選器" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5323,8 @@ msgstr "去跟更多帳號" msgid "Find and invite friends" msgstr "尋找同邀請朋友" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "尋找聯絡人" @@ -5387,7 +5358,7 @@ msgstr "尋找你嘅朋友" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "透過驗證你嘅電話號碼兼匹配聯絡人,即可尋找你 Bluesky 上嘅朋友。我哋保護你嘅資料,後續操作你話事。<0>想知多啲" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "搵到同聲同氣嘅人" @@ -5429,7 +5400,7 @@ msgstr "聚焦搵嘢欄位" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "跟 {0}" msgid "Follow {displayName}" msgstr "跟隨 {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "跟 {handle}" @@ -5453,11 +5424,11 @@ msgstr "跟 {handle}" msgid "Follow 10 accounts" msgstr "跟 10 個人" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "跟隨 10 個人即可開始" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "跟 7 個人" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "擁躉可以加入" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "你識嘅 @{0} 亦都跟咗佢" @@ -5544,7 +5515,7 @@ msgstr "你識嘅擁躉" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "跟緊 {0}" msgid "Following {displayName}" msgstr "跟緊 {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "跟緊 {handle}" @@ -5578,21 +5549,21 @@ msgstr "跟緊 {handle}" msgid "Following feed preferences" msgstr "「Following」動態源偏好設定" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "「Following」動態源偏好設定" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "跟緊你" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "字型" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "字型大細" @@ -5612,13 +5583,13 @@ msgstr "基於保安理由,我哋需要傳送驗證碼到你嘅電郵地址 <0 msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "基於保安理由,你唔可以再睇返呢個密碼。若然你真係唔知呢個密碼嘅話,你最好去生成一個新嘅密碼。" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "爲咗有最佳體驗,我哋建議使用主題字型。" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "估你心水" @@ -5628,7 +5599,7 @@ msgstr "估你心水" msgid "Forever" msgstr "永遠" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "忘記無盡嘅騷擾" @@ -5647,18 +5618,20 @@ msgstr "唔記得密碼?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "四個代表羣組傾偈嘅訊息氣泡。第一條訊息:「收到風未呀?家陣 Bluesky 都可以開 Group 傾偈喇!」,第二條訊息:「Omg,唔係啩」,第三條訊息:「嘩,一個 Group 可以有 50 人咁多」,第四條訊息:「你仲可以 send 條邀請 Link 畀人添!」" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "光復 Timeline" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "嚟自" #: src/screens/Hashtag.tsx:123 msgid "From {sanitizedAuthor}" -msgstr "" +msgstr "嚟自 {sanitizedAuthor}" #: src/screens/Hashtag.tsx:124 msgid "From @{sanitizedAuthor}" @@ -5674,7 +5647,7 @@ msgstr "嚟自 <0/>" msgid "From these people" msgstr "嚟自呢啲人" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "生成一個新手包" @@ -5712,45 +5685,45 @@ msgstr "重新連結 Germ DM" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features we’re testing." -msgstr "" +msgstr "率先體驗我哋測試緊嘅實驗性功能。" #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "尋求協助" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "接收新手包加入、驗證及其他活動動態通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "喺有人跟你嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "喺有人讚你帖文嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "喺有人讚你轉發嘅帖文嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "喺有人提及你嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "喺有人引用你帖文嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "喺有人回覆你帖文嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "喺有人轉發你帖文嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "喺有人轉發咗你嘅轉發帖文嗰陣收到通知。" @@ -5762,15 +5735,15 @@ msgstr "喺有人同你傳送訊息請求嗰陣收到通知。" msgid "Get notifications when people send you messages." msgstr "喺有人向你傳送訊息嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "喺你訂閱嘅帖文有動態更新嗰陣收到通知。" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "喺佢出新帖嗰陣收到通知" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "喺 {name} 出新帖嗰陣收到通知" @@ -5799,11 +5772,11 @@ msgstr "開始啦" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF 已上載" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "整張相喺你嘅 profile 嗰度先啦" @@ -5813,20 +5786,20 @@ msgstr "歌頌暴力" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5849,9 @@ msgid "Go live for" msgstr "直播持續時長" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "去到 {0} 嘅個人檔案" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "已更新羣組傾偈名稱" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "羣組傾偈設定" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "羣組傾偈唔得超過 {0, plural, other {# 個人}}。" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "羣組已鎖定" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "羣組名稱" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "羣組名稱太長,{MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {唔得超過 # 個字元。}}" @@ -6077,7 +6051,7 @@ msgstr "有害或高風險活動" msgid "Harming or endangering minors" msgstr "侵害或危害未成年人" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "標籤" @@ -6098,7 +6072,7 @@ msgstr "有咗代碼?<0>撳呢度。" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "係咪攪錯咗你嘅位置?<0>撳呢度用 GPS 更新你嘅位置。" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "遇到問題?" @@ -6114,7 +6088,7 @@ msgstr "由 Bluesky 保留 7 天以防濫用,隨後刪除" msgid "Help" msgstr "協助" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "上載一張相或整張頭像,等大家知道你唔係機械人。" @@ -6140,7 +6114,7 @@ msgstr "哈佬!" msgid "Hidden" msgstr "隱藏" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "俾你嘅內容審覈設定所隱藏。" @@ -6148,9 +6122,9 @@ msgstr "俾你嘅內容審覈設定所隱藏。" msgid "Hidden list" msgstr "隱藏清單" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "隱藏清單" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "隱藏" @@ -6181,7 +6155,7 @@ msgstr "隱藏清單" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "隱藏密碼" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6172,7 @@ msgstr "幫所有人隱藏回覆" msgid "Hide reply for me" msgstr "幫我隱藏回覆" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "隱藏呢張卡片" @@ -6218,12 +6192,12 @@ msgstr "係咪要隱藏呢個回覆?" msgid "Hide translation" msgstr "隱藏翻譯" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "隱藏時興話題" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "係咪要隱藏時興話題?" @@ -6240,7 +6214,7 @@ msgstr "隱藏用戶清單" msgid "Hide verification badges" msgstr "隱藏認證標記" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "隱藏內容" @@ -6255,11 +6229,11 @@ msgstr "咦,睇嚟你用緊<0>應用程式專用密碼登入。想設定 #: src/ageAssurance/useVerificationFlow.ts:122 msgid "Hmm, it seems we weren't able to compute your level of access. Please try again." -msgstr "" +msgstr "Errr……我哋暫時判斷唔到你嘅取用權限,唔該試多次。" #: src/ageAssurance/useVerificationFlow.ts:141 msgid "Hmm, it seems your device was unable to share age information with us." -msgstr "" +msgstr "Errr……睇落你嘅裝置提供唔到年齡資訊畀我哋。" #: src/view/com/posts/PostFeedErrorMessage.tsx:125 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." @@ -6293,8 +6267,8 @@ msgstr "唔好意思,我哋撈唔到嗰個審覈服務。" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "幫緊你幫緊你!我哋而家逐步開放影片功能,而你仲喺等候名單嗰度。遲啲返嚟睇吓啦!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6315,15 +6289,11 @@ msgstr "託管服務提供者" #. placeholder {0}: toNiceHostingUrl(state.pdsUrl) #: src/screens/Login/LoginForm.tsx:655 msgid "Hosting provider: {0}" -msgstr "" +msgstr "託管服務提供者:{0}" #: src/screens/Login/LoginForm.tsx:657 msgid "Hosting provider: Bluesky" -msgstr "" - -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "熱門" +msgstr "託管服務提供者:Bluesky" #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" @@ -6409,6 +6379,7 @@ msgstr "若然你更新咗電郵地址,電郵雙重驗證將會停用。" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "若然你想改你嘅密碼,我哋會就會傳送一個驗證碼畀你驗證呢個係你嘅帳號。" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "若然你想限制邊個可以收到你帳號嘅動態通知,可去到<0>設定 → 私隱同保安變更呢個設定。" @@ -6548,7 +6519,7 @@ msgstr "應用程式內、推播、所有人" msgid "In-app, push, people you follow" msgstr "應用程式內、推播、你跟嘅人" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "收件箱得個吉" @@ -6560,6 +6531,7 @@ msgstr "收件箱乾淨晒!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "而家淨係得你一個人!用上高搵嘢功能將更加多人擺到落你嘅新手包度。" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "作業 ID:{0}" @@ -6816,8 +6788,8 @@ msgstr "加入對話" msgid "Journalism" msgstr "記者" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "繼續編輯" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS 網站" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0} 所標記。" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "發布者所標記。" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "標記" @@ -6850,9 +6822,9 @@ msgstr "已加入標記" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "套用到此帖文嘅標記" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "標記係用戶同內容嘅註解。佢哋可以用嚟隱藏、警告同管理你嘅社交網絡。" @@ -6864,7 +6836,7 @@ msgstr "你帳號上嘅標記" msgid "Language" msgstr "語言" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "語言設定" @@ -6874,7 +6846,7 @@ msgstr "語言設定" msgid "Languages" msgstr "語言" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "大啲" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "最後一次請求喺冇幾耐前" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "最新" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "想知多啲" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "想知多啲" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "想知多啲<0>點用進階搵嘢。" @@ -6937,8 +6909,8 @@ msgstr "想知多啲匯入聯絡人功能" msgid "Learn more about self hosting your PDS." msgstr "想知多啲點樣自行架設 PDS。" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "想知多啲呢個內容所套用嘅內容審覈措施" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "想知多啲呢啲變化資訊以及點樣同我哋分享你嘅睇法,可以閱讀我哋嘅網誌文章。" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "想知多啲呢個警告" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "想知多啲去你嘅<0>帳號設定。" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "想知多啲。" @@ -6993,8 +6965,8 @@ msgstr "離開" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "離開 Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "離開呢度傾偈之後將會永久鎖定,你之後會加唔返入嚟㗎。" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "離開羣組傾偈。" @@ -7042,7 +7014,7 @@ msgstr "離開羣組傾偈。" msgid "left to go." msgstr "個人排喺你前面。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "等我自己揀" @@ -7057,7 +7029,7 @@ msgstr "行啦我哋!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "淺色" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "淺色" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "讚佢" @@ -7076,7 +7048,7 @@ msgstr "讚佢" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "讚佢({0, plural, one {# 人讚佢} other {# 人讚佢}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "讚好 10 條帖文" @@ -7085,7 +7057,7 @@ msgstr "讚好 10 條帖文" msgid "Like 10 posts to train the Discover feed" msgstr "讚夠 10 條帖文去訓練「Discover」動態源" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "讚好呢個動態源" @@ -7093,8 +7065,8 @@ msgstr "讚好呢個動態源" msgid "Like this labeler" msgstr "讚呢個標記服務" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "讚過" @@ -7111,27 +7083,45 @@ msgstr "讚過" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "有 {0, plural, one {# 人} other {# 人}}讚佢" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "有 {likeCount, plural, one {# 人} other {# 人}}讚佢" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "讚好" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "讚好你轉發嘅帖文" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "呢條帖文嘅讚數" @@ -7144,7 +7134,7 @@ msgstr "直列模式" msgid "Link copied to clipboard" msgstr "已複製連結到剪貼簿" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "清單" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "已唔再靜音清單" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "直播" msgid "Live event happening now: {0}" msgstr "進行緊嘅直播活動:{0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "已隱藏直播活動" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "已唔再隱藏直播活動" @@ -7279,12 +7269,12 @@ msgstr "直播功能仲喺測試階段" msgid "Live link" msgstr "直播連結" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "再撈啲" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "再撈啲建議動態源" @@ -7292,8 +7282,8 @@ msgstr "再撈啲建議動態源" msgid "Load new notifications" msgstr "撈吓新嘅通知" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "鎖定此羣組傾偈" msgid "Locked" msgstr "已鎖定" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "日誌" @@ -7387,7 +7377,7 @@ msgstr "愛情 GIF" msgid "Make adjustments to email settings for your account" msgstr "調整你帳號綁定嘅電郵設定" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "幫我整一個" @@ -7411,22 +7401,22 @@ msgstr "管理你嘅靜音字詞同標籤" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "手動" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "標記晒做已讀" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "標記晒所有傾偈做已讀" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "標記做已讀" msgid "Marked all as read" msgstr "已標記晒做已讀" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "已標記晒所有傾偈做已讀" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "已標記晒所有邀請做已讀" @@ -7456,8 +7446,12 @@ msgstr "已標記晒所有邀請做已讀" msgid "Maybe later" msgstr "遲啲先啦" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "媒體" @@ -7475,7 +7469,7 @@ msgstr "媒體已儲存到其他裝置" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "可能會令某啲受眾感到不安或造成不適嘅媒體內容。" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "已從羣組傾偈移除成員。" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "提到嘅用戶" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "提及" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "已刪除訊息" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "傳送唔到訊息。" @@ -7563,15 +7557,15 @@ msgstr "訊息內容太長({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "訊息選項" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "傾偈" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "當對方封鎖咗你,佢嘅訊息將會隱藏。" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "當你封鎖咗對方,佢嘅訊息將會隱藏。" @@ -7592,7 +7586,7 @@ msgstr "誤導" msgid "Missing media" msgstr "缺失媒體檔案" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "內容審覈" @@ -7636,7 +7630,7 @@ msgstr "已更新內容審覈清單" msgid "Moderation lists" msgstr "內容審覈清單" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "內容審覈清單" @@ -7645,7 +7639,7 @@ msgstr "內容審覈清單" msgid "moderation settings" msgstr "內容審覈設定" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "內容審覈狀態" @@ -7786,7 +7780,7 @@ msgstr "已靜音" msgid "Muted accounts" msgstr "靜音咗嘅帳號" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "靜音咗嘅帳號" @@ -7867,7 +7861,6 @@ msgstr "需要擧報侵犯版權、法律要求,或監管合規問題?" msgid "Nevermind, create a handle for me" msgstr "唔使喇,幫我整個帳號代碼" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "至新" @@ -7893,11 +7886,11 @@ msgstr "嚟自 {firstAuthorName} 嘅新{postsCount, plural, one {帖文} other { #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "同人傾偈" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "新功能" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "新擁躉" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "建立羣組傾偈" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "建立羣組傾偈" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "同呢啲人建立羣組傾偈:" @@ -7966,13 +7959,13 @@ msgstr "新清單" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "新訊息請求" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "新訊息" @@ -7982,12 +7975,12 @@ msgstr "新訊息" msgid "New password" msgstr "新密碼" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "新帖文" @@ -8011,7 +8004,7 @@ msgstr "建立新手包" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "第一次用 Bluesky?<0>註冊" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "最新回覆行先" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "新聞" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "下一張圖片" msgid "Night" msgstr "晚黑" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "冇廣告,冇侵入式追踪,當然亦冇成癮性設計。 Bluesky 尊重你嘅時間同注意力。" @@ -8067,7 +8060,7 @@ msgstr "而家仲未有 App 專用密碼" #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "暫時未有測試功能。" #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8091,7 @@ msgstr "未有設定過期時間" msgid "No feeds found. Try searching for something else." msgstr "搵唔到任何動態源,試吓搵過第啲。" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "而家仲未有擁躉" @@ -8118,7 +8111,7 @@ msgstr "冇圖片" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "而家仲未有人讚" @@ -8135,7 +8128,7 @@ msgstr "仲未有清單" msgid "No longer following {0}" msgstr "已唔再跟随 {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "而家仲未有媒體內容" @@ -8143,7 +8136,7 @@ msgstr "而家仲未有媒體內容" msgid "No messages yet" msgstr "而家仲未有訊息" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "告別無謂杞人憂天嘅垃圾資訊演算法,搵啲益你而非害你嘅動態源。" @@ -8184,12 +8177,12 @@ msgstr "冇人可以傳送訊息" msgid "No posts here" msgstr "呢度未有任何帖文" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "而家仲未有帖文" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "而家仲未有人引用" @@ -8202,7 +8195,7 @@ msgstr "未有近排使用嘅 GIF,試住帖文加入 GIF 再返嚟睇吓啦。 msgid "No replies" msgstr "冇回覆" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "而家仲未有人回覆" @@ -8217,13 +8210,13 @@ msgstr "冇嘢到" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "冇嘢到" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "搵唔到「{0}」嘅結果。" @@ -8236,23 +8229,23 @@ msgstr "搵唔到結果" msgid "No results found for \"{query}\"" msgstr "搵唔到符合「{query}」嘅結果" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "用咗進階搵嘢篩選器後,搵唔到符合「<0>{query}」嘅結果。" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "搵唔到符合「<0>{query}」嘅結果。" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "用咗進階搵嘢篩選器後,搵唔到結果。" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "冇嘢到。" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "而家仲未有新手包" @@ -8265,7 +8258,7 @@ msgstr "唔使,多謝" msgid "No translation received from your device." msgstr "無法從你嘅裝置取得翻譯結果。" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "而家仲未有包含影片帖文" @@ -8278,7 +8271,7 @@ msgstr "冇人" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "而家仲未有人讚喎,一唔係你做第一個啦!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "而家仲未有人引用喎,一唔係你做第一個啦!" @@ -8298,6 +8291,10 @@ msgstr "非自願嘅私密影像(NCII)" msgid "Non-sexual Nudity" msgstr "非性裸體" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "喺呢個平臺用唔到。" msgid "Not followed by anyone you’re following" msgstr "你識得嘅人入邊冇人跟隨佢" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "搵唔到" @@ -8333,7 +8330,7 @@ msgstr "關於分享嘅注意事項" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "註:Bluesky 係一個開放同公開嘅社羣網絡。呢個設定淨係會限制你嘅內容喺 Bluesky 應用程式同網站上面嘅可見度,而其他 App 可能唔會遵守呢個設定。你嘅內容仍然有可能會俾其他 App 同網站顯示畀未登入嘅用戶。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "註:呢條帖文淨係得登入咗嘅用戶先睇到。" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "而家仲未有收藏內容" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "通知設定" @@ -8353,11 +8350,12 @@ msgstr "通知設定" msgid "Notification sounds" msgstr "通知音效" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "大鑊!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "好嘅" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "好嘅" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "重新開始引導流程" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "揀中嘅人入邊有個人唔接受羣組傾偈。" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "揀中嘅人入邊有個人封鎖你,所以傳送唔到訊息。" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "部分 GIF 圖片缺少替代文字。" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "部分圖片缺少替代文字。" @@ -8454,11 +8454,11 @@ msgstr "你所揀選嘅部分檔案格式唔支援。" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "你揀中嘅部分檔案太大,最大檔案大細係 {VIDEO_MAX_SIZE_MB} MB。" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "部分帖文內容太長,儲存唔到做草稿。{MAX_DRAFT_GRAPHEME_LENGTH, plural, one {字數上限 # 個字元。} other {字數上限 # 個字元。}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "部分影片缺少替代文字。" @@ -8471,7 +8471,7 @@ msgstr "淨係得{0}可以回覆。" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "只保留前 {0} {2, plural, other {張圖片}}(共 {1} 張);最多加入 {MAX_GALLERY_IMAGES} 張圖片" @@ -8519,7 +8519,7 @@ msgstr "只顯示帶有影片嘅帖文" msgid "Only replies" msgstr "只顯示回覆" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "淨係支援 WebVTT(.vtt)檔案" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "弊,搵唔到呢份個人檔案,試吓掃第個。" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "大鑊!" @@ -8544,7 +8544,7 @@ msgstr "大鑊!" msgid "Open advanced search options" msgstr "打開進階搵嘢選項" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "打開頭像製作器" @@ -8570,21 +8570,22 @@ msgstr "打開對話選項" msgid "Open draft" msgstr "打開草稿" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "打開櫃桶選單" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "打開 Emoji 選擇器" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "打開動態源資訊畫面" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "打開動態源選項選單" @@ -8627,7 +8628,7 @@ msgstr "開啓內容審覈偵錯頁面" msgid "Open muted words and tags settings" msgstr "打開靜音字詞同標籤設定" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "打開新手包" @@ -8681,7 +8682,7 @@ msgstr "打開對話框嚟喺你嘅帖文度加入內容警告" #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "打開對話框去變更你登入嘅託管服務提供者" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8700,7 @@ msgstr "打開調試條目嘅額外詳細資訊" msgid "Opens alt text dialog" msgstr "打開替代文字對話框" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "打開你嘅裝置上嘅相機" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "打開流程去建立一個新嘅 Bluesky 帳號" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "打開流程去登入你現有嘅 Bluesky 帳號" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "已更新密碼!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "暫停" @@ -8925,12 +8926,12 @@ msgstr "暫停" msgid "Pause GIF" msgstr "暫停 GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "暫停影片" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "用戶" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName} 跟嘅人可以申請加入" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0} 跟咗嘅人" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "跟緊 @{0} 嘅人" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "我跟嘅人" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "我跟嘅人可以申請加入" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "你跟嘅人" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "圖片唔啱細路睇。" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "固定動態源" @@ -9034,7 +9035,7 @@ msgstr "固定動態源" msgid "Pin to home" msgstr "固定到首頁" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "固定到首頁" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "固定咗" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "固定 {0} 到首頁" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "固定喺你嘅動態源" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "播放" @@ -9076,8 +9077,8 @@ msgstr "播放 {0}" msgid "Play GIF" msgstr "播放 GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "播放影片" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "請喺下低寫低你嘅訊息:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "政治" @@ -9269,7 +9270,7 @@ msgstr "政治" msgid "Porn" msgstr "色情" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "發布" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "帖文" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "發布一張相片" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "發布一條影片" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "發晒佢哋" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "點都要發布" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "已封鎖帖文" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} 嘅帖文" @@ -9340,7 +9341,7 @@ msgstr "呢條帖文俾你隱藏咗" msgid "Post interaction settings" msgstr "帖文互動設定" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "帖文互動設定" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "已固定帖文" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "已收藏帖文" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "已唔再固定帖文" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "帖文" @@ -9398,6 +9396,10 @@ msgstr "可以根據字詞、標籤,又或兩種一齊去靜音帖文。我哋 msgid "Posts hidden" msgstr "帖文隱藏咗" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "潛在誤導性連結" @@ -9449,20 +9451,21 @@ msgstr "私隱" msgid "Privacy and security" msgstr "私隱同保安" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "私隱同保安" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "私隱同保安設定" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "私隱政策" msgid "Privacy violation of a minor" msgstr "侵犯未成年人私隱" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "處理緊 GIF……" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "處理緊條片……" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "公開、可分享嘅清單,可以用嚟批量靜音或封鎖帳號。" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "發布帖文" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "發布帖文" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "發布回覆" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "發布回覆" @@ -9599,12 +9602,12 @@ msgstr "已拒絕引用帖文" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "引用" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "引用呢條篇帖文" @@ -9647,7 +9650,7 @@ msgstr "重新啓用你嘅帳號" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "繼續閱讀 {0, plural, other {# 條回覆}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "閱讀點用進階搵嘢篩選器" @@ -9657,11 +9660,11 @@ msgstr "閱讀點用進階搵嘢篩選器" msgid "Read blog post" msgstr "閱讀網誌文章" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "睇少啲" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "睇多啲" @@ -9687,11 +9690,11 @@ msgstr "睇吓 Bluesky 私隱政策" msgid "Read the Bluesky Terms of Service" msgstr "睇吓 Bluesky 服務條款" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "眞實對話。" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "眞實用戶。" @@ -9721,10 +9724,6 @@ msgstr "近排嘅搵嘢記錄" msgid "Recently used" msgstr "近排使用" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "推薦" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "重新連線" @@ -9748,7 +9747,7 @@ msgstr "拒絕傾偈邀請" msgid "Reject join request" msgstr "拒絕加入申請" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "撈多次對話" @@ -9766,7 +9765,7 @@ msgstr "撈多次對話" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "刪除" @@ -9792,8 +9791,8 @@ msgstr "移除 {displayName}?" msgid "Remove {q}" msgstr "移除 {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "移除帳號" @@ -9845,15 +9844,15 @@ msgstr "移除篩選條件" msgid "Remove from chat" msgstr "喺傾偈度刪除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "喺我嘅動態源度刪除" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "係咪要喺快速存取中刪除?" @@ -9862,7 +9861,7 @@ msgstr "係咪要喺快速存取中刪除?" msgid "Remove from saved feeds" msgstr "喺儲存咗嘅動態源度刪除" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "從帖文收藏度刪除" @@ -9880,8 +9879,8 @@ msgstr "刪除圖片" msgid "Remove live status" msgstr "刪除直播狀態" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "移除成員" @@ -9943,7 +9942,7 @@ msgstr "已從清單度刪除" msgid "Removed from saved feeds" msgstr "已從儲存咗嘅動態源度刪除" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "已從帖文收藏度刪除" @@ -9952,7 +9951,7 @@ msgstr "已從帖文收藏度刪除" msgid "Removed from starter pack" msgstr "已從新手包度刪除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "覆你" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "{senderName} 覆咗訊息,撳吓轆到嗰度" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" -msgstr "" +msgstr "此回覆嘅訊息喺你加入前傳送" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "有人覆咗訊息,撳吓轆到嗰度" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "回覆" @@ -10037,7 +10037,7 @@ msgstr "呢條帖文嘅回覆經已關閉。" msgid "Reply" msgstr "回覆" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "回覆" @@ -10098,8 +10098,8 @@ msgstr "擧報對話" msgid "Report dialog" msgstr "擧報對話框" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "擧報動態源" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "你所轉發" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "轉發" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "轉發呢條帖文" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "轉發你轉發嘅帖文" @@ -10253,7 +10253,7 @@ msgstr "已送出申請" msgid "Requests" msgstr "邀請" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10333,7 +10333,7 @@ msgstr "重設密碼" #: src/screens/Login/LoginForm.tsx:422 msgid "Reset your password by sending a code to your email" -msgstr "" +msgstr "透過傳送驗證碼到你嘅電郵去重設密碼" #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 @@ -10358,10 +10358,10 @@ msgstr "試多次執行上一個出錯誤嘅動作" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "返去首頁" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "返去上一頁" @@ -10406,7 +10406,7 @@ msgstr "返去上一步" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "顯示密碼" #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "儲存出世日期" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "儲存變更" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "係咪要儲存變更?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "儲存草稿" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "係咪要儲存草稿?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "儲存 QR code" msgid "Save these options for next time" msgstr "儲存呢啲選項供下次使用" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "儲存到我嘅動態源度" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "儲存咗嘅動態源" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "帖文收藏" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "已儲存到你嘅動態源度" @@ -10520,8 +10520,8 @@ msgstr "已儲存到你嘅動態源度" msgid "Say hello!" msgstr "Say 哈嘍!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "試吓同其他人 say 哈佬啦" @@ -10535,7 +10535,7 @@ msgstr "掃描" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "掃描 QR Code" @@ -10543,15 +10543,15 @@ msgstr "掃描 QR Code" msgid "Science" msgstr "科學" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "向左捲動" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "向右捲動" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "轆到回覆嘅訊息度" @@ -10564,8 +10564,8 @@ msgstr "轆到去頂部" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "搵嘢" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "搵 @{0} 嘅帖文" @@ -10602,21 +10602,21 @@ msgstr "搵「{interestsDisplayName}」(已揀選)" #: src/screens/Search/components/AutocompleteResults.tsx:49 msgid "Search for “{searchText}”" -msgstr "" +msgstr "搵「{searchText}」" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "搵 {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "搵你想同其他人推薦嘅動態源。" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "搵更多帳號" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "搵更多動態源" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "搵 GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "未登入狀態用唔到搵嘢功能" @@ -10709,6 +10709,7 @@ msgstr "喺 Bluesky 度搵工" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "睇多啲" @@ -10716,8 +10717,12 @@ msgstr "睇多啲" msgid "See more suggested profiles" msgstr "睇多啲建議個人檔案" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "睇吓建議帳號" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "播放進度條。用方向掣控制行前同褪後,撳空白掣控制播放或暫停" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "揀選「{interestsDisplayName}」類別" @@ -10748,7 +10753,7 @@ msgstr "揀選 {0}" msgid "Select {langName}" msgstr "揀選 {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "揀一隻色" @@ -10764,11 +10769,11 @@ msgstr "揀選帳號" msgid "Select an app language" msgstr "揀選應用程式語言" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "揀個頭像" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "揀個 Emoji" @@ -10780,12 +10785,13 @@ msgstr "揀選一個選項" msgid "Select app language" msgstr "揀選應用程式語言" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "揀選字幕檔案(.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "揀選傾偈「{name}」" @@ -10826,7 +10832,7 @@ msgstr "揀選 GIF" msgid "Select GIF \"{0}\"" msgstr "揀選 GIF「{0}」" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "揀選羣組傾偈成員" @@ -10864,7 +10870,7 @@ msgstr "揀選慣用語言" msgid "Select telephone code" msgstr "揀選國家代碼" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "揀個 {emojiName} Emoji 做你嘅頭像" @@ -10945,7 +10951,8 @@ msgstr "傳送訊息" msgid "Send post to {name}" msgstr "傳送帖文畀 {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "傳送帖文到……" @@ -10963,12 +10970,12 @@ msgstr "從你嘅電話傳送呢條訊息" msgid "Send verification email" msgstr "傳送驗證電郵" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "透過私訊傳送" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "喺下低設定好出世日期,我哋即刻畀你繼續出 Post 同探 #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "手動設定你嘅託管服務提供者" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "手動設定你嘅託管服務提供者" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "設定電郵嚟重設密碼" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "設定" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "嚟自其他人嘅動態通知設定" @@ -11036,49 +11043,49 @@ msgstr "嚟自其他人嘅動態通知設定" msgid "Settings for allowing others to be notified of your posts" msgstr "允許其他人接收你出新貼通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "讚好通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "提及通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "新擁躉通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "其他通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "轉發嘅讚好通知設定" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "新訊息請求嘅通知設定" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "新訊息嘅通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "轉發嘅轉發通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "引用通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "回覆通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "轉發通知設定" @@ -11109,14 +11116,14 @@ msgstr "分享" #: src/ageAssurance/useVerificationFlow.ts:62 msgid "Share age range" -msgstr "" +msgstr "分享年齡範圍" #: src/view/com/profile/ProfileMenu.tsx:549 msgid "Share anyway" msgstr "點都要分享" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "分享發布者 DID" @@ -11125,9 +11132,9 @@ msgstr "分享發布者 DID" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "分享意見" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "分享連結對話框" msgid "Share my profile" msgstr "分享我嘅個人檔案" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "分享帖文 at:// 連結" @@ -11169,12 +11176,12 @@ msgstr "分享個人檔案" msgid "Share QR code" msgstr "分享 QR code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "分享呢個動態源" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "分享此搵嘢結果" @@ -11186,8 +11193,8 @@ msgstr "分享呢個新手包" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "分享呢個新手包,等更多人加入你喺 Bluesky 度嘅社羣。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,23 +11210,23 @@ msgstr "分享你嘅聯絡人去尋找朋友" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughts…" -msgstr "" +msgstr "分享你嘅諗法……" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "共用偏好測試器" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 msgid "Sharing your age range reveals only the range associated with your Apple Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "分享你嘅年齡範圍只會揭露同你 Apple 帳號關聯嘅資訊(例如:你年滿 18 歲)。<0>你嘅確切年齡同生日絕對唔會被分享,而呢啲資料亦絕對唔會離開呢部裝置。因此,呢個功能凈係幫此裝置解除限制。抑或,<1>你可以用我哋信任嘅合作夥伴 KWS去完成驗證,方便喺所有平台上啓用取用權限。" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "分享你嘅年齡範圍只會揭露同你 Google 帳號關聯嘅資訊(例如:你年滿 18 歲)。<0>你嘅確切年齡同生日絕對唔會被分享,而呢啲資料亦絕對唔會離開呢部裝置。因此,呢個功能凈係幫此裝置解除限制。抑或,<1>你可以用我哋信任嘅合作夥伴 KWS去完成驗證,方便喺所有平台上啓用取用權限。" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "顯示" msgid "Show alt text" msgstr "顯示替代文字" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "點都要顯示" @@ -11274,9 +11281,9 @@ msgstr "點都要顯示呢個清單" msgid "Show lists of users to select from" msgstr "顯示有得揀選嘅用戶清單" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "顯示更多" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "顯示警告兼且喺動態源度篩選" msgid "Show when you’re live" msgstr "顯示直播狀態" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "顯示關於呢條帖文嘅建立時間資訊" @@ -11341,15 +11348,15 @@ msgstr "顯示關於呢條帖文嘅建立時間資訊" msgid "Shows other accounts you can switch to" msgstr "顯示其他你切換得到嘅帳號" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "顯示內容" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "顯示內容" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "用 {0} 身份登入" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in as…" -msgstr "" +msgstr "登入爲……" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "係咪要登出?" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "註冊" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "需要登入" @@ -11469,7 +11476,7 @@ msgstr "跳過" msgid "Skip contact sharing and continue to the app" msgstr "跳過分享聯絡人兼繼續使用應用程式" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "跳過空白帖文?" @@ -11487,7 +11494,7 @@ msgstr "跳到下一步" msgid "slide" msgstr "幻燈片" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "細啲" @@ -11499,14 +11506,14 @@ msgstr "暫停提醒" msgid "So many thoughts, you should post one" msgstr "咁多諗頭,不如出 Post 講吓" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "由你話事嘅社交平臺。" #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "識得嘅讚好者互動情況" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "有人離開咗羣組" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "有人畀咗個 {0} 反應" @@ -11554,9 +11561,9 @@ msgstr "有人畀咗個 {0} 反應" msgid "Someone reacted {0} to {target}" msgstr "有人向 {target} 畀咗個 {0} 反應" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" -msgstr "" +msgstr "有人覆咗" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "出咗問題,唔該試多次" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "出咗問題,唔該遲啲試多次。" msgid "Something went wrong. Please try again." msgstr "出咗問題,唔該試多次。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "有輘輷?話畀我哋知。" @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "垃圾訊息或其他虛假欺騙行爲" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "運動" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "睇吓你嘅朋友同跟緊嘅人讚過啲咩嘅帖文。" #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "當你同第個人傾偈之後,對話內容就會喺度出現。" msgid "Start a group chat" msgstr "開始羣組傾偈" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "開始同人傾偈" @@ -11682,17 +11689,17 @@ msgstr "開始搵人加入" msgid "Start adding people!" msgstr "開始搵人加入!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "開始傾偈" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "開始同 {displayName} 傾偈" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "新手包" @@ -11715,12 +11722,16 @@ msgstr "你嘅新手包" msgid "Starter pack is invalid" msgstr "無效新手包" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "新手包" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "新手包可以幫你好輕鬆噉同你嘅朋友分享你最鍾意嘅動態源同用戶。" @@ -11728,7 +11739,7 @@ msgstr "新手包可以幫你好輕鬆噉同你嘅朋友分享你最鍾意嘅動 msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "新手包可以幫你同朋友分享你至愛嘅動態源同人。" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "新手包可以幫你同朋友分享你至愛嘅動態源同人。" @@ -11742,7 +11753,7 @@ msgstr "狀態頁面" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "第 {0} 步(共 {1} 步)" @@ -11754,7 +11765,7 @@ msgstr "已剷晒儲存資料,請即刻重啓應用程式。" msgid "Stored as part of a secure code for matching with others" msgstr "儲存為安全代碼嘅一部分,去匹配其他人" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "故仔書" @@ -11787,7 +11798,7 @@ msgstr "提交申訴" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "提交意見" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "喺 {0} 訂閱 {publicationTitle}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "訂閱 @ {0} 去用呢啲標記:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "成功驗證" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "建議" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "建議帳號" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "您所在國家而家未支援呢個功能!唔該遲啲過嚟睇睇。" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "已停權嘅帳號唔得參與羣組傾偈。" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "已停權嘅帳號唔得參與傾偈。" @@ -11921,8 +11934,8 @@ msgstr "切換去 {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "系統" @@ -11945,7 +11958,7 @@ msgstr "轉做私密對話。" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "撳下低「允許」掣允許 Bluesky 取用你嘅位置資訊,我哋會用佢去更準確噉確定你身處地區可用內容同功能。" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "撳去睇詳細資訊" @@ -11976,7 +11989,7 @@ msgstr "撳吓閂咗內容選單" msgid "Tap to copy this invite link" msgstr "撳吓複製此邀請連結" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "撳吓即跳過" @@ -12003,7 +12016,7 @@ msgstr "撳吓移除你嘅 {0} 反應" msgid "Tap to request access to join this group chat" msgstr "撳吓申請加入此羣組傾偈" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "撳吓試多次" @@ -12016,7 +12029,7 @@ msgstr "撳吓顯示 {0} 反應" msgid "Tap to show all reactions" msgstr "撳吓顯示所有反應" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "撳吓顯示反應" @@ -12032,7 +12045,7 @@ msgstr "攪掂晒 - 跟咗 10 個人!" msgid "Task complete - 10 likes!" msgstr "攪掂晒 - 讚夠 10 條帖文!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "敎識我哋嘅演算法知你鍾意啲乜" @@ -12060,7 +12073,7 @@ msgstr "條款" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "多謝你嘅意見!意見經已轉達畀相關動態源維護者。" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "多謝你嘅意見!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "搵唔到嗰個新手包。" msgid "That username is already taken" msgstr "呢個用戶名稱俾人用咗" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "就噉先,咁多位!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "就係咁多喇!" @@ -12171,7 +12184,7 @@ msgstr "呢個動態源俾「Discover」取代。" #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "下低啲標籤已套用到此帖文。" #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "伺服器似乎遇到問題。唔該遲啲試多次。" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "你想睇嘅新手包已經失效。你可以刪咗呢個新手包去。" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "內容選單對應嘅話題" @@ -12238,7 +12251,7 @@ msgstr "你提供嘅驗證碼無效。請確保你用咗正確嘅驗證連結, msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "驗證服務提供者傳送唔到代碼去你嘅電話號碼度,請檢查您的電話號碼跟住試多次。" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "主題" @@ -12266,7 +12279,7 @@ msgstr "載入 GIF 嗰陣出咗問題。請檢查網絡連線狀態,跟住試 msgid "There was a problem with your internet connection, please try again" msgstr "你嘅網絡連線出咗問題,唔該試多次" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "你嘅網絡連線出咗問題,唔該試多次" msgid "There was an issue contacting the server" msgstr "連線到伺服器嗰陣出咗問題" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "連線到伺服器嗰陣出咗問題,請檢查網絡連線狀態跟住試多次。" @@ -12283,8 +12296,8 @@ msgstr "連線到伺服器嗰陣出咗問題,請檢查網絡連線狀態跟住 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "攞緊通知嗰陣出咗問題,撳呢度試多次。" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "攞緊帖文嗰陣出咗問題,撳呢度試多次。" @@ -12309,7 +12322,7 @@ msgstr "攞緊你嘅服務資料嗰陣出咗問題" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "刪除動態源嗰陣出咗問題。請檢查你嘅網絡連線狀態,跟住試多次。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "呢啲設定淨係俾「Following」動態源用。" msgid "These URLs" msgstr "呢啲網址" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "佢哋此傾偈嘅擁有者" @@ -12392,7 +12405,7 @@ msgstr "佢哋此傾偈嘅擁有者" msgid "They won’t be able to rejoin unless you invite them again." msgstr "除非你再次邀請,否則佢哋加唔返入嚟。" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} 已被標記:" @@ -12408,7 +12421,7 @@ msgstr "呢個帳號已被擁有者標記做自動化帳號。" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "呢個帳號試過授權一次或多次驗證,但係仲未正式驗證到。" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "呢個帳號要求用戶登入之後先至畀睇佢嘅個人檔案。" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "呢個動態源度得個吉!你可能需要跟更多用戶,或檢查你嘅語言設定。" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "呢個動態源度得個吉。" @@ -12554,7 +12567,7 @@ msgstr "基於擁有者被系統審核鎖定原因,此羣組已鎖定" msgid "This handle is reserved. Please try a different one." msgstr "呢個帳號代碼預留咗畀其他地方用,唔該試吓第個。" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "無法使用呢張圖片,試吓第種檔案格式,好似 .jpg 或 .png。" @@ -12572,7 +12585,7 @@ msgstr "此邀請連結無效" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 msgid "This is just a one-time security check, since we haven't seen this account on this device before." -msgstr "" +msgstr "呢個係一次性嘅安全檢查,事緣我哋之前未喺呢部裝置度見過呢個帳號。" #: src/features/liveNow/components/EditLiveDialog.tsx:171 #: src/features/liveNow/components/GoLiveDialog.tsx:161 @@ -12594,9 +12607,9 @@ msgstr "呢個標記係你所加。" #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "此標記已套用於成個用戶帳號,同時會喺所有帖文度出現。" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "呢個標記服務仲未公開佢發布嘅標記類型,亦有可能唔會再提供服務。" @@ -12621,13 +12634,13 @@ msgstr "呢份清單度得個吉。" msgid "This message is hidden" msgstr "此訊息已隱藏" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "事緣此用戶封鎖咗你,此訊息已隱藏。" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "事緣你封鎖咗此用戶,此訊息已隱藏。" @@ -12641,7 +12654,7 @@ msgstr "呢個人封鎖咗你" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "呢條帖文話係話喺 <0>{0} 發布嘅,但係最先出現喺 Bluesky 嘅時間係喺 <1>{1}。" @@ -12649,7 +12662,7 @@ msgstr "呢條帖文話係話喺 <0>{0} 發布嘅,但係最先出現喺 Bl msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "呢條帖文存在未知嘅內容類型,你應用程式嘅版本可能過咗期。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "呢條帖文淨係得登入咗嘅用戶先睇到。" @@ -12661,7 +12674,7 @@ msgstr "呢條帖文經已俾發布者刪除" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "呢條帖文將會喺討論串同動態源度隱藏,呢個操作冇得取消。" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "呢條帖文嘅發布者唔俾人引用。" @@ -12698,11 +12711,12 @@ msgstr "呢個過程幾分鐘就攪掂。" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "呢個用戶仲未設定名稱,因此唔得授予驗證。" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "呢個用戶仲未有人跟佢。" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "呢個用戶封鎖咗你,唔得傳送訊息。" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "呢個用戶封鎖咗你,你冇得睇佢發嘅內容。" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "呢個用戶停用咗傾偈功能,唔得傳送訊息。" @@ -12733,17 +12748,17 @@ msgstr "呢個用戶喺你靜音咗嘅 <0>{0} 清單度。" msgid "This user is new here. Press for more info about when they joined." msgstr "呢個用戶啱嚟冇耐,撳低去睇佢具體幾時入嚟嘅時間。" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "呢個用戶未有跟過任何人。" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "你嘅裝置播放唔到呢條影片,瀏覽器或系統可能唔支援影片解碼器(H.264/AAC)。" #: src/view/com/composer/videos/VideoPreview.web.tsx:65 msgid "This video can’t be previewed in your browser. It will still be uploaded." -msgstr "" +msgstr "呢條片喺你嘅瀏覽器度睇唔到,但依然會上載。" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 msgid "This will create a new list with the same name, description, and members as this starter pack." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "噉做會永久刪除你嘅 Bluesky 帳號 <0>{currentHandle} 同所有相關資料。留意返,噉樣亦會影響到你用呢個帳號使用其他 <1>AT Protocol 嘅服務。" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "噉樣會喺快速存取清單度移除 @{0}。" @@ -12786,7 +12801,7 @@ msgstr "討論串偏好設定" msgid "Threaded" msgstr "樹狀模式" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "討論串偏好設定" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "聯絡人過多 - 你匯入嘅聯絡人數量經已超過尋找朋友上限" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "至 Hit" @@ -12858,7 +12873,7 @@ msgstr "至 Hit" msgid "Top replies first" msgstr "熱門回覆行先" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "話題" @@ -12893,7 +12908,9 @@ msgstr "你嘅裝置唔支援將原文翻譯成目標語言。" msgid "Tree view" msgstr "樹狀介面" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "時興話題" @@ -12902,7 +12919,7 @@ msgstr "時興話題" msgid "Trending GIFs" msgstr "熱門 GIF" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "時興選項" @@ -12918,11 +12935,11 @@ msgstr "引戰" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "信任源於人際關係、社羣同共享嘅背景,所以我哋亦都引入咗<0>受信任嘅驗證者:可以直接授予驗證其他帳號嘅組織。" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "試吓搵第啲關鍵字,或移除部分篩選條件。" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "試吓搵第啲關鍵字。" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "收取唔到加入申請。" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "搵唔到揀咗嘅接收人。" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "搵唔到揀咗嘅收件人。" @@ -13024,12 +13043,12 @@ msgstr "目前用唔到" msgid "Unavailable feed information" msgstr "取用唔到動態源資訊" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "係咪要解除封鎖帳號?" msgid "Unblock list" msgstr "解除封鎖清單" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "唔再跟 {0}" msgid "Unfollow account" msgstr "唔再跟佢" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "唔再跟呢位用戶" @@ -13132,7 +13151,7 @@ msgstr "未標記嘅成人內容" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "未標記、具虐待性、或非自願嘅成人內容" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "唔再讚佢" @@ -13192,7 +13211,7 @@ msgstr "唔再靜音此羣組傾偈" msgid "Unmute thread" msgstr "唔再靜音討論串" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "唔再靜音影片" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "唔再固定" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "唔再固定動態源" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "唔再喺首頁度固定" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "唔再固定內容審覈清單" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "唔再喺首頁度固定 {0}" @@ -13258,11 +13277,11 @@ msgstr "唔再訂閱呢個標記服務" msgid "Unsubscribed from list" msgstr "經已喺清單度唔再訂閱" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "唔支援呢種剪貼簿內容" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "唔支援嘅影片類型:{mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "更新唔到回覆可見度" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "或上載圖片" @@ -13355,7 +13374,7 @@ msgstr "喺檔案度上載" msgid "Upload from Library" msgstr "喺相片圖庫度上載" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "上載緊 GIF……" @@ -13369,7 +13388,7 @@ msgstr "上載緊圖片……" msgid "Uploading link thumbnail..." msgstr "上載緊連結縮圖……" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "上載緊條片……" @@ -13408,7 +13427,7 @@ msgstr "用呢個同你嘅帳號代碼嚟一齊登入第個應用程式。" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "用你帳號嘅電郵地址,抑或係擁有嘅其他眞實電郵地址,以防 KWS 或 Bluesky 需要同你聯絡。" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "用戶" @@ -13482,7 +13501,7 @@ msgstr "用戶名稱只能包含字母(a-z)、數字及連字號(-)。" #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "用戶名稱或電郵" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13529,7 @@ msgstr "授予唔到驗證,唔該試多次。" msgid "Verification settings" msgstr "驗證設定" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "驗證設定" @@ -13563,7 +13582,7 @@ msgstr "即刻驗證" #: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 #: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 msgid "Verify now using KWS" -msgstr "" +msgstr "即刻使用 KWS 驗證" #: src/components/contacts/screens/PhoneInput.tsx:175 #: src/components/contacts/screens/VerifyNumber.tsx:217 @@ -13618,7 +13637,7 @@ msgstr "影片" msgid "Video failed to process" msgstr "影片處理失敗" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "影片動態源" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "影片嚟自 {0}:{text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "影片嚟自{0}。撳一吓去播放或暫停影片" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "電子遊戲" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "條片經已暫停" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "條片播緊" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "搵唔到條片。" @@ -13653,7 +13672,7 @@ msgstr "搵唔到條片。" msgid "Video settings" msgstr "影片設定" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "影片上載成功" @@ -13662,17 +13681,17 @@ msgstr "影片上載成功" msgid "Video: {0}" msgstr "影片:{0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "影片" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "影片長度唔得超過 3 分鐘。" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "睇吓" @@ -13691,9 +13710,9 @@ msgstr "睇吓 {0} 嘅頭像" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "睇吓 {0} 嘅個人檔案" @@ -13724,13 +13743,13 @@ msgstr "睇吓網誌文章嚟了解更多資訊" msgid "View debug entry" msgstr "睇吓調試條目" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "睇吓詳細資訊" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "睇吓完整嘅討論串" @@ -13761,7 +13780,7 @@ msgstr "睇晒佢哋" msgid "View more trending videos" msgstr "睇多啲時興影片" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "睇吓帖文" @@ -13798,11 +13817,11 @@ msgstr "睇吓此羣組傾偈嘅邀請連結" msgid "View the labeling service provided by @{0}" msgstr "睇吓 @{0} 提供嘅標記服務" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "睇吓呢個用戶嘅認證" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "睇吓邊啲人讚過呢個動態源" @@ -13831,7 +13850,7 @@ msgstr "睇吓你嘅內容審覈清單" msgid "View your muted accounts" msgstr "睇吓你靜音咗嘅帳號" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "睇吓你嘅認證" @@ -13898,7 +13917,7 @@ msgstr "我哋搵唔到呢份清單,可能已經刪咗。" #: src/screens/Login/LoginForm.tsx:348 msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." -msgstr "" +msgstr "我哋搵唔到用此用戶名稱嘅帳號。請檢查有冇打錯,抑或<0>手動設定你嘅託管服務提供者。" #: src/screens/Hashtag.tsx:260 msgid "We couldn't find any results for that tag." @@ -13922,7 +13941,7 @@ msgstr "我哋撈唔到呢個對話設定" #: src/screens/Login/LoginForm.tsx:482 msgid "We couldn’t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." -msgstr "" +msgstr "我哋無法驗證你嘅託管服務提供者。請檢查你嘅網絡連線,抑或<0>手動設定你嘅託管服務提供者。" #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -14001,7 +14020,7 @@ msgstr "我哋會喺搵到你朋友嗰陣通知你。" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "We’d love to hear about your experience testing beta features!" -msgstr "" +msgstr "我哋好想聽吓你對體驗測試功能嘅諗法!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "我哋遇到網絡問題,唔該試多次" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "我哋遇到網絡問題,唔該試多次" @@ -14043,13 +14062,13 @@ msgstr "我哋遇到網絡問題,唔該試多次" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "同你介紹 Bluesky 嘅全新驗證機制 —— 驗證標記。" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "我哋非常之高興你加入我哋!" #: src/ageAssurance/useVerificationFlow.ts:117 msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." -msgstr "" +msgstr "唔好意思,根據你裝置提供嘅資料,你未達到使用 Bluesky 嘅年齡要求。" #: src/ageAssurance/components/NoAccessScreen.tsx:227 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 @@ -14064,13 +14083,15 @@ msgstr "對唔住,但係我哋解析唔到呢份清單。若然呢個問題仲 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "對唔住,我哋而家撈唔到你啲靜音字詞。唔該試多次。" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." -msgstr "" +msgstr "對唔住,未能完成你嘅搵嘢請求。" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "對唔住,無法完成你嘅搵嘢要求。唔該等多幾分鐘試吓。" @@ -14078,7 +14099,7 @@ msgstr "對唔住,無法完成你嘅搵嘢要求。唔該等多幾分鐘試吓 msgid "We're sorry, you cannot access this screen at this time." msgstr "唔好意思,你目前進入唔到呢個頁面。" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "對唔住!你覆緊嘅帖文經已俾人刪咗。" @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "近排點" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "有咩大件事?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "邊啲人可以授權認證?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "大鑊!" @@ -14220,21 +14241,21 @@ msgstr "需要封鎖呢個用戶或離開呢個對話,定一齊執行?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "睇其他草稿之前,你使唔使儲存現有內容先?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "你使唔使儲存現有內容做草稿,留返遲啲再編輯?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "撰寫一條帖文" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "撰寫帖文" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "寫低你嘅回覆" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "你身處嘅地區法例要求我哋允許你使用 Bluesky 之前需要驗證你嘅年齡。" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "你封鎖咗 {0}" @@ -14342,7 +14363,7 @@ msgstr "你已停止直播" msgid "You are not allowed to upload videos." msgstr "你唔得上載影片。" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "你而家仲未跟過任何人" @@ -14362,7 +14383,7 @@ msgstr "你經已驗證。若然你變更名稱,將會失去驗證狀態。<0> msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "你經已驗證。若然你變更帳號代碼,將會失去驗證狀態。<0>想知多啲。" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "你可以喺「內容同媒體」設定度隨時調整你嘅心水主題。" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "你而家可以用你嘅新密碼登入。" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "帖文唔得超過 {MAX_GALLERY_IMAGES, plural, other {# 張圖片}}" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "你淨係可以儲存 1000 字元嘅草稿。" @@ -14439,9 +14460,9 @@ msgstr "你仍然可以睇到傾偈記錄,但係傳送唔到新訊息。" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "你最多可以揀 {MAX_GALLERY_IMAGES, plural, other {# 張圖片}}。" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "你可以遲啲喺設定度改返。" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "你唔得加入超過 {EMOJI_REACTION_LIMIT, plural, other {# 個 emoji 反應}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "你仲未可以建立羣組傾偈。" @@ -14555,7 +14577,7 @@ msgstr "你經已成功驗證電郵地址。你而家可以閂咗呢個對話框 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "你暫時經已達到上載影片嘅上限,唔該遲啲試多次。" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "你呢份草稿有未儲存嘅變更,使唔使儲存咗先?" @@ -14563,7 +14585,7 @@ msgstr "你呢份草稿有未儲存嘅變更,使唔使儲存咗先?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "你有未儲存嘅變更。睇其他草稿之前,使唔使儲存咗先?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "你而家仲未建立任何新手包!" @@ -14614,7 +14636,7 @@ msgstr "你最多只能加入 {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PA msgid "You may only add up to 3 feeds" msgstr "你最多可以加入 3 個動態源" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "你必須係傾偈擁有者先可以移除成員。" @@ -14622,7 +14644,7 @@ msgstr "你必須係傾偈擁有者先可以移除成員。" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "您必須年滿 13 歲先可以使用 Bluesky。閱讀我哋嘅<0>服務條款知多啲。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "你必須跟住至少 7 個人先至可以生成新手套裝。" @@ -14639,7 +14661,7 @@ msgstr "你必須允許取用你嘅媒體內容。" msgid "You need to verify your email address before you can enable email 2FA." msgstr "你需要驗證你個電郵地址先至啓用到電郵雙重驗證。" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "你係呢度傾偈嘅擁有者" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "你家陣可能要重新啓用個應用程式。" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "你畀咗個 {0} 反應" @@ -14667,15 +14689,15 @@ msgstr "你向 {target} 畀咗個 {0} 反應" msgid "You recently changed your birthdate" msgstr "你近排變更咗出世日期" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "你覆咗" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "你覆咗 {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "你覆咗自己" @@ -14715,11 +14737,11 @@ msgstr "除非獲得邀請,否則無法重新加入。" msgid "You: {message}" msgstr "你:{message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "建立完帳號之後,你就會自動跟啲建議嘅用戶同動態源!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "建立完帳號之後,你就會自動跟啲建議嘅用戶!" @@ -14747,11 +14769,11 @@ msgstr "呢啲動態源有新嘢嘅話你都會收到" #: src/ageAssurance/useVerificationFlow.ts:133 msgid "You're all set!" -msgstr "" +msgstr "攪掂晒!" #: src/ageAssurance/useVerificationFlow.ts:127 msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." -msgstr "" +msgstr "攪掂晒!不過喺你證明自己經已成年之前,部分功能可能仍然會受到限制。" #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 msgid "You’re in control" @@ -14791,7 +14813,7 @@ msgstr "你經已轆到最㞘。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "你經已睇晒你嘅動態源喇!去搵更多人嚟跟佢哋啦。" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "你經已達到儲存草稿數量上限" @@ -14799,7 +14821,7 @@ msgstr "你經已達到儲存草稿數量上限" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "你經已達到請求數上限。唔該遲啲試多次。" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "你已經去到 {MAX_FILTERS, plural, other {# 個篩選條件}} 嘅上限。試吓喺現有嘅篩選器度加多啲條件,唔好再開新嘅喇。" @@ -14815,11 +14837,11 @@ msgstr "你經已達到每日上載影片嘅上限(總計影片大細過大) msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "你經已達到每日上載影片嘅上限(影片數量過多)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "你睇晒所有嘢喇。可能係時候要唞陣先?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "你嘅帳號" @@ -14835,11 +14857,11 @@ msgstr "你嘅帳號已被停權" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "你嘅帳號註冊時間太短未畀得你上載影片。唔該遲啲試多次。" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "你嘅帳號建立時間太短" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "你嘅帳號必須建立 7 日以上先可以建立新嘅羣組傾偈。" @@ -14924,14 +14946,14 @@ msgstr "你嘅完整帳號代碼會係 <0>@{0}" #: src/screens/Login/components/HostingProviderDialog.tsx:182 msgid "Your hosting provider can’t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." -msgstr "" +msgstr "無法喺電郵地址判斷到你嘅託管服務提供者,因此用返預設嘅 Bluesky 服務。請改成輸入你嘅用戶名稱,抑或手動設定你嘅託管服務提供者。" #: src/screens/Login/components/HostingProviderDialog.tsx:188 msgid "Your hosting provider is detected automatically from the username you enter." -msgstr "" +msgstr "系統會根據你輸入嘅用戶名稱自動判斷你嘅託管服務提供者。" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "你嘅心水主題經已更新!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "你嘅心水主題可以幫我哋搵到更多你所鍾意嘅內容!" @@ -14967,11 +14989,11 @@ msgstr "你嘅密碼經已變更成功!由而家開始請使用你新嘅密碼 msgid "Your password must be at least 8 characters long." msgstr "你輸入嘅密碼必須至少要 8 個字元。" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "已發布你嘅帖文" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "已發布你嘅帖文" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "你嘅偏好語言" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "你嘅頭像" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "你嘅頭像俾其他用戶嘅頭像一圈圈噉圍住" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "已發布你嘅回覆" @@ -15005,13 +15027,13 @@ msgstr "你嘅擧報會提交去 <0>{0}。" msgid "Your selected interests help us serve you content you care about." msgstr "你揀選嘅心水主題可以幫我哋提供更多你所關注嘅內容。" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "你嘅帖文串包含空白帖文,空白帖文將會跳過,剩低嗰啲帖文會重新整理成帖文串發布。" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you don’t recognize this provider, double-check your username." -msgstr "" +msgstr "你嘅用戶名同密碼會分享畀 <0>{host}。若然你唔識呢位提供者,請再檢查吓你嘅用戶名稱。" #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index 56f1214969..5a3ef7416e 100644 --- a/src/locale/locales/zh-TW/messages.po +++ b/src/locale/locales/zh-TW/messages.po @@ -5,10 +5,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: zh\n" +"Language: zh_TW\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-24 15:42\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "「{interestsDisplayName}」類別(已選取)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(已隱藏封鎖的訊息)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(包含嵌入內容)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(已刪除的訊息)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(無效的對話邀請連結)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(訊息在您加入前傳送)" @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# 小時} other {# 小時}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural, other {您的貼文被套用了 # 個標記}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural, other {已套用 # 個標記}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# 個喜歡} other {# 個喜歡}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# 個成員}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, other {# 個新的加入申請}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {# 個人}}對此做出了 {1} 反應" @@ -224,7 +225,7 @@ msgid "{0} · {1}" msgstr "{0} · {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0}(帳號)" @@ -251,36 +252,13 @@ msgstr "{0} 已受邀加入對話" msgid "{0} and {1} added to chat" msgstr "{0} 和 {1} 已受邀加入對話" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} 個跟隨中" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} 已封鎖您" @@ -324,14 +302,6 @@ msgstr "{0} 離開了" msgid "{0} left the group" msgstr "{0} 離開了群組" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "已輸入 {0} 個字元,最多 50 個字元" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} 做出了 {1} 反應" @@ -388,21 +358,6 @@ msgstr "{0}、" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}、{1} 及{memberCount, plural, other {其他 # 人}}已受邀加入對話" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} 對您授予了驗證" msgid "{following} following" msgstr "{following} 個跟隨中" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:148 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} can’t be added" msgstr "無法邀請 {handle}" @@ -698,7 +660,7 @@ msgstr "無法邀請 {handle}" msgid "{handle} can't be messaged" msgstr "無法傳送訊息給 {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} can’t be messaged" msgstr "無法傳送訊息給 {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# 則未讀通知} other {# 則未讀 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {找到了 # 位聯絡人}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "「{profileName}」在 {timeAgoString}前加入了 Bluesky" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "「{profileName}」在 {timeAgoString}前使用新手包加入了 Bluesky" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:189 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, other {剩餘 # 個字元}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} 回覆了" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} 回覆了 {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} 回覆了您" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {# 個邀請}}" msgid "{requestCount}+ requests" msgstr "超過 {requestCount} 個邀請" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} 小時前" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} 是可靠的驗證者" @@ -842,13 +795,13 @@ msgstr "{userName} 的驗證" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {個跟隨中} other {個跟隨中}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {次引用}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {則轉發}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, other {次收藏}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, other {個喜歡}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> 已將您加入" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>登入<1>或<2>建立帳號<3><4>即可在 Bluesky 上搜尋有關新聞、體育、政治等新鮮事。" @@ -971,7 +924,7 @@ msgstr "30 天" msgid "7 days" msgstr "7 天" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "您可以在 Bluesky 上找到一系列熱門動態源,包括 News、Booksky、Game Dev、Blacksky,以及 ​​Fountain Pens" @@ -988,9 +941,11 @@ msgstr "發生了網路錯誤,請檢查您的網路連線狀態" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "已傳送新的驗證碼" msgid "A new form of verification" msgstr "全新的驗證機制" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "對您加入之前傳送的訊息的回覆" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "一張貼文編輯器的螢幕截圖。在發布按鈕旁有一個標示為草稿的新按鈕,並帶有彩虹煙火特效。下方的編輯器文字顯示:「嘿,你聽說了嗎? Bluesky 現在有草稿功能了!!!」。" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "選擇的部分對象沒有被傳送者跟隨。" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "已送出申請!請靜待擁有者確認以加入群組。" msgid "Accessibility" msgstr "無障礙" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "無障礙設定" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "帳號已被列表靜音" msgid "Account options" msgstr "帳號設定" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "成功從快速存取中移除帳號" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "帶有扇形藍色勾號徽章的帳號<0><1/>可以對其他帳號授予驗證。這些可靠的驗證者由 Bluesky 官方親自挑選。" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "來自其他人的動態" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,17 +1183,17 @@ msgstr "新增替代文字(選填)" msgid "Add another account" msgstr "新增其他帳號" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "加入另一則貼文" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "新增另一則貼文至討論串" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" -msgstr "" +msgstr "新增另一個搜尋篩選條件" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" @@ -1253,7 +1213,7 @@ msgstr "加入自動化標記到此帳號" msgid "Add emoji reaction" msgstr "加入表情符號反應" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "新增篩選條件" @@ -1338,7 +1298,7 @@ msgstr "將此新增至您的動態源" msgid "Add to lists" msgstr "新增至列表" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "新增至貼文收藏" @@ -1400,7 +1360,7 @@ msgstr "色情" msgid "Adult content" msgstr "成人內容" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1560,7 +1520,7 @@ msgstr "允許存取私人訊息" msgid "Already have a code?" msgstr "已經有重設驗證碼了?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:189 msgid "Already have an account?" msgstr "已經有帳號了?" @@ -1614,7 +1574,7 @@ msgstr "一封電子郵件已傳送至 {0}。請查看郵件並在下方輸入 msgid "An error has occurred" msgstr "發生錯誤" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "發生錯誤" @@ -1631,7 +1591,7 @@ msgstr "取得建議帳號時發生錯誤。" msgid "An error occurred while fetching the feed." msgstr "載入動態源時發生錯誤。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "產生您的新手包時發生錯誤。要再試一次嗎?" @@ -1640,11 +1600,11 @@ msgstr "產生您的新手包時發生錯誤。要再試一次嗎?" msgid "An error occurred while hiding suggestion. {0}" msgstr "隱藏建議時發生錯誤。{0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "載入影片時發生錯誤。請稍後再試。" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "載入影片時發生錯誤。請稍後再試。" @@ -1684,7 +1644,7 @@ msgstr "發生錯誤。{0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "一張插圖,展示使用者大頭貼照從聯絡人流向 Bluesky 應用程式" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Bluesky 的幾則貼文插圖,旁邊還有轉發、喜歡和留言圖示" @@ -1705,17 +1665,15 @@ msgstr "邀請連結可以讓其他人直接加入群組對話。您可以控制 msgid "An issue not included in these options" msgstr "問題未包含在上述選項" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "建立群組對話時發生問題,請再試一次。" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "開始對話時發生問題,請再試一次。" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "開啟對話時發生問題" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1766,11 +1724,11 @@ msgstr "為您介紹 Bluesky 上的驗證機制" #. Placeholder text for a date picker #: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 msgid "Any date" -msgstr "" +msgstr "任何日期" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "任何人" @@ -1802,7 +1760,7 @@ msgstr "跟隨我的人" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "任何人都無法再透過此連結加入群組,但您可以隨時建立新的邀請連結。" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1829,7 +1787,7 @@ msgstr "專用密碼名稱不得與現有的重複" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" -msgstr "" +msgstr "應用程式密碼名稱只能包含字母、數字、空格、連字號 (-) 及底線 (_)" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" @@ -1840,7 +1798,7 @@ msgstr "密碼名稱必須至少包含 4 個字元" msgid "App passwords" msgstr "應用程式專用密碼" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "應用程式專用密碼" @@ -1858,7 +1816,7 @@ msgstr "申訴「{0}」標記" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "申訴標記" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1847,10 @@ msgstr "對此處分提出申訴" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "申訴此標記" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1867,12 @@ msgid "Apply Pull Request" msgstr "套用拉取請求 (Pull Request)" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "封存於 {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "已封存的貼文" @@ -1980,7 +1938,7 @@ msgstr "您確定要將此從您的動態源中移除嗎?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "您確定要撤回加入 {0} 的申請嗎?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "您確定要放棄發布這則貼文嗎?" @@ -2019,21 +1977,21 @@ msgid "Aurora" msgstr "極光" #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "自動化帳號" #: src/screens/Login/components/HostingProviderDialog.tsx:165 #: src/screens/Login/components/HostingProviderDialog.tsx:167 msgid "Automatic" -msgstr "" +msgstr "自動" #: src/screens/Settings/AccountSettings.tsx:155 #: src/screens/Settings/AccountSettings.tsx:158 msgid "Automation label" msgstr "自動化標記" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "自動化標記" @@ -2050,12 +2008,16 @@ msgstr "自動播放影片和 GIF" msgid "Available" msgstr "可用" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2081,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "在撰寫貼文或回覆之前,您必須先驗證您的電子信箱。" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "在建立新手包之前,您必須先驗證您的電子信箱。" @@ -2135,10 +2097,10 @@ msgstr "在您開始接收 {name} 的貼文通知之前,您必須先驗證您 #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2122,28 @@ msgstr "請填寫以下欄位,以開始年齡驗證程序。" msgid "Beta Feature" msgstr "測試功能" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "測試功能" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "測試功能可能不穩定,某些變更可能需要重新載入應用程式。" #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "測試功能可能不穩定,某些變更可能需要重新啟動應用程式。" #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2153,9 @@ msgstr "出生日期" msgid "Birthday" msgstr "生日" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2237,7 @@ msgstr "已被封鎖" msgid "Blocked accounts" msgstr "已封鎖帳號" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "已封鎖帳號" @@ -2282,7 +2250,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/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "封鎖該帳號無法阻止其標記您的帳號。" @@ -2305,10 +2273,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 無法確認貼文發布日期的真實性。" @@ -2330,7 +2299,7 @@ msgstr "Bluesky 是一個開放的網路,您可以自行挑選託管服務提 msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky 是一個開放的網路,您可以自行挑選託管服務提供者。但如果您是新使用者,我們建議使用預設的 Bluesky Social 選項。" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky 因朋友而更好!" @@ -2358,7 +2327,7 @@ msgstr "Bluesky Social 服務條款" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky 會把您的聯絡人以編碼加密形式儲存。刪除聯絡人也會立即刪除此資訊。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky 將從您的個人社群網路中選擇一組推薦的帳號。" @@ -2425,24 +2394,25 @@ msgstr "在探索頁面瀏覽更多建議" msgid "Browse other feeds" msgstr "瀏覽其他動態源" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:58 msgid "Browse posts about {displayName}" msgstr "瀏覽有關 {displayName} 的貼文" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:66 msgid "Browse posts tagged with {displayName}" msgstr "瀏覽帶有標籤 {displayName} 的貼文" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:75 msgid "Browse starter pack {displayName}" msgstr "瀏覽新手包 {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 msgid "Browse topic {0}" msgstr "瀏覽話題 {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:112 msgid "Browse topic {displayName}" msgstr "瀏覽話題 {displayName}" @@ -2461,8 +2431,8 @@ msgstr "返回首頁時間軸的按鈕" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "來自 {0}" @@ -2473,9 +2443,9 @@ msgstr "來自 @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "來自 <0>{0}" @@ -2504,11 +2474,11 @@ msgstr "建立帳號即表示您同意<0>服務條款及<1>隱私權政策Terms of Service." msgstr "建立帳號即表示您同意<0>服務條款。" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "由您建立" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "相機" @@ -2534,7 +2504,7 @@ msgstr "需要相機存取權限" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2535,8 @@ msgstr "需要相機存取權限" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,13 +2555,13 @@ msgstr "取消重新啟用並登出" msgid "Cancel reply" msgstr "取消回覆" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "放棄搜尋" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 msgid "Cancels signing in so you can check your username" -msgstr "" +msgstr "取消登入以便您檢查使用者名稱" #: src/components/PostControls/index.tsx:108 #: src/components/PostControls/index.tsx:138 @@ -2649,7 +2619,7 @@ msgstr "變更帳號代碼" #: src/screens/Login/LoginForm.tsx:644 msgid "Change hosting provider" -msgstr "" +msgstr "變更託管服務提供者" #: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" @@ -2698,7 +2668,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "列表在轉存後會是一份完全獨立的副本,任何對新手包的變更都不會影響已轉存的列表。" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2708,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "成功靜音對話" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "找不到對話。" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "對話選項" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "對話擁有者無法離開群組對話。" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "訊息接收者沒有被傳送者跟隨。" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "對話邀請收件匣" @@ -2767,11 +2738,11 @@ msgid "Chat requests" msgstr "對話邀請" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "對話設定" @@ -2798,9 +2769,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "成功取消靜音對話" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "對話" @@ -2810,7 +2781,7 @@ msgstr "在下方輸入傳送至 <0>{currentEmail} 的驗證碼:" #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "請晚點再回來看看!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2808,7 @@ msgstr "選擇網域驗證方式" msgid "Choose Feeds" msgstr "選擇動態源" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "為我挑選" @@ -2854,7 +2825,7 @@ msgstr "選擇人物" msgid "Choose post languages" msgstr "選擇貼文語言" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "選擇這個顏色作為您的大頭貼照背景" @@ -2869,7 +2840,7 @@ msgstr "選擇要邀請的人" #: src/components/dialogs/ServerInput.tsx:134 #: src/screens/Login/components/HostingProviderDialog.tsx:155 msgid "Choose your hosting provider" -msgstr "" +msgstr "選擇您的託管服務提供者" #: src/view/screens/Feeds.tsx:726 msgid "Choose your own timeline! Feeds built by the community help you find content you love." @@ -2879,7 +2850,7 @@ msgstr "自行設計專屬於您的河道!由社群打造的動態源能協助 msgid "Choose your password" msgstr "設定您的密碼" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "選擇您的使用者名稱" @@ -2966,7 +2937,7 @@ msgstr "點一下這裡以檢視此群組對話的邀請連結" msgid "Click to open tag menu for {0}" msgstr "點此以開啟 {0} 的標籤選單" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "點此以重新傳送訊息" @@ -3003,7 +2974,7 @@ msgstr "點此以重新傳送訊息" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2998,8 @@ msgstr "點此以重新傳送訊息" msgid "Close" msgstr "關閉" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "關閉目前的對話框" @@ -3047,7 +3018,7 @@ msgstr "關閉橫幅" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3041,7 @@ msgstr "關閉圖片檢視器" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "關閉選單" @@ -3090,7 +3061,7 @@ msgstr "關閉加入申請通知橫幅" msgid "Close this dialog" msgstr "關閉此對話框" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:214 msgid "Close welcome modal" msgstr "關閉歡迎畫面" @@ -3098,7 +3069,7 @@ msgstr "關閉歡迎畫面" msgid "Closes password update alert" msgstr "關閉密碼更新警告" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "關閉貼文編輯器並捨棄草稿" @@ -3115,7 +3086,7 @@ msgid "Color" msgstr "顏色" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "色彩模式" @@ -3132,7 +3103,7 @@ msgid "Comics" msgstr "漫畫" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "社群準則" @@ -3141,7 +3112,7 @@ msgstr "社群準則" msgid "Complete onboarding and start using your account" msgstr "完成入門引導以開始使用您的帳號" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "完成驗證" @@ -3152,7 +3123,7 @@ msgid "Compose new post" msgstr "撰寫新貼文" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "撰寫最多 {0, plural,other {# 個字元}}的貼文" @@ -3160,11 +3131,11 @@ msgstr "撰寫最多 {0, plural,other {# 個字元}}的貼文" msgid "Compose reply" msgstr "撰寫回覆" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "正在壓縮 GIF……" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "正在壓縮影片……" @@ -3199,12 +3170,12 @@ msgstr "正在連線至服務……" #: src/screens/Login/LoginForm.tsx:542 msgid "Connecting to service…" -msgstr "" +msgstr "正在連線至服務……" #: src/screens/Login/ForgotPasswordForm.tsx:138 #: src/screens/Login/LoginForm.tsx:548 msgid "Connecting…" -msgstr "" +msgstr "連線中……" #: src/ageAssurance/components/RedirectOverlay.tsx:297 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 @@ -3222,8 +3193,8 @@ msgid "Contact our support team" msgstr "聯絡我們的支援團隊" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "聯絡支援" @@ -3253,7 +3224,7 @@ msgstr "內容與媒體" msgid "Content and media" msgstr "內容與媒體" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "內容與媒體" @@ -3265,10 +3236,6 @@ msgstr "已封鎖內容" msgid "Content filters" msgstr "內容篩選器" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "我們從網路的各個角落精選出了您可能會感興趣的內容。" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "內容語言" @@ -3283,7 +3250,7 @@ msgid "Content promoting or depicting self-harm" msgstr "宣揚或提倡自殘內容" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3260,7 @@ msgstr "內容警告" msgid "Content warnings" msgstr "內容警告" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "內容選單背景,點一下以關閉選單。" @@ -3302,7 +3269,7 @@ msgstr "內容選單背景,點一下以關閉選單。" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3315,7 +3282,7 @@ msgstr "以 {0} 的身分繼續(目前已登入)" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 msgid "Continue signing in" -msgstr "" +msgstr "繼續登入" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" @@ -3326,12 +3293,12 @@ msgid "Continue thread..." msgstr "繼續載入討論串……" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "繼續設定群組名稱" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3335,7 @@ msgstr "找不到對話。" msgid "Copied build version to clipboard" msgstr "成功複製組建版本號至剪貼簿" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "已將連結複製至剪貼簿" @@ -3376,7 +3343,7 @@ msgstr "已將連結複製至剪貼簿" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3377,8 @@ msgstr "複製應用程式專用密碼" msgid "Copy at:// URI" msgstr "複製 at:// 連結" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "複製發布者 DID" @@ -3449,10 +3416,10 @@ msgstr "複製連結" msgid "Copy link to list" msgstr "複製列表連結" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "複製貼文連結" @@ -3470,8 +3437,8 @@ msgstr "複製新手包連結" msgid "Copy message text" msgstr "複製訊息文字" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "複製貼文 at:// 連結" @@ -3490,7 +3457,7 @@ msgstr "複製 TXT 記錄值" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "著作權政策" @@ -3540,11 +3507,11 @@ msgstr "無法跟隨所有確認的聯絡人。{0}" msgid "Could not leave chat" msgstr "無法離開對話" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "無法離開對話。" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "無法載入動態" @@ -3562,7 +3529,7 @@ msgstr "無法載入個人檔案" msgid "Could not mute chat" msgstr "無法靜音對話" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "無法移除成員。" @@ -3606,8 +3573,8 @@ msgstr "牛 豬" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "建立" @@ -3624,26 +3591,26 @@ msgstr "轉存此新手包到新的列表" msgid "Create a QR code for a starter pack" msgstr "為新手包建立 QR Code" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "建立一個新手包" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "建立新手包" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "為我產生一個新手包" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:155 +#: src/components/WelcomeModal.tsx:163 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3624,7 @@ msgstr "建立帳號" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "建立帳號" @@ -3666,15 +3633,15 @@ msgstr "建立帳號" msgid "Create an account without using this starter pack" msgstr "不使用此新手包建立帳號" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "或是建立一個大頭貼照" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "再建立一個" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "建立群組對話" @@ -3741,9 +3708,9 @@ msgstr "文化" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "目前的測試功能" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "目前的對話" @@ -3770,8 +3737,8 @@ msgstr "危險物質或藥物濫用" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "深色" @@ -3780,7 +3747,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "深色" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "深色主題" @@ -3814,7 +3781,7 @@ msgstr "忽略此建議語言" msgid "Deepfake adult content" msgstr "深度偽造 (Deepfake) 成人內容" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "預設" @@ -3894,7 +3861,7 @@ msgstr "刪除我的帳號" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "刪除貼文" @@ -3986,9 +3953,9 @@ msgstr "對話框:調整哪些人能夠與這則貼文互動" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 msgid "Dialog: Set search filters" -msgstr "" +msgstr "對話框:設定搜尋篩選條件" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "昏暗" @@ -4002,7 +3969,7 @@ msgstr "停用" msgid "Disable 2FA" msgstr "停用雙重驗證" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "關閉字幕" @@ -4045,9 +4012,9 @@ msgstr "停用" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4025,14 @@ msgstr "捨棄" msgid "Discard changes?" msgstr "要放棄變更嗎?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "要捨棄草稿嗎?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "要放棄發布嗎?" @@ -4079,6 +4046,10 @@ msgstr "中斷連結 Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "防止應用程式向未登入的使用者顯示我的帳號" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4057,11 @@ msgstr "防止應用程式向未登入的使用者顯示我的帳號" msgid "Discover new custom feeds" msgstr "探索新的自訂動態源" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "探索新的動態源" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "探索新的動態源" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "跳過" @@ -4103,19 +4070,19 @@ msgstr "跳過" msgid "Dismiss banner" msgstr "關閉提示橫幅" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "跳過錯誤" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "跳過入門指南" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "忽略興趣" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "關閉直播活動橫幅" @@ -4142,7 +4109,7 @@ msgstr "顯示較大的替代文字標誌" msgid "Display name" msgstr "名稱" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "告別網路酸民和標題黨,找到您真正在意的人與感興趣的對話。" @@ -4205,8 +4172,8 @@ msgstr "不用擔心!您現有的訊息和設定都已儲存,只需驗證您 #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4183,15 @@ msgstr "不用擔心!您現有的訊息和設定都已儲存,只需驗證您 msgid "Done" msgstr "完成" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "點兩下或長按訊息以加入反應" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "點兩下以關閉對話框" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "點兩下以表示喜歡" @@ -4328,6 +4295,7 @@ msgstr "飲食失調" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4333,8 @@ msgstr "編輯圖片" msgid "Edit interaction settings" msgstr "編輯互動設定" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "編輯感興趣的主題" @@ -4397,7 +4365,7 @@ msgstr "編輯直播狀態" msgid "Edit moderation list" msgstr "編輯內容管理列表" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "編輯我的動態源" @@ -4406,6 +4374,11 @@ msgstr "編輯我的動態源" msgid "Edit name" msgstr "編輯名稱" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "編輯使用者" @@ -4444,7 +4417,7 @@ msgstr "編輯使用者列表" msgid "Edit who can reply" msgstr "修改哪些人可以回覆" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "編輯您的新手包" @@ -4500,8 +4473,8 @@ msgstr "嵌入 HTML 程式碼" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "嵌入貼文" @@ -4509,7 +4482,7 @@ msgstr "嵌入貼文" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "將這則貼文嵌入到您的網站。只需複製以下程式碼片段,並將其貼上到您網站的 HTML 程式碼中即可。" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "嵌入式影片播放器" @@ -4531,9 +4504,9 @@ msgstr "顯示成人內容" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "啟用測試功能" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "開啟字幕" @@ -4550,12 +4523,13 @@ msgstr "啟用外部媒體" msgid "Enable media players for" msgstr "啟用媒體播放器" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "前往其個人檔案,點一下旁邊的<0>鈴鐺圖示 <1/>,即可接收該帳號的動態通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "啟用推播通知" @@ -4581,7 +4555,7 @@ msgstr "在您的「Discover」動態源中啟用熱門影片" msgid "Enabled" msgstr "啟用" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "已經到底啦!" @@ -4608,7 +4582,7 @@ msgstr "輸入字詞或標籤" msgid "Enter code" msgstr "輸入驗證碼" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "進入全螢幕" @@ -4650,11 +4624,11 @@ msgstr "輸入您的使用者名稱和密碼" msgid "Enters full screen" msgstr "進入全螢幕" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 msgid "Entertainment" msgstr "娛樂" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "錯誤" @@ -4684,7 +4658,7 @@ msgstr "儲存檔案時發生錯誤" msgid "Error receiving captcha response." msgstr "取得人機驗證 (Captcha) 回應時發生錯誤。" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "錯誤:{error}" @@ -4696,8 +4670,8 @@ msgstr "所有人都可以回覆" msgid "Everybody can reply to this post." msgstr "所有人都可以回覆這則貼文。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "所有人" @@ -4711,14 +4685,14 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "其他內容" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 msgid "Everything look right?" -msgstr "" +msgstr "一切看起來都正確嗎?" #. Advanced search filter #. Advanced search filter @@ -4738,7 +4712,7 @@ msgstr "排除已跟隨的使用者" msgid "Excludes users you follow" msgstr "排除已跟隨的使用者" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "退出全螢幕" @@ -4755,11 +4729,11 @@ msgstr "展開使用者列表" msgid "Expand or collapse the full post you are replying to" msgstr "展開或摺疊您正在回覆的完整貼文" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "展開貼文文字" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "展開或摺疊貼文文字" @@ -4802,15 +4776,15 @@ msgstr "血腥、露骨或災害等可能會引起不適的媒體內容。" msgid "Explicit sexual images." msgstr "露骨的色情圖片。" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "探索" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:168 +#: src/components/WelcomeModal.tsx:177 msgid "Explore the app" msgstr "探索應用程式" @@ -4844,7 +4818,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:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "外部媒體選項" @@ -4886,7 +4860,7 @@ msgstr "變更帳號代碼時發生問題,請再試一次。" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "複製連結時發生問題" @@ -4974,29 +4948,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "離開群組對話時發生問題" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "載入對話時發生問題" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "載入動態時發生問題" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "載入動態源偏好設定時發生問題" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "載入通知設定時發生問題。" @@ -5012,14 +4987,14 @@ msgstr "載入偏好設定時發生問題。" msgid "Failed to load profiles" msgstr "載入個人檔案時發生問題" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "載入建議動態源時發生問題" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "載入建議跟隨帳號時發生問題" @@ -5027,12 +5002,12 @@ msgstr "載入建議跟隨帳號時發生問題" msgid "Failed to lock group chat" msgstr "鎖定邀請連結時發生問題" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "無法將所有對話標示為已讀" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5071,7 @@ msgstr "無法撤銷您的申請,請再試一次。" msgid "Failed to resolve location. Please try again." msgstr "存取位置資訊時發生問題,請再試一次。" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "儲存草稿時發生問題" @@ -5191,7 +5166,7 @@ msgstr "虛假帳號或機器人" msgid "False information about elections" msgstr "散播選舉相關虛假資訊" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "動態源" @@ -5212,7 +5187,7 @@ msgstr "動態源建立者" msgid "Feed identifier" msgstr "動態源 ID" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "動態源選單" @@ -5236,13 +5211,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "意見已提交給動態源維護者" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5235,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "成功更新動態源!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "我們覺得您可能會喜歡的動態源。" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "取得更新" @@ -5273,11 +5244,11 @@ msgstr "取得更新" msgid "File saved successfully!" msgstr "成功儲存檔案!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 msgid "Filter by author" msgstr "依發布者篩選" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 msgid "Filter by author (currently: {currentLabel})" msgstr "依發布者篩選(目前:{currentLabel})" @@ -5310,7 +5281,7 @@ msgstr "以 {0} 篩選此搜尋結果" msgid "Filter who can opt to receive notifications for your activity" msgstr "篩選哪些人可以選擇接收您的動態通知" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "篩選您想接收的通知來源" @@ -5318,7 +5289,7 @@ msgstr "篩選您想接收的通知來源" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "篩選條件" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5323,8 @@ msgstr "去跟隨更多帳號" msgid "Find and invite friends" msgstr "尋找並邀請朋友" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "尋找聯絡人" @@ -5387,7 +5358,7 @@ msgstr "尋找您的朋友" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "驗證您的電話號碼並匹配聯絡人,即可尋找也在使用 Bluesky 的朋友。我們會嚴格保護您的資訊,而您掌控後續操作。<0>瞭解更多" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "找到與您志同道合的人" @@ -5429,7 +5400,7 @@ msgstr "聚焦搜尋欄位" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5416,7 @@ msgstr "跟隨 {0}" msgid "Follow {displayName}" msgstr "跟隨 {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "跟隨 {handle}" @@ -5453,11 +5424,11 @@ msgstr "跟隨 {handle}" msgid "Follow 10 accounts" msgstr "跟隨 10 個帳號" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "跟隨 10 個人即可開始" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "跟隨 7 個帳號" @@ -5528,7 +5499,7 @@ msgid "Followers can join" msgstr "跟隨者可以加入" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "您認識的這些人也跟隨了 @{0}" @@ -5544,7 +5515,7 @@ msgstr "您也認識的跟隨者" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5540,7 @@ msgstr "成功跟隨 {0}" msgid "Following {displayName}" msgstr "正在跟隨 {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "成功跟隨 {handle}" @@ -5578,21 +5549,21 @@ msgstr "成功跟隨 {handle}" msgid "Following feed preferences" msgstr "「Following」(跟隨中)動態源選項" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "「Following」(跟隨中)動態源選項" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "跟隨您" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "字型" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "字型大小" @@ -5612,13 +5583,13 @@ msgstr "為了確保您的帳號安全,我們將傳送一組驗證碼到您的 msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "為了確保您的帳號安全,將無法再次查看此密碼。如果您不慎丟失了,則需要再產生一個新的密碼。" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "我們建議使用主題字型,以享有最佳體驗。" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "為您推薦" @@ -5628,7 +5599,7 @@ msgstr "為您推薦" msgid "Forever" msgstr "永遠" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "忘記那些無盡的喧擾" @@ -5647,11 +5618,13 @@ msgstr "忘記密碼?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "四個群組對話中的訊息泡泡。第一則寫著:「你聽說了嗎?Bluesky 現在有群組對話了!」第二則訊息:「真的假的」第三則訊息:「群組最多可以加入 50 個人!」第四則訊息:「還可以傳送邀請連結!」" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "還您一個乾淨的河道" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter search results by a specific post author +#. Filter who you receive notifications from +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "來自" @@ -5674,7 +5647,7 @@ msgstr "來自 <0/>" msgid "From these people" msgstr "來自這些人" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "產生一個新手包" @@ -5712,45 +5685,45 @@ msgstr "重新連結 Germ DM" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features we’re testing." -msgstr "" +msgstr "搶先體驗我們正在測試的實驗性功能。" #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "取得幫助" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "在授予驗證、有人使用您的新手包加入等活動時時收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "在有人跟隨您時收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "在有人對您的貼文表示喜歡時收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "在有人對您轉發的貼文表示喜歡時收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "在有人提及您時收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "在有人引用您的貼文時收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "在有人回覆您的貼文時收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "在有人轉發您的貼文時收到通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "在有人轉發了您轉發的貼文時收到通知。" @@ -5762,15 +5735,15 @@ msgstr "在有人向您傳送訊息請求時通知您。" msgid "Get notifications when people send you messages." msgstr "在有人向您傳送訊息時通知您。" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "在您訂閱的貼文有動態更新時收到通知。" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "在貼文發布時收到通知" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "在 {name} 發布貼文時收到通知" @@ -5799,11 +5772,11 @@ msgstr "開始吧" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF 上傳成功" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "為您的個人檔案選擇大頭貼照" @@ -5813,20 +5786,20 @@ msgstr "美化暴力" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5849,9 @@ msgid "Go live for" msgstr "直播持續時長" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "前往 {0} 的個人檔案" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5953,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "已更新群組對話名稱" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "群組對話設定" @@ -6010,16 +5983,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "群組對話不得超過 {0, plural, other {# 個成員}}。" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "群組已鎖定" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "群組名稱" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "群組對話名稱太長了,{MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {不得超過 # 個字元。}}" @@ -6077,7 +6051,7 @@ msgstr "有害或高風險活動" msgid "Harming or endangering minors" msgstr "傷害或危及未成年人安全" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "主題標籤" @@ -6098,7 +6072,7 @@ msgstr "已經有驗證碼了?<0>點一下這裡。" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "位置資訊判斷錯誤嗎?<0>點一下這裡以使用 GPS 更新您的位置。" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "遇到問題?" @@ -6114,7 +6088,7 @@ msgstr "由 Bluesky 保留 7 天以防止濫用,並在之後刪除" msgid "Help" msgstr "幫助" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "透過上傳圖片或建立大頭貼照,讓大家知道您不是機器人。" @@ -6140,7 +6114,7 @@ msgstr "嗨!" msgid "Hidden" msgstr "隱藏" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "您在內容篩選設定中選擇隱藏了此類影片。" @@ -6148,9 +6122,9 @@ msgstr "您在內容篩選設定中選擇隱藏了此類影片。" msgid "Hidden list" msgstr "隱藏列表" -#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/Trending.tsx:143 #: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6132,7 @@ msgstr "隱藏列表" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide" msgstr "隱藏" @@ -6181,7 +6155,7 @@ msgstr "隱藏列表" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "隱藏密碼" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6172,7 @@ msgstr "為所有人隱藏回覆" msgid "Hide reply for me" msgstr "為我隱藏回覆" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "隱藏這張卡片" @@ -6218,12 +6192,12 @@ msgstr "要隱藏這則回覆嗎?" msgid "Hide translation" msgstr "隱藏翻譯" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:125 msgid "Hide trending topics" msgstr "隱藏流行趨勢" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/Trending.tsx:141 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 msgid "Hide trending topics?" msgstr "要隱藏流行趨勢嗎?" @@ -6240,7 +6214,7 @@ msgstr "隱藏使用者列表" msgid "Hide verification badges" msgstr "隱藏驗證標記" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "隱藏內容" @@ -6293,8 +6267,8 @@ msgstr "抱歉,我們無法載入該內容管理服務。" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "等一下!我們正在逐步開放上傳影片功能。您還在等候名單中,請稍後再回來看看!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6315,15 +6289,11 @@ msgstr "託管服務提供者" #. placeholder {0}: toNiceHostingUrl(state.pdsUrl) #: src/screens/Login/LoginForm.tsx:655 msgid "Hosting provider: {0}" -msgstr "" +msgstr "託管服務提供者:{0}" #: src/screens/Login/LoginForm.tsx:657 msgid "Hosting provider: Bluesky" -msgstr "" - -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "熱門" +msgstr "託管服務提供者:Bluesky" #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" @@ -6409,6 +6379,7 @@ msgstr "如果您更新了電子郵件地址,電子郵件雙重驗證將會自 msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "如果您想變更密碼,我們將向您傳送一組驗證碼,以確認這是您的帳號。" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "如果您想限制其他人接收您帳號的動態通知,可以前往 <0>設定 → 隱私與安全 變更設定。" @@ -6548,7 +6519,7 @@ msgstr "應用程式內、推播、所有人" msgid "In-app, push, people you follow" msgstr "應用程式內、推播、您跟隨的人" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "收件匣為空" @@ -6560,6 +6531,7 @@ msgstr "收件匣清零!" #. Advanced search filter #. Advanced search filter #. Advanced search filter +#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 @@ -6776,7 +6748,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "現在新手包裡只有您一個人!使用上面的搜尋功能,將更多人新增到您的新手包中。" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "作業 ID:{0}" @@ -6816,8 +6788,8 @@ msgstr "加入討論" msgid "Journalism" msgstr "記者" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "繼續編輯" @@ -6831,16 +6803,16 @@ msgid "KWS website" msgstr "KWS 網站" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "由 {0} 標記。" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "由發布者標記。" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "標記" @@ -6850,9 +6822,9 @@ msgstr "已加入標記" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "套用至此貼文的標記" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "標記可用於隱藏、警告或分類使用者和內容。" @@ -6864,7 +6836,7 @@ msgstr "您帳號上的標記" msgid "Language" msgstr "語言" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "語言設定" @@ -6874,7 +6846,7 @@ msgstr "語言設定" msgid "Languages" msgstr "語言" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "更大" @@ -6889,7 +6861,7 @@ msgid "Last initiated just now" msgstr "最後一次請求於不久前" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "最新" @@ -6904,11 +6876,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "瞭解詳情(英文)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "瞭解詳情" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "進一步瞭解<0>如何使用進階搜尋。" @@ -6937,8 +6909,8 @@ msgstr "深入瞭解匯入聯絡人功能" msgid "Learn more about self hosting your PDS." msgstr "深入瞭解如何自行架設 PDS。" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "深入瞭解對這項內容套用的審核措施" @@ -6951,7 +6923,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "您可以閱讀我們的部落格文章,瞭解有關這些變化的更多資訊,以及如何與我們分享您的想法。" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "深入瞭解這個警告" @@ -6975,7 +6947,7 @@ msgid "Learn more in your <0>account settings." msgstr "在您的<0>帳號設定瞭解詳情。" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "瞭解詳情。" @@ -6993,8 +6965,8 @@ msgstr "離開" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +7006,7 @@ msgstr "離開 Bluesky" msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." msgstr "離開此對話的同時也會將其永久鎖定,您將無法再次加入。" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "已離開群組對話。" @@ -7042,7 +7014,7 @@ msgstr "已離開群組對話。" msgid "left to go." msgstr "個人在排在您前面。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "讓我自己選擇" @@ -7057,7 +7029,7 @@ msgstr "讓我們開始吧!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "淺色" @@ -7066,7 +7038,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "淺色" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "喜歡" @@ -7076,7 +7048,7 @@ msgstr "喜歡" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "喜歡({0, plural, other {# 個喜歡}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "喜歡 10 則貼文" @@ -7085,7 +7057,7 @@ msgstr "喜歡 10 則貼文" msgid "Like 10 posts to train the Discover feed" msgstr "喜歡 10 則貼文,以訓練「Discover」動態源" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "對此動態源表示喜歡" @@ -7093,8 +7065,8 @@ msgstr "對此動態源表示喜歡" msgid "Like this labeler" msgstr "對此標記服務表示喜歡" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "表示喜歡的使用者" @@ -7111,27 +7083,45 @@ msgstr "表示喜歡的使用者" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# 個使用者} other {# 個使用者}}表示喜歡" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# 個使用者} other {# 個使用者}}表示喜歡" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "喜歡" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "喜歡您轉發的貼文" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "這則貼文的喜歡數" @@ -7144,7 +7134,7 @@ msgstr "直列模式" msgid "Link copied to clipboard" msgstr "已複製連結至剪貼簿" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "列表" @@ -7230,10 +7220,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "成功取消靜音列表" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7248,12 @@ msgstr "直播" msgid "Live event happening now: {0}" msgstr "正在進行的直播活動:{0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "已隱藏直播活動" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "已取消隱藏直播活動" @@ -7279,12 +7269,12 @@ msgstr "直播功能正在測試階段" msgid "Live link" msgstr "直播連結" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "載入更多" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "載入更多建議動態源" @@ -7292,8 +7282,8 @@ msgstr "載入更多建議動態源" msgid "Load new notifications" msgstr "載入更多通知" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7326,7 @@ msgstr "鎖定此群組對話" msgid "Locked" msgstr "已鎖定" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "記錄檔" @@ -7387,7 +7377,7 @@ msgstr "愛情 GIFs" msgid "Make adjustments to email settings for your account" msgstr "調整您帳號綁定的電子信箱設定" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "為我製作一個" @@ -7411,22 +7401,22 @@ msgstr "管理您靜音的字詞和標籤" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "手動" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "全部標示為已讀" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "將所有對話標示為已讀" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7431,12 @@ msgstr "標示為已讀" msgid "Marked all as read" msgstr "成功全部標示為已讀" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "已標示所有對話為已讀" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "已標示所有邀請為已讀" @@ -7456,8 +7446,12 @@ msgstr "已標示所有邀請為已讀" msgid "Maybe later" msgstr "之後再說" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "媒體" @@ -7475,7 +7469,7 @@ msgstr "媒體儲存於其他裝置" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "可能會使部分受眾感到不安或造成不適的媒體內容。" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "已從群組對話移除成員。" @@ -7493,8 +7487,8 @@ msgid "mentioned users" msgstr "被提及的使用者" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "提及" @@ -7536,7 +7530,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "成功刪除訊息" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "傳送訊息時發生問題。" @@ -7563,15 +7557,15 @@ msgstr "訊息內容太長了({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "訊息選項" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "訊息" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "當對方封鎖您時,其傳送的訊息將被隱藏。" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "當您封鎖對方時,其傳送的訊息將被隱藏。" @@ -7592,7 +7586,7 @@ msgstr "不實資訊" msgid "Missing media" msgstr "缺失媒體檔案" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "內容管理" @@ -7636,7 +7630,7 @@ msgstr "成功更新內容管理列表" msgid "Moderation lists" msgstr "內容管理列表" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "內容管理列表" @@ -7645,7 +7639,7 @@ msgstr "內容管理列表" msgid "moderation settings" msgstr "內容管理設定" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "內容管理狀態" @@ -7786,7 +7780,7 @@ msgstr "已靜音" msgid "Muted accounts" msgstr "已靜音帳號" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "已靜音帳號" @@ -7867,7 +7861,6 @@ msgstr "需要檢舉侵害著作權、法律要求,或法令遵循相關問題 msgid "Nevermind, create a handle for me" msgstr "算了,為我建立一個帳號代碼" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "最新" @@ -7893,11 +7886,11 @@ msgstr "來自 {firstAuthorName} 的新{postsCount, plural, other {貼文}}" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "新對話" @@ -7931,25 +7924,25 @@ msgid "New Feature" msgstr "新功能" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "新跟隨者" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "建立群組對話" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "建立群組對話" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "與這些人建立群組對話:" @@ -7966,13 +7959,13 @@ msgstr "新列表" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "新訊息申請" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "新訊息" @@ -7982,12 +7975,12 @@ msgstr "新訊息" msgid "New password" msgstr "新密碼" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "新貼文" @@ -8011,7 +8004,7 @@ msgstr "建立新手包" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "第一次使用 Bluesky?<0>註冊" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +8018,14 @@ msgid "Newest replies first" msgstr "最新回覆優先" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 msgid "News" msgstr "新聞" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8050,7 @@ msgstr "下一張圖片" msgid "Night" msgstr "夜晚" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "無廣告、無侵入式追蹤,更沒有成癮性設計。Bluesky 尊重您寶貴的時間與注意力。" @@ -8067,7 +8060,7 @@ msgstr "目前還沒有應用程式專用密碼" #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "目前沒有測試功能。" #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8091,7 @@ msgstr "沒有設定過期時間" msgid "No feeds found. Try searching for something else." msgstr "找不到任何動態源。試試以其他關鍵字搜尋。" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "目前還沒有跟隨者" @@ -8118,7 +8111,7 @@ msgstr "沒有圖片" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "目前還沒有喜歡" @@ -8135,7 +8128,7 @@ msgstr "沒有列表" msgid "No longer following {0}" msgstr "成功取消跟隨 {0}" -#: src/view/screens/Profile.tsx:471 +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "目前還沒有任何媒體內容" @@ -8143,7 +8136,7 @@ msgstr "目前還沒有任何媒體內容" msgid "No messages yet" msgstr "目前還沒有訊息" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "告別那些充滿垃圾資訊的演算法,找到對您有利而非有害的動態源。" @@ -8184,12 +8177,12 @@ msgstr "沒有人可以傳送訊息" msgid "No posts here" msgstr "這裡目前還沒有任何貼文" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "目前還沒有任何貼文" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "目前還沒有引用" @@ -8202,7 +8195,7 @@ msgstr "還沒有最近使用的 GIFs。試著在貼文加入 GIF 再回來看 msgid "No replies" msgstr "無回覆" -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "目前還沒有任何回覆" @@ -8217,13 +8210,13 @@ msgstr "沒有結果" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "沒有結果" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "找不到符合「{0}」的結果。" @@ -8236,23 +8229,23 @@ msgstr "找不到結果" msgid "No results found for \"{query}\"" msgstr "找不到符合「{query}」的結果" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for “<0>{query}” with advanced search filters applied." msgstr "套用進階搜尋篩選條件後,找不到符合「<0>{query}」的結果。" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for “<0>{query}”." msgstr "找不到符合「<0>{query}」的結果。" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "套用進階搜尋篩選條件後,找不到符合您查詢的結果。" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "沒有結果。" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "目前還沒有新手包" @@ -8265,7 +8258,7 @@ msgstr "不用了,謝謝" msgid "No translation received from your device." msgstr "無法從您的裝置取得翻譯結果。" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "目前還沒有任何影片貼文" @@ -8278,7 +8271,7 @@ msgstr "沒有人" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "還沒有人對此表示喜歡,也許您可以成為第一個!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "還沒有人引用這則貼文,也許您可以成為第一個!" @@ -8298,6 +8291,10 @@ msgstr "非自願的親密影像 (NCII)" msgid "Non-sexual Nudity" msgstr "非色情裸露" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8313,8 @@ msgstr "此功能無法在這個平台上使用。" msgid "Not followed by anyone you’re following" msgstr "沒有被任何您認識的人跟隨" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "找不到" @@ -8333,7 +8330,7 @@ msgstr "關於分享的注意事項" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "註:Bluesky 是一個開放的公共社群網路。這項設定僅限制您的內容在 Bluesky 官方應用程式和網站上的可見度,其他第三方應用程式可能不會遵循這項設定。您的內容仍可能被其他應用程式和網站顯示給未登入的使用者。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "註:這則貼文僅限已登入的使用者可以檢視。" @@ -8342,8 +8339,8 @@ msgid "Nothing saved yet" msgstr "還沒有收藏任何內容" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "通知設定" @@ -8353,11 +8350,12 @@ msgstr "通知設定" msgid "Notification sounds" msgstr "通知音效" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8394,7 @@ msgstr "糟糕!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8402,10 @@ msgstr "好的" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "了解" @@ -8431,18 +8429,20 @@ msgid "Onboarding reset" msgstr "重新開始入門引導" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "選擇的部分對象選擇不接受群組聊天。" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "選擇的部分對象已封鎖您,無法傳送訊息。" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "至少有一張 GIF 缺少了替代文字。" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "至少有一張圖片缺少了替代文字。" @@ -8454,11 +8454,11 @@ msgstr "至少有一個選擇的檔案為不支援的格式。" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB." msgstr "至少有一個選擇的檔案太大了。最大檔案尺寸為 {VIDEO_MAX_SIZE_MB} MB。" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "有一則或多則貼文內容過長,無法儲存為草稿。{MAX_DRAFT_GRAPHEME_LENGTH, plural, other {字數上限為 # 個字元。}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "至少有一段影片缺少了替代文字。" @@ -8471,7 +8471,7 @@ msgstr "只有{0}可以回覆。" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "僅會保留前 {0} {2, plural, other {張圖片}}(您上傳了 {1} 張);上限為 {MAX_GALLERY_IMAGES} 張圖片" @@ -8519,7 +8519,7 @@ msgstr "僅限包含影片的貼文" msgid "Only replies" msgstr "僅限回覆" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "僅支援 WebVTT (.vtt) 檔案" @@ -8532,11 +8532,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "抱歉,此個人檔案不存在。換一個 QR Code 試試。" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "糟糕!" @@ -8544,7 +8544,7 @@ msgstr "糟糕!" msgid "Open advanced search options" msgstr "開啟進階搜尋選項" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "開啟大頭貼照建立工具" @@ -8570,21 +8570,22 @@ msgstr "開啟對話選項" msgid "Open draft" msgstr "開啟草稿" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "開啟側邊選單" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "開啟表情符號選擇器" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "開啟動態源資訊畫面" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "開啟動態選項選單" @@ -8627,7 +8628,7 @@ msgstr "開啟內容管理偵錯頁面" msgid "Open muted words and tags settings" msgstr "開啟靜音字詞和標籤設定" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "開啟新手包" @@ -8681,7 +8682,7 @@ msgstr "開啟對話框來向您的貼文加入內容警告" #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "開啟對話框來變更您登入的託管服務提供者" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8700,7 @@ msgstr "開啟偵錯項目的額外詳細資訊" msgid "Opens alt text dialog" msgstr "開啟替代文字對話框" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "開啟裝置相機" @@ -8731,7 +8732,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "開啟建立新的 Bluesky 帳號的流程" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "開啟登入現有 Bluesky 帳號的流程" @@ -8917,7 +8918,7 @@ msgid "Password updated!" msgstr "成功更新密碼!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "暫停" @@ -8925,12 +8926,12 @@ msgstr "暫停" msgid "Pause GIF" msgstr "暫停 GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "暫停影片" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "使用者" @@ -8944,17 +8945,18 @@ msgid "People {ownerName} follows can request to join" msgstr "被 {ownerName} 跟隨的人可以申請加入" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "被 @{0} 跟隨的人" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "跟隨 @{0} 的人" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "我跟隨的人" @@ -8977,7 +8979,6 @@ msgid "People I follow can request to join" msgstr "我跟隨的人可以申請加入" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "您跟隨的人" @@ -9023,8 +9024,8 @@ msgid "Pictures meant for adults." msgstr "可能會引發性聯想的內容。" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "釘選動態源" @@ -9034,7 +9035,7 @@ msgstr "釘選動態源" msgid "Pin to home" msgstr "釘選到首頁" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "釘選到首頁" @@ -9048,8 +9049,8 @@ msgid "Pinned" msgstr "已釘選" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "成功釘選 {0} 到首頁" @@ -9063,7 +9064,7 @@ msgid "Pinned to your feeds" msgstr "成功釘選到您的動態源" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "播放" @@ -9076,8 +9077,8 @@ msgstr "播放 {0}" msgid "Play GIF" msgstr "播放 GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "播放影片" @@ -9261,7 +9262,7 @@ msgid "Please write your message below:" msgstr "請在下列欄位填寫您的訊息:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 msgid "Politics" msgstr "政治" @@ -9269,7 +9270,7 @@ msgstr "政治" msgid "Porn" msgstr "色情" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "發布" @@ -9279,22 +9280,22 @@ msgctxt "description" msgid "Post" msgstr "貼文" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "發布一張照片" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "發布一段影片" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "全部發布" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "仍然發布" @@ -9303,10 +9304,10 @@ msgid "Post blocked" msgstr "貼文已被封鎖" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} 的貼文" @@ -9340,7 +9341,7 @@ msgstr "這則貼文被您隱藏" msgid "Post interaction settings" msgstr "貼文互動設定" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "貼文互動設定" @@ -9369,10 +9370,6 @@ msgctxt "toast" msgid "Post pinned" msgstr "成功釘選貼文" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "成功收藏貼文" - #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9381,8 +9378,9 @@ msgstr "成功取消釘選貼文" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "貼文" @@ -9398,6 +9396,10 @@ msgstr "可以根據文字、標籤或結合兩者來靜音貼文。我們建議 msgid "Posts hidden" msgstr "已隱藏貼文" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "潛在誤導性連結" @@ -9449,20 +9451,21 @@ msgstr "隱私" msgid "Privacy and security" msgstr "隱私與安全" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "隱私與安全" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "隱私與安全設定" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "隱私權政策" msgid "Privacy violation of a minor" msgstr "侵犯未成年者隱私" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "正在處理 GIF……" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "正在處理影片……" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "公開、可分享的列表,可用來批次靜音或封鎖帳號。" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "發布貼文" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "發布貼文" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "發布回覆" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "發布回覆" @@ -9599,12 +9602,12 @@ msgstr "已拒絕引用貼文" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "引用" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "引用這則貼文" @@ -9647,7 +9650,7 @@ msgstr "重新啟用您的帳號" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "繼續閱讀 {0, plural, other {# 則回覆}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "閱讀如何使用進階搜尋篩選器" @@ -9657,11 +9660,11 @@ msgstr "閱讀如何使用進階搜尋篩選器" msgid "Read blog post" msgstr "閱讀部落格文章" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "閱讀較少" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "閱讀更多" @@ -9687,11 +9690,11 @@ msgstr "閱讀 Bluesky 隱私權政策" msgid "Read the Bluesky Terms of Service" msgstr "閱讀 Bluesky 服務條款" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:146 msgid "Real conversations." msgstr "真實的對話。" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:144 msgid "Real people." msgstr "真實的使用者。" @@ -9721,10 +9724,6 @@ msgstr "最近的搜尋記錄" msgid "Recently used" msgstr "最近使用" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "推薦" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "重新連線" @@ -9748,7 +9747,7 @@ msgstr "拒絕對話邀請" msgid "Reject join request" msgstr "拒絕加入申請" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "重新載入對話" @@ -9766,7 +9765,7 @@ msgstr "重新載入對話" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "刪除" @@ -9792,8 +9791,8 @@ msgstr "要移除 {displayName} 嗎?" msgid "Remove {q}" msgstr "移除 {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "移除帳號" @@ -9845,15 +9844,15 @@ msgstr "移除篩選條件" msgid "Remove from chat" msgstr "從對話中移除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "從我的動態源中刪除" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "要從快速存取中移除嗎?" @@ -9862,7 +9861,7 @@ msgstr "要從快速存取中移除嗎?" msgid "Remove from saved feeds" msgstr "從儲存的動態源中刪除" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "從貼文收藏中刪除" @@ -9880,8 +9879,8 @@ msgstr "刪除圖片" msgid "Remove live status" msgstr "刪除直播狀態" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "移除成員" @@ -9943,7 +9942,7 @@ msgstr "成功從列表中刪除" msgid "Removed from saved feeds" msgstr "成功從儲存的動態源中刪除" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "成功從貼文收藏中刪除" @@ -9952,7 +9951,7 @@ msgstr "成功從貼文收藏中刪除" msgid "Removed from starter pack" msgstr "成功從新手包刪除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "對您回覆" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "來自 {senderName} 的回覆訊息,點選以捲動至該訊息" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "此回覆的訊息在您加入前傳送" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "回覆的訊息,點選以捲動至該訊息" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "回覆" @@ -10037,7 +10037,7 @@ msgstr "這則貼文的回覆已關閉。" msgid "Reply" msgstr "回覆" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "回覆" @@ -10098,8 +10098,8 @@ msgstr "檢舉對話" msgid "Report dialog" msgstr "檢舉對話框" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "檢舉動態源" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "由您轉發" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "轉發" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "轉發這則貼文" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "轉發您轉發的貼文" @@ -10253,7 +10253,7 @@ msgstr "已送出申請" msgid "Requests" msgstr "邀請" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10333,7 +10333,7 @@ msgstr "重設密碼" #: src/screens/Login/LoginForm.tsx:422 msgid "Reset your password by sending a code to your email" -msgstr "" +msgstr "透過傳送驗證碼至您的電子郵件來重設密碼" #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 @@ -10358,10 +10358,10 @@ msgstr "重新執行上一個出現錯誤的動作" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "返回首頁" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "返回上一頁" @@ -10406,7 +10406,7 @@ msgstr "返回上一步" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "顯示密碼" #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "儲存出生日期" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "儲存變更" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "儲存變更?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "儲存草稿" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "儲存草稿?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "儲存 QR Code" msgid "Save these options for next time" msgstr "儲存這些選項以供下次使用" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "儲存到我的動態源" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "已儲存的動態源" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "貼文收藏" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "成功儲存到您的動態源" @@ -10520,8 +10520,8 @@ msgstr "成功儲存到您的動態源" msgid "Say hello!" msgstr "說句「你好!👋」" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "試著跟某人打個招呼吧" @@ -10535,7 +10535,7 @@ msgstr "掃描" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "掃描 QR Code" @@ -10543,15 +10543,15 @@ msgstr "掃描 QR Code" msgid "Science" msgstr "科學" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "向左捲動" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "向右捲動" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "捲動至此回覆所對應的訊息" @@ -10564,8 +10564,8 @@ msgstr "捲動到頂部" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "搜尋" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "搜尋 @{0} 的貼文" @@ -10606,17 +10606,17 @@ msgstr "搜尋「{searchText}」" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "搜尋 {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "搜尋您想推薦給別人的動態源。" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "搜尋更多帳號" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "搜尋更多動態源" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "搜尋 GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "未登入狀態無法使用搜尋功能" @@ -10709,6 +10709,7 @@ msgstr "瀏覽在 Bluesky 的工作機會" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 +#: src/components/interstitials/FeedTrendingTopics.tsx:96 msgid "See more" msgstr "檢視更多" @@ -10716,8 +10717,12 @@ msgstr "檢視更多" msgid "See more suggested profiles" msgstr "檢視更多建議個人檔案" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:82 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "檢視建議帳號" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "播放進度列。使用方向鍵來快轉或倒轉,空白鍵控制播放或暫停" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "選擇「{interestsDisplayName}」類別" @@ -10748,7 +10753,7 @@ msgstr "選擇 {0}" msgid "Select {langName}" msgstr "選擇 {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "選擇一個顏色" @@ -10764,11 +10769,11 @@ msgstr "選擇帳號" msgid "Select an app language" msgstr "選擇應用程式語言" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "選擇一個大頭貼照" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "選擇一個表情符號" @@ -10780,12 +10785,13 @@ msgstr "選擇一個選項" msgid "Select app language" msgstr "選擇應用程式語言" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "選擇字幕檔案 (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "選擇對話「{name}」" @@ -10826,7 +10832,7 @@ msgstr "選擇 GIF" msgid "Select GIF \"{0}\"" msgstr "選擇 GIF「{0}」" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "選擇群組對話成員" @@ -10864,7 +10870,7 @@ msgstr "選擇慣用語言" msgid "Select telephone code" msgstr "選擇國家代碼" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "選擇 {emojiName} 表情符號作為您的大頭貼照" @@ -10945,7 +10951,8 @@ msgstr "重送訊息" msgid "Send post to {name}" msgstr "傳送貼文給 {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "傳送貼文給……" @@ -10963,12 +10970,12 @@ msgstr "從您的手機傳送這則訊息" msgid "Send verification email" msgstr "傳送驗證電子郵件" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "透過私人訊息傳送" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "請在下方設定您的出生日期,我們很快就會讓您繼續四 #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "手動選擇您的託管服務提供者" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "手動選擇您的託管服務提供者" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "設定用於重設密碼的電子郵件" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "設定" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "來自其他人的動態通知設定" @@ -11036,49 +11043,49 @@ msgstr "來自其他人的動態通知設定" msgid "Settings for allowing others to be notified of your posts" msgstr "允許其他人接收您的貼文發布通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "喜歡通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "提及通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "新跟隨者通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "其他通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "轉發的喜歡通知設定" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "新訊息請求的通知設定" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "新訊息的通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "轉發的轉發通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "引用通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "回覆通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "轉發通知設定" @@ -11109,14 +11116,14 @@ msgstr "分享" #: src/ageAssurance/useVerificationFlow.ts:62 msgid "Share age range" -msgstr "" +msgstr "分享年齡層" #: src/view/com/profile/ProfileMenu.tsx:549 msgid "Share anyway" msgstr "仍然分享" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "分享作者 DID" @@ -11125,9 +11132,9 @@ msgstr "分享作者 DID" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "分享意見回饋" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "分享連結對話框" msgid "Share my profile" msgstr "分享我的個人檔案" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "分享貼文 at:// 連結" @@ -11169,12 +11176,12 @@ msgstr "分享個人檔案" msgid "Share QR code" msgstr "分享 QR Code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "分享這個動態源" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "分享這個搜尋結果" @@ -11186,8 +11193,8 @@ msgstr "分享這個新手包" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "分享這個新手包,以協助他人融入您在 Bluesky 上的社群。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,23 +11210,23 @@ msgstr "分享您的聯絡人來尋找朋友" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughts…" -msgstr "" +msgstr "分享您的想法……" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "共用偏好測試器" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 msgid "Sharing your age range reveals only the range associated with your Apple Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "分享您的年齡層僅會揭露與您 Apple 帳號相關聯的資訊(例如:您已年滿 18 歲)。<0>您的確切年齡和生日絕不會被分享,且此資訊絕不會離開此裝置,故此功能僅能為此裝置解除限制。或者,<1>您可以使用我們信任的合作夥伴 KWS 來完成驗證,以在所有平台上啟用存取權限。" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 msgid "Sharing your age range reveals only the range associated with your Google Account – for example, that you’re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "分享您的年齡層僅會揭露與您 Google 帳號相關聯的資訊(例如:您已年滿 18 歲)。<0>您的確切年齡和生日絕不會被分享,且此資訊絕不會離開此裝置,故此功能僅能為此裝置解除限制。或者,<1>您可以使用我們信任的合作夥伴 KWS 來完成驗證,以在所有平台上啟用存取權限。" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "顯示" msgid "Show alt text" msgstr "顯示替代文字" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "仍然顯示" @@ -11274,9 +11281,9 @@ msgstr "仍然顯示列表" msgid "Show lists of users to select from" msgstr "顯示可供選擇的使用者列表" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "顯示更多" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "顯示警告,並從動態中排除內容" msgid "Show when you’re live" msgstr "顯示直播狀態" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "顯示有關此貼文建立時間的資訊" @@ -11341,15 +11348,15 @@ msgstr "顯示有關此貼文建立時間的資訊" msgid "Shows other accounts you can switch to" msgstr "顯示其他您可以切換的帳號" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "顯示內容" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:194 +#: src/components/WelcomeModal.tsx:206 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "顯示內容" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "以 {0} 的身分登入" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in as…" -msgstr "" +msgstr "登入為……" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "確定要登出嗎?" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "註冊" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "需要登入" @@ -11469,7 +11476,7 @@ msgstr "跳過" msgid "Skip contact sharing and continue to the app" msgstr "略過分享聯絡人並繼續使用應用程式" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "跳過空白貼文?" @@ -11487,7 +11494,7 @@ msgstr "略過此步驟" msgid "slide" msgstr "幻燈片" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "更小" @@ -11499,14 +11506,14 @@ msgstr "暫停提醒" msgid "So many thoughts, you should post one" msgstr "既然靈感這麼多,不如選一篇分享出來吧" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:148 msgid "Social media you control." msgstr "由您掌控的社群媒體。" #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "顯示認識的按讚者" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "某人離開了群組" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "有人做出了 {0} 反應" @@ -11554,7 +11561,7 @@ msgstr "有人做出了 {0} 反應" msgid "Someone reacted {0} to {target}" msgstr "有人對 {target} 做出了 {0} 反應" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "有人回覆了" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "發生錯誤,請再試一次" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "發生錯誤,請稍待片刻後再試一次。" msgid "Something went wrong. Please try again." msgstr "發生錯誤,請再試一次。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "看起來不太對勁?讓我們知道。" @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "垃圾內容或其他虛假互動行為" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 msgid "Sports" msgstr "運動" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "在您的朋友與跟隨中人物喜歡的貼文上顯示其名稱。" #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "當您與其他人開始聊天後,對話就會出現在這裡。" msgid "Start a group chat" msgstr "開始群組對話" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "開始新對話" @@ -11682,17 +11689,17 @@ msgstr "開始新增使用者" msgid "Start adding people!" msgstr "開始新增使用者!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "開始對話" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "與 {displayName} 開始對話" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "新手包" @@ -11715,12 +11722,16 @@ msgstr "您的新手包" msgid "Starter pack is invalid" msgstr "無效的新手包" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "新手包" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "新手包能讓您輕鬆地與朋友分享喜愛的動態源與人物。" @@ -11728,7 +11739,7 @@ msgstr "新手包能讓您輕鬆地與朋友分享喜愛的動態源與人物。 msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "新手包可以助您與朋友分享喜愛的動態源與人物。" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "新手包可以助您與朋友分享喜愛的動態源與人物。" @@ -11742,7 +11753,7 @@ msgstr "服務狀態頁面" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "第 {0} 步(共 {1} 步)" @@ -11754,7 +11765,7 @@ msgstr "已清除儲存資料,請立即重新啟動應用程式。" msgid "Stored as part of a secure code for matching with others" msgstr "儲存為安全代碼的一部分,以匹配其他人" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "故事書" @@ -11787,7 +11798,7 @@ msgstr "提交申訴" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "提交意見回饋" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "訂閱 {0} 的 {publicationTitle}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "訂閱 @{0} 以使用這些標記:" @@ -11850,11 +11861,11 @@ msgid "Successfully verified" msgstr "成功驗證" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "建議" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "建議帳號" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "您所在的國家尚未支援這個功能!請晚點再回來看看。" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "已停權的帳號無法參與群組對話。" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "已停權的帳號無法參與對話。" @@ -11921,8 +11934,8 @@ msgstr "切換到 {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "系統" @@ -11945,7 +11958,7 @@ msgstr "私下討論。" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "輕觸下方的「允許」按鈕來讓 Bluesky 存取您的所在位置。我們會利用該資訊來更精確地判斷您所在區域可用的內容和功能。" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "輕觸以瞭解詳細資訊" @@ -11976,7 +11989,7 @@ msgstr "輕觸以關閉內容選單" msgid "Tap to copy this invite link" msgstr "輕觸以複製此邀請連結" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "輕觸以跳過" @@ -12003,7 +12016,7 @@ msgstr "輕觸以收回您的 {0} 反應" msgid "Tap to request access to join this group chat" msgstr "輕觸以申請加入此群組對話" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "輕觸以重試" @@ -12016,7 +12029,7 @@ msgstr "輕觸以顯示 {0} 反應" msgid "Tap to show all reactions" msgstr "輕觸以顯示所有反應" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "輕觸以顯示反應" @@ -12032,7 +12045,7 @@ msgstr "任務完成⸺跟隨 10 個人!" msgid "Task complete - 10 likes!" msgstr "任務完成⸺喜歡 10 則貼文!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "讓我們的演算法知道您喜歡什麼" @@ -12060,7 +12073,7 @@ msgstr "條款" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12081,11 +12094,11 @@ msgstr "文字輸入框" #: src/view/com/posts/ShowLessFollowup.tsx:39 msgid "Thank you for your feedback! It has been sent to the feed operator." -msgstr "" +msgstr "感謝您的回饋!意見已提交給動態源維護者。" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "感謝您的回饋!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "找不到那個新手包。" msgid "That username is already taken" msgstr "這個使用者名稱已被佔用" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "就這些,報告完畢!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "就這些了!" @@ -12171,7 +12184,7 @@ msgstr "這個動態源已由「Discover」取代。" #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "以下標記已套用到這則貼文。" #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "伺服器似乎遇到問題。請稍後再試。" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "您要檢視的新手包已失效。您可以考慮刪除這個新手包。" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "內容選單對應的話題" @@ -12238,7 +12251,7 @@ msgstr "您所使用的驗證碼無效。請檢查您是否使用了正確的驗 msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "驗證服務提供者無法向您的電話號碼傳送驗證碼。請檢查您的電話號碼後再試一次。" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "主題" @@ -12266,7 +12279,7 @@ msgstr "載入 GIFs 時發生問題。請檢查您的網路連線狀態後再試 msgid "There was a problem with your internet connection, please try again" msgstr "您的網路連線發生了一些問題,請再試一次" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "您的網路連線發生了一些問題,請再試一次" msgid "There was an issue contacting the server" msgstr "連線伺服器時發生問題" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "連線至伺服器時發生問題,請檢查您的網路連線狀態後再試一次。" @@ -12283,8 +12296,8 @@ msgstr "連線至伺服器時發生問題,請檢查您的網路連線狀態後 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "取得通知時發生問題,按這裡重試。" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:822 msgid "There was an issue fetching posts. Tap here to try again." msgstr "取得貼文時發生問題,按這裡重試。" @@ -12309,7 +12322,7 @@ msgstr "取得您的服務資訊時發生問題" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "刪除動態源時發生問題,請檢查您的網路連線狀態後再試一次。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "這些設定只會影響「Following」(跟隨中)動態源。" msgid "These URLs" msgstr "這些連結" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "他是對話的擁有者" @@ -12392,7 +12405,7 @@ msgstr "他是對話的擁有者" msgid "They won’t be able to rejoin unless you invite them again." msgstr "除非您主動邀請,否則他們將無法重新加入對話。" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} 已被標記:" @@ -12408,7 +12421,7 @@ msgstr "此帳號已被其擁有者標記為自動化帳號。" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "此帳號已被授予一或多次驗證,但尚未被正式驗證。" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "這個帳號要求使用者登入後才能檢視其個人檔案。" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "這個動態源沒有任何動靜。您可能需要再跟隨一些使用者,或檢查您的語言設定。" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "這個動態源空空如也。" @@ -12554,7 +12567,7 @@ msgstr "此群組因擁有者受到系統審核處分而被鎖定" msgid "This handle is reserved. Please try a different one." msgstr "這個帳號代碼已被保留,請選擇不同的代碼再試一次。" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "無法使用這張圖片。請改用其他格式的檔案,例如 .jpg 或 .png。" @@ -12572,7 +12585,7 @@ msgstr "此邀請連結無效" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 msgid "This is just a one-time security check, since we haven't seen this account on this device before." -msgstr "" +msgstr "此為一次性的安全檢查,因為我們之前未曾在此裝置上看過這個帳號。" #: src/features/liveNow/components/EditLiveDialog.tsx:171 #: src/features/liveNow/components/GoLiveDialog.tsx:161 @@ -12594,9 +12607,9 @@ msgstr "這個標記由您新增。" #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "此標記已套用於整個使用者帳號,並會顯示在所有貼文上。" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "此標記服務尚未公開其發布的標記類型,也可能已經不再提供服務。" @@ -12621,13 +12634,13 @@ msgstr "這個列表是空的。" msgid "This message is hidden" msgstr "此訊息已隱藏" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "此訊息已隱藏,因為此使用者封鎖了您。" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "此訊息已隱藏,因為您封鎖了此使用者。" @@ -12641,7 +12654,7 @@ msgstr "這個使用者封鎖了您" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "這則貼文宣告的發布時間為 <0>{0},但首次出現在 Bluesky 的時間是 <1>{1}。" @@ -12649,7 +12662,7 @@ msgstr "這則貼文宣告的發布時間為 <0>{0},但首次出現在 Blu msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "這則貼文套用了不支援的內容限制。您的應用程式版本可能已經過舊。" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "這則貼文僅限已登入使用者可以檢視。" @@ -12661,7 +12674,7 @@ msgstr "這則貼文已被發布者刪除" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "這則貼文將會從動態及討論串中隱藏,之後將無法取消。" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "這則貼文的發布者拒絕引用貼文。" @@ -12698,11 +12711,12 @@ msgstr "這應該只需要幾分鐘。" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "這個使用者尚未設定名稱,因此無法授予驗證。" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "這個使用者沒有任何跟隨者。" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "這個使用者已封鎖您,無法傳送訊息。" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "這個使用者已封鎖您,因此您無法檢視他們的內容。" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "這個使用者已選擇不允許接收訊息。" @@ -12733,17 +12748,17 @@ msgstr "這個使用者包含在您已靜音的 <0>{0} 列表中。" msgid "This user is new here. Press for more info about when they joined." msgstr "這個使用者在近期加入了 Bluesky。按一下這裡以瞭解其加入的時間。" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "這個使用者尚未跟隨任何人。" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "這部影片無法在您的裝置上播放。您的瀏覽器或系統可能不支援必要的視訊解碼器(H.264/AAC)。" #: src/view/com/composer/videos/VideoPreview.web.tsx:65 msgid "This video can’t be previewed in your browser. It will still be uploaded." -msgstr "" +msgstr "此影片無法在您的瀏覽器中預覽,但仍可以上傳。" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 msgid "This will create a new list with the same name, description, and members as this starter pack." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "這會永久刪除您的 Bluesky 帳號 <0>{currentHandle} 和所有相關的資料。請注意,這也會影響這個帳號其他任何使用 <1>AT 協議 (AT Protocol) 的服務。" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "這將從快速存取列表中移除 @{0}。" @@ -12786,7 +12801,7 @@ msgstr "討論串選項" msgid "Threaded" msgstr "樹狀模式" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "討論串選項" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "太多聯絡人了——您匯入的聯絡人數量已超過尋找朋友上限" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "熱門" @@ -12858,7 +12873,7 @@ msgstr "熱門" msgid "Top replies first" msgstr "熱門回覆優先" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "話題" @@ -12893,7 +12908,9 @@ msgstr "您的裝置不支援翻譯原始及目標語言一致的內容。" msgid "Tree view" msgstr "樹狀介面" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:79 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:50 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "流行趨勢" @@ -12902,7 +12919,7 @@ msgstr "流行趨勢" msgid "Trending GIFs" msgstr "熱門 GIFs" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "流行趨勢選項" @@ -12918,11 +12935,11 @@ msgstr "引戰" msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "信任源自於人際關係、社群及共享環境,因此我們也引入了<0>可靠的驗證者:可以直接為其他帳號授予驗證的組織。" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "試試以不同的關鍵字搜尋,或移除部分篩選條件。" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "嘗試搜尋不同關鍵字。" @@ -12997,10 +13014,12 @@ msgid "Unable to fetch join requests." msgstr "無法取得加入申請。" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "找不到已選擇的接收者。" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "找不到已選擇的接收者。" @@ -13024,12 +13043,12 @@ msgstr "目前無法使用" msgid "Unavailable feed information" msgstr "無法取得動態源資訊" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13088,8 @@ msgstr "要解除封鎖嗎?" msgid "Unblock list" msgstr "解除封鎖列表" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13123,7 @@ msgstr "取消跟隨 {0}" msgid "Unfollow account" msgstr "取消跟隨帳號" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "取消跟隨使用者" @@ -13132,7 +13151,7 @@ msgstr "未標記的成人內容" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "未標記、具騷擾性,或非自願的成人內容" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "取消喜歡" @@ -13192,7 +13211,7 @@ msgstr "取消靜音此群組對話" msgid "Unmute thread" msgstr "取消靜音討論串" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "取消靜音影片" @@ -13202,14 +13221,14 @@ msgid "Unpin" msgstr "取消釘選" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "取消釘選動態源" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "從首頁取消釘選" @@ -13224,7 +13243,7 @@ msgid "Unpin moderation list" msgstr "取消釘選內容管理列表" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "成功從首頁取消釘選 {0}" @@ -13258,11 +13277,11 @@ msgstr "取消訂閱這個標記服務" msgid "Unsubscribed from list" msgstr "成功取消套用列表" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "不支援的剪貼簿內容" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "不支援的影片類型:{mimeType}" @@ -13328,7 +13347,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "更新回覆可見度時發生問題" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "或是上傳圖片" @@ -13355,7 +13374,7 @@ msgstr "從檔案上傳" msgid "Upload from Library" msgstr "從相簿上傳" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "正在上傳 GIF……" @@ -13369,7 +13388,7 @@ msgstr "正在上傳圖片……" msgid "Uploading link thumbnail..." msgstr "正在上傳連結縮圖……" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "正在上傳影片……" @@ -13408,7 +13427,7 @@ msgstr "使用這個和您的帳號代碼一起登入其他應用程式。" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "使用您帳號的電子郵件地址,或另外一個您擁有的電子郵件地址,以防 KWS 或 Bluesky 需要與您聯絡。" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "使用者" @@ -13482,7 +13501,7 @@ msgstr "使用者名稱只能包含字母 (a-z)、數字及連字號 (-)" #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "使用者名稱或電子信箱" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13529,7 @@ msgstr "無法授予驗證,請再試一次。" msgid "Verification settings" msgstr "驗證設定" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "驗證設定" @@ -13618,7 +13637,7 @@ msgstr "影片" msgid "Video failed to process" msgstr "影片處理失敗" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "影片動態源" @@ -13628,24 +13647,24 @@ msgid "Video from {0}: {text}" msgstr "影片來自 {0}:{text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "來自 {0} 的影片。點一下來播放或暫停影片" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 msgid "Video Games" msgstr "電子遊戲" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "影片已暫停" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "影片正在播放" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "找不到影片。" @@ -13653,7 +13672,7 @@ msgstr "找不到影片。" msgid "Video settings" msgstr "影片設定" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "影片上傳成功" @@ -13662,17 +13681,17 @@ msgstr "影片上傳成功" msgid "Video: {0}" msgstr "影片:{0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "影片" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "影片長度不得超過 3 分鐘。" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "檢視" @@ -13691,9 +13710,9 @@ msgstr "檢視 {0} 的大頭貼照" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "檢視 {0} 的個人檔案" @@ -13724,13 +13743,13 @@ msgstr "閱讀部落格文章以瞭解更多資訊" msgid "View debug entry" msgstr "檢視偵錯項目" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "檢視詳細資訊" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "檢視完整討論串" @@ -13761,7 +13780,7 @@ msgstr "檢視更多" msgid "View more trending videos" msgstr "檢視更多熱門影片" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "檢視貼文" @@ -13798,11 +13817,11 @@ msgstr "檢視此群組對話的邀請連結" msgid "View the labeling service provided by @{0}" msgstr "檢視由 @{0} 提供的標記服務" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "檢視此使用者的驗證" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "檢視喜歡這個動態源的使用者" @@ -13831,7 +13850,7 @@ msgstr "檢視您的內容管理列表" msgid "View your muted accounts" msgstr "檢視您靜音的帳號" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "檢視您的驗證" @@ -13898,7 +13917,7 @@ msgstr "找不到該列表。可能已被刪除。" #: src/screens/Login/LoginForm.tsx:348 msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." -msgstr "" +msgstr "我們找不到符合該使用者名稱的帳號。請確認輸入無誤,或<0>手動選擇您的託管服務提供者。" #: src/screens/Hashtag.tsx:260 msgid "We couldn't find any results for that tag." @@ -13922,7 +13941,7 @@ msgstr "無法載入這個對話的設定" #: src/screens/Login/LoginForm.tsx:482 msgid "We couldn’t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." -msgstr "" +msgstr "我們無法確認您的託管服務提供者。請檢查您的網際網路連線,或<0>手動選擇您的服務提供者。" #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -14001,7 +14020,7 @@ msgstr "我們會在找到您的朋友時傳送通知。" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "We’d love to hear about your experience testing beta features!" -msgstr "" +msgstr "我們想瞭解您體驗完測試功能後的想法!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14054,7 @@ msgid "We're having network issues, try again" msgstr "我們遇到了網路問題,請再試一次" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "We’re having network issues, try again" msgstr "我們遇到了網路問題,請再試一次" @@ -14043,7 +14062,7 @@ msgstr "我們遇到了網路問題,請再試一次" msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "為您介紹 Bluesky 的全新驗證機制 —— 驗證標記。" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "We’re so excited to have you join us!" msgstr "我們非常高興看到您加入我們!" @@ -14064,13 +14083,15 @@ msgstr "很抱歉,我們無法解析此列表。如果問題持續發生,請 msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "很抱歉,我們目前無法載入您的靜音字詞。請稍後再試。" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "We’re sorry, but your search could not be completed." -msgstr "" +msgstr "很抱歉,無法完成您的搜尋要求。" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "很抱歉,無法完成您的搜尋要求。請稍後幾分鐘再試一次。" @@ -14078,7 +14099,7 @@ msgstr "很抱歉,無法完成您的搜尋要求。請稍後幾分鐘再試一 msgid "We're sorry, you cannot access this screen at this time." msgstr "很抱歉,您目前無權存取這個頁面。" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "很抱歉!您要回覆的貼文已被刪除。" @@ -14134,7 +14155,7 @@ msgid "what’s up" msgstr "有什麼新鮮事" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "發生了什麼新鮮事?" @@ -14161,7 +14182,7 @@ msgid "Who can verify?" msgstr "哪些人可以授予驗證?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "咦?" @@ -14220,21 +14241,21 @@ msgstr "需要封鎖此帳號、退出對話,或兩者一併執行嗎?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "在檢視其他草稿前,需要先儲存現有內容嗎?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "需要把現有內容儲存為草稿,以供日後編輯嗎?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "撰寫一篇貼文" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "撰寫貼文" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "撰寫您的回覆" @@ -14300,7 +14321,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "您所在的地區依法要求我們在允許您使用 Bluesky 應用程式之前驗證您的年齡。" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "您封鎖了 {0}" @@ -14342,7 +14363,7 @@ msgstr "您已停止直播" msgid "You are not allowed to upload videos." msgstr "您沒有上傳影片的權限。" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "您尚未跟隨任何人" @@ -14362,7 +14383,7 @@ msgstr "您已得到驗證。一旦您修改名稱,將會失去驗證狀態。 msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "您已得到驗證。一旦您修改帳號代碼,將會失去驗證狀態。<0>瞭解詳情。" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "您可以隨時在「內容與媒體」設定中調整您的興趣。" @@ -14406,11 +14427,11 @@ msgid "You can now sign in with your new password." msgstr "您可以使用新密碼登入了。" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "貼文最多只能加入 {MAX_GALLERY_IMAGES, plural, other {# 張圖片}}" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "您只能儲存最多 1000 個字元的草稿。" @@ -14439,9 +14460,9 @@ msgstr "您仍可以檢視聊天記錄,但無法傳送新的訊息。" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "您最多可以選擇 {MAX_GALLERY_IMAGES, plural, other {# 張圖片}}。" -#: src/components/interstitials/Trending.tsx:132 +#: src/components/interstitials/Trending.tsx:142 #: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 msgid "You can update this later from your settings." msgstr "您可以稍後在設定中變更。" @@ -14451,6 +14472,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "您不能加入超過 {EMOJI_REACTION_LIMIT, plural, other {# 個表情符號反應}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "您還無法建立群組對話。" @@ -14555,7 +14577,7 @@ msgstr "您已成功驗證電子郵件地址。現在您可以關閉此對話框 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "您已暫時達到影片上傳的限制。請稍後再試。" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "您的草稿還有尚未儲存的變更,需要儲存嗎?" @@ -14563,7 +14585,7 @@ msgstr "您的草稿還有尚未儲存的變更,需要儲存嗎?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "您有尚未儲存的變更。在檢視其他草稿前,需要先儲存現有內容嗎?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "您還沒有建立任何新手包!" @@ -14614,7 +14636,7 @@ msgstr "最多只能加入 {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_ msgid "You may only add up to 3 feeds" msgstr "您最多只能新增 3 個動態源" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "您必須是對話的擁有者才能移除成員。" @@ -14622,7 +14644,7 @@ msgstr "您必須是對話的擁有者才能移除成員。" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "您必須年滿 13 歲才能使用 Bluesky。請閱讀我們的<0>服務條款以瞭解更多資訊。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "您必須跟隨至少 7 個人才能產生新手包。" @@ -14639,7 +14661,7 @@ msgstr "您必須授予權限以存取媒體內容。" msgid "You need to verify your email address before you can enable email 2FA." msgstr "您需要先驗證您的電子郵件地址,才能啟用電子郵件雙重驗證。" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "您是對話的擁有者" @@ -14653,7 +14675,7 @@ msgid "You probably want to restart the app now." msgstr "您或許需要重新啟動應用程式。" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "您做出了 {0} 反應" @@ -14667,15 +14689,15 @@ msgstr "您對 {target} 做出了 {0} 反應" msgid "You recently changed your birthdate" msgstr "您最近變更了出生日期" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "您回覆了" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "您回覆了 {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "您回覆了自己" @@ -14715,11 +14737,11 @@ msgstr "除非收到邀請,否則無法重新加入。" msgid "You: {message}" msgstr "您:{message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "當您完成建立帳號後,您將會自動跟隨建議的使用者和動態源!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "當您完成建立帳號後,您將會自動跟隨建議的使用者!" @@ -14791,7 +14813,7 @@ msgstr "您已到達內容的尾端。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "您已經瀏覽完所有的貼文了!不妨試著再跟隨一些帳號吧。" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "您已達到草稿數量上限" @@ -14799,7 +14821,7 @@ msgstr "您已達到草稿數量上限" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "您已達到請求數上限,請稍後再試。" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "You’ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "您已達到 {MAX_FILTERS, plural, other {# 個篩選條件}}的上限。建議您可修改或替換部分篩選條件以繼續。" @@ -14815,11 +14837,11 @@ msgstr "您已達到每日影片上傳限制(位元組過多)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "您已達到每日影片上傳限制(影片數過多)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "您已經看完了所有影片。也許是時候休息一下?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "您的帳號" @@ -14835,11 +14857,11 @@ msgstr "您的帳號已被停權" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "您的帳號註冊時間太短,暫時無法上傳影片。請稍後再試。" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "您的帳號建立時間太短了" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "要建立新的群組對話,您的帳號必須建立至少 7 天以上。" @@ -14924,14 +14946,14 @@ msgstr "您的完整帳號代碼將修改為 <0>@{0}" #: src/screens/Login/components/HostingProviderDialog.tsx:182 msgid "Your hosting provider can’t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." -msgstr "" +msgstr "無法從電子郵件地址判斷您的託管服務提供者,因此將使用預設的 Bluesky 服務。請改為輸入您的使用者名稱,或手動選擇您的服務提供者。" #: src/screens/Login/components/HostingProviderDialog.tsx:188 msgid "Your hosting provider is detected automatically from the username you enter." -msgstr "" +msgstr "系統會根據您輸入的使用者名稱自動偵測您的託管服務提供者。" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14965,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "成功更新興趣主題!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "選擇興趣主題可以協助我們推薦更多您喜歡的內容!" @@ -14967,11 +14989,11 @@ msgstr "已成功變更您的密碼!往後請使用您的新密碼登入 Blues msgid "Your password must be at least 8 characters long." msgstr "您輸入的密碼必須至少包含 8 個字元。" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "已發布您的貼文" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "已發布您的貼文" @@ -14980,11 +15002,11 @@ msgid "Your preferred language" msgstr "您的偏好語言" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "您的大頭貼照" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "您的大頭貼照在中心,周圈環繞著許多使用者的大頭貼照" @@ -14992,7 +15014,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:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "已發布您的回覆" @@ -15005,13 +15027,13 @@ msgstr "您的檢舉將提交至 <0>{0}。" msgid "Your selected interests help us serve you content you care about." msgstr "您選擇的興趣主題可以協助我們提供更多您想看到的內容。" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "您的討論串中包含空白貼文,繼續發布將跳過這些內容。其餘貼文會重新整理成完整的討論串發布。" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you don’t recognize this provider, double-check your username." -msgstr "" +msgstr "您的使用者名稱與密碼將會分享給 <0>{host}。若您不認識此提供者,請再次確認您的使用者名稱。" #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/screens/Search/modules/ExploreTrendingTopics.tsx b/src/screens/Search/modules/ExploreTrendingTopics.tsx index 0b422d162b..3f17d01e04 100644 --- a/src/screens/Search/modules/ExploreTrendingTopics.tsx +++ b/src/screens/Search/modules/ExploreTrendingTopics.tsx @@ -6,8 +6,7 @@ import { moderateProfile, RichText as RichTextApi, } from '@atproto/api' -import {plural} from '@lingui/core/macro' -import {Trans, useLingui} from '@lingui/react/macro' +import {Plural, Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useTrendingSettings} from '#/state/preferences/trending' @@ -88,6 +87,7 @@ export function TrendRow({ const gutters = useGutters([0, 'base']) const actors = useModerateTrendingActors(trend.actors) + const formattedPostCount = formatCount(i18n, trend.postCount) const description = useMemo(() => { if (!trend.description) return @@ -146,8 +146,12 @@ export function TrendRow({ style={[a.text_sm, t.atoms.text_contrast_medium]} numberOfLines={1}> - {formatCount(i18n, trend.postCount)}{' '} - {plural(trend.postCount, {one: 'post', other: 'posts'})} + {formattedPostCount}{' '} + From 549e3d7a7de4ad9e98e3002e3a03b2173d10a3cf Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Fri, 24 Jul 2026 10:40:16 -0700 Subject: [PATCH 18/53] Fix issue where form controls appear above sticky headers (#11254) --- src/components/forms/TextField.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx index 108a4916ea..6e3c71bbc8 100644 --- a/src/components/forms/TextField.tsx +++ b/src/components/forms/TextField.tsx @@ -95,6 +95,8 @@ export function Root({children, isInvalid = false, style}: RootProps) { a.relative, a.w_full, a.px_md, + // Contain the input's z-index so it cannot paint over nearby overlays. + {zIndex: 0}, style, ]} {...web({ From 93cb42b9f28fec9d4c77fa686f0c147ddc946bf3 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Fri, 24 Jul 2026 10:40:37 -0700 Subject: [PATCH 19/53] Tweak advanced search UI for better localization (#11266) --- .../AdvancedSearchDialog/FromDropdown.tsx | 37 +++++++++++------- .../AdvancedSearchDialog/MediaDropdown.tsx | 39 +++++++++++-------- .../AdvancedSearchDialog/RepliesDropdown.tsx | 39 +++++++++++-------- .../components/AdvancedSearchDialog/hooks.tsx | 2 +- .../components/AdvancedSearchDialog/index.tsx | 4 +- .../components/SearchLanguageDropdown.tsx | 9 ++--- 6 files changed, 74 insertions(+), 56 deletions(-) diff --git a/src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx b/src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx index ee7e0a8c01..abcaf59285 100644 --- a/src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx +++ b/src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx @@ -1,4 +1,4 @@ -import {Trans, useLingui} from '@lingui/react/macro' +import {useLingui} from '@lingui/react/macro' import {platform} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' @@ -19,11 +19,12 @@ export function FromDropdown({ const {t: l} = useLingui() const options: {value: FromFilter; label: string}[] = [ - {value: 'anyone', label: l`Anyone`}, + {value: 'anyone', label: l`No author filter`}, {value: 'following', label: l`People I follow`}, {value: 'me', label: l`Me`}, ] - const currentLabel = options.find(o => o.value === value)?.label ?? l`Anyone` + const currentLabel = + options.find(o => o.value === value)?.label ?? l`No author filter` return ( @@ -45,19 +46,25 @@ export function FromDropdown({ )} - - Filter by author - + onChange(options[0].value)}> + {options[0].label} + + + - {options.map(option => ( - onChange(option.value)}> - {option.label} - - - ))} + {options.map((option, index) => + index === 0 ? null : ( + onChange(option.value)}> + {option.label} + + + ), + )} diff --git a/src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx b/src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx index 1f4c424c8a..9fed05152f 100644 --- a/src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx +++ b/src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx @@ -1,4 +1,4 @@ -import {Trans, useLingui} from '@lingui/react/macro' +import {useLingui} from '@lingui/react/macro' import {platform} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' @@ -19,16 +19,17 @@ export function MediaDropdown({ const {t: l} = useLingui() const options: {value: MediaFilter; label: string}[] = [ - {value: 'all', label: l`All posts`}, + {value: 'all', label: l`No media filter`}, {value: 'media', label: l`Only posts with media`}, {value: 'video', label: l`Only posts with videos`}, ] const currentLabel = - options.find(o => o.value === value)?.label ?? l`All posts` + options.find(o => o.value === value)?.label ?? l`No media filter` return ( - + {({props}) => ( + + + Suggested for you + + + @@ -540,7 +545,7 @@ function SeeMoreSuggestedProfilesCard({onPress}: {onPress: () => void}) { a.justify_center, a.gap_sm, a.p_md, - a.rounded_lg, + a.rounded_xl, {width: FINAL_CARD_WIDTH}, ]}> diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index a177a33620..7b4d75164d 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -601,7 +601,7 @@ export function FollowButtonPlaceholder({style}: ViewStyleProp) { return ( void }) { const t = useTheme() - const {_, i18n} = useLingui() + const {t: l, i18n} = useLingui() const embed = post.embed const { state: pressed, @@ -118,8 +117,8 @@ export function VideoPostCard({ return ( - - {_(msg`Hidden`)} - + {l`Hidden`} @@ -367,7 +364,7 @@ export function CompactVideoPostCard({ onInteract?: () => void }) { const t = useTheme() - const {_, i18n} = useLingui() + const {t: l, i18n} = useLingui() const embed = post.embed const { state: pressed, @@ -398,7 +395,7 @@ export function CompactVideoPostCard({ return ( - - {_(msg`Hidden`)} - + {l`Hidden`} @@ -469,7 +465,7 @@ export function CompactVideoPostCard({ - + + style={[ + a.relative, + a.rounded_full, + { + width: 24, + height: 24, + }, + ]}> + + <> - - - - Trending - - - - {({hovered, pressed}) => ( - - See more + + + + + Trending - )} - + + + + {({hovered, pressed}) => ( + + See more + + )} + + + + + + + {isLoading || isRefetching + ? Array.from({length: TOPIC_COUNT}).map((_, i) => ( + + )) + : trending?.trends?.map((trend, index) => ( + { + ax.metric('trendingTopic:click', { + context: 'interstitial', + }) + }} + /> + ))} + + - - {isLoading || isRefetching - ? Array.from({length: TOPIC_COUNT}).map((_, i) => ( - - )) - : trending?.trends?.map((trend, index) => ( - { - ax.metric('trendingTopic:click', {context: 'interstitial'}) - }} - /> - ))} - - + { + ax.metric('trendingTopics:hide', {context: 'interstitial'}) + setTrendingDisabled(true) + }} + /> + ) } @@ -156,12 +182,7 @@ function TrendRow({ label={l`Browse topic ${trend.displayName}`} to={trend.link} onPress={onPress} - style={[ - rank < TOPIC_COUNT && a.border_b, - { - borderColor: t.palette.primary_100, - }, - ]} + style={[rank < TOPIC_COUNT && a.border_b, t.atoms.border_contrast_low]} PressableComponent={Pressable}> {({hovered, pressed}) => ( <> diff --git a/src/components/interstitials/TrendingVideos.tsx b/src/components/interstitials/TrendingVideos.tsx index 7f3a891436..d3047001a4 100644 --- a/src/components/interstitials/TrendingVideos.tsx +++ b/src/components/interstitials/TrendingVideos.tsx @@ -1,9 +1,7 @@ import {useCallback, useEffect, useMemo} from 'react' import {ScrollView, View} from 'react-native' import {AppBskyEmbedVideo, AtUri} from '@atproto/api' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' -import {Trans} from '@lingui/react/macro' +import {Trans, useLingui} from '@lingui/react/macro' import {useQueryClient} from '@tanstack/react-query' import {VIDEO_FEED_URI} from '#/lib/constants' @@ -14,7 +12,7 @@ import {BlockDrawerGesture} from '#/view/shell/BlockDrawerGesture' import {atoms as a, useGutters, useTheme} from '#/alf' import {Button, ButtonIcon} from '#/components/Button' import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRight} from '#/components/icons/Chevron' -import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times' +import {DotGrid3x1_Stroke2_Corner0_Rounded as EllipsisIcon} from '#/components/icons/DotGrid' import {Link} from '#/components/Link' import * as Prompt from '#/components/Prompt' import {Text} from '#/components/Typography' @@ -35,7 +33,7 @@ const FEED_PARAMS: { export function TrendingVideos() { const t = useTheme() - const {_} = useLingui() + const {t: l} = useLingui() const ax = useAnalytics() const gutters = useGutters([0, 'base']) const {data, isLoading, error} = usePostFeedQuery(FEED_DESC, FEED_PARAMS) @@ -48,7 +46,7 @@ export function TrendingVideos() { .getQueryCache() .find({queryKey: RQKEY(FEED_DESC, FEED_PARAMS)}) if (query && query.getObserversCount() <= 1) { - query.fetch() + void query.fetch() } } }, [queryClient]) @@ -83,20 +81,22 @@ export function TrendingVideos() { a.align_center, a.justify_between, ]}> - - Trending Videos - - + + + Trending videos + + + - - @@ -186,7 +185,7 @@ function VideoCards({ function ViewMoreCard() { const t = useTheme() - const {_} = useLingui() + const {t: l} = useLingui() const href = useMemo(() => { const urip = new AtUri(VIDEO_FEED_URI) @@ -197,16 +196,16 @@ function ViewMoreCard() { {({pressed}) => ( + label={l`View more trending videos`}> diff --git a/src/screens/Search/components/ModuleHeader.tsx b/src/screens/Search/components/ModuleHeader.tsx index cf6840dbe0..ce40af98b8 100644 --- a/src/screens/Search/components/ModuleHeader.tsx +++ b/src/screens/Search/components/ModuleHeader.tsx @@ -9,6 +9,7 @@ import {atoms as a, native, useTheme, type ViewStyleProp} from '#/alf' import {Button, ButtonIcon} from '#/components/Button' import * as FeedCard from '#/components/FeedCard' import {sizes as iconSizes} from '#/components/icons/common' +import {DotGrid3x1_Stroke2_Corner0_Rounded as EllipsisIcon} from '#/components/icons/DotGrid' import {MagnifyingGlass_Stroke2_Corner0_Rounded as SearchIcon} from '#/components/icons/MagnifyingGlass' import {Link} from '#/components/Link' import {Text, type TextProps} from '#/components/Typography' @@ -151,6 +152,32 @@ export function SearchButton({ ) } +export function EllipsisButton({ + label, + onPress, +}: { + label: string + onPress?: () => void +}) { + return ( + + ) +} + export function PinButton({feed}: {feed: AppBskyFeedDefs.GeneratorView}) { return ( diff --git a/src/screens/Search/modules/ExploreTrendingTopics.tsx b/src/screens/Search/modules/ExploreTrendingTopics.tsx index 3f17d01e04..f9425e37d4 100644 --- a/src/screens/Search/modules/ExploreTrendingTopics.tsx +++ b/src/screens/Search/modules/ExploreTrendingTopics.tsx @@ -9,7 +9,10 @@ import { import {Plural, Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' -import {useTrendingSettings} from '#/state/preferences/trending' +import { + useTrendingSettings, + useTrendingSettingsApi, +} from '#/state/preferences/trending' import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' @@ -18,6 +21,7 @@ import {atoms as a, useGutters, useTheme, type ViewStyleProp} from '#/alf' import {AvatarStack} from '#/components/AvatarStack' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import {Link} from '#/components/Link' +import * as Prompt from '#/components/Prompt' import {RichText} from '#/components/RichText' import {SubtleHover} from '#/components/SubtleHover' import {Text} from '#/components/Typography' @@ -36,6 +40,9 @@ export function ExploreTrendingTopics() { function Inner() { const ax = useAnalytics() + const {t: l} = useLingui() + const trendingPrompt = Prompt.usePromptControl() + const {setTrendingDisabled} = useTrendingSettingsApi() const {data: trending, error, isLoading, isRefetching} = useGetTrendsQuery() const noTopics = !isLoading && !error && !trending?.trends?.length const showLoading = isLoading || isRefetching @@ -43,31 +50,48 @@ function Inner() { if (!showLoading && (error || !trending?.trends || noTopics)) return null return ( - - - - - Trending - - - {showLoading - ? Array.from({length: TOPIC_COUNT}).map((__, i) => ( - - )) - : trending?.trends.map((trend, index) => ( - { - ax.metric('trendingTopic:click', { - context: 'explore', - recId: trending.recId, - }) - }} - /> - ))} - + <> + + + + + Trending + + trendingPrompt.open()} + /> + + {showLoading + ? Array.from({length: TOPIC_COUNT}).map((__, i) => ( + + )) + : trending?.trends.map((trend, index) => ( + { + ax.metric('trendingTopic:click', { + context: 'explore', + recId: trending.recId, + }) + }} + /> + ))} + + + { + ax.metric('trendingTopics:hide', {context: 'explore:trending'}) + setTrendingDisabled(true) + }} + /> + ) } @@ -112,7 +136,7 @@ export function TrendRow({ {trend.displayName} diff --git a/src/view/com/posts/PostFeed.tsx b/src/view/com/posts/PostFeed.tsx index f67e6a26a3..0100856307 100644 --- a/src/view/com/posts/PostFeed.tsx +++ b/src/view/com/posts/PostFeed.tsx @@ -211,6 +211,10 @@ export type PostFeedRef = { // const REFRESH_AFTER = STALE.HOURS.ONE const CHECK_LATEST_AFTER = STALE.SECONDS.THIRTY +const TRENDING_TOPICS_INDEX = 5 +const TRENDING_VIDEO_INDEX = 30 +const SUGGESTED_FOR_YOU_INDEX = 15 + let PostFeed = ({ feed, description, @@ -570,19 +574,19 @@ let PostFeed = ({ key: 'composerPrompt-' + sliceIndex, }) } - } else if (sliceIndex === 1) { + } else if (sliceIndex === TRENDING_TOPICS_INDEX) { arr.push({ type: 'interstitialFeedTrendingTopics', key: 'interstitialFeedTrendingTopics-' + sliceIndex, }) - } else if (sliceIndex === 15) { + } else if (sliceIndex === TRENDING_VIDEO_INDEX) { if (areVideoFeedsEnabled && !trendingVideoDisabled) { arr.push({ type: 'interstitialTrendingVideos', key: 'interstitial-' + sliceIndex + '-' + lastFetchedAt, }) } - } else if (sliceIndex === 30) { + } else if (sliceIndex === SUGGESTED_FOR_YOU_INDEX) { arr.push({ type: 'interstitialFollows', key: 'interstitial-' + sliceIndex + '-' + lastFetchedAt, diff --git a/src/view/shell/desktop/SidebarTrendingTopics.tsx b/src/view/shell/desktop/SidebarTrendingTopics.tsx index aa7bf4026c..8ad9a0d2cc 100644 --- a/src/view/shell/desktop/SidebarTrendingTopics.tsx +++ b/src/view/shell/desktop/SidebarTrendingTopics.tsx @@ -9,7 +9,7 @@ import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {atoms as a, useTheme} from '#/alf' import {Button, ButtonIcon} from '#/components/Button' -import {DotGrid3x1_Stroke2_Corner0_Rounded as Ellipsis} from '#/components/icons/DotGrid' +import {DotGrid3x1_Stroke2_Corner0_Rounded as EllipsisIcon} from '#/components/icons/DotGrid' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import * as Prompt from '#/components/Prompt' import {TrendingTopicLink} from '#/components/TrendingTopics' @@ -50,7 +50,7 @@ function Inner() { style={[a.p_lg, a.rounded_md, a.border, t.atoms.border_contrast_low]}> - + Trending From e4ba1b437866385b30fa49e1c107bb8089c739b9 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Mon, 27 Jul 2026 17:06:10 -0700 Subject: [PATCH 44/53] Add trendingTopic:seen metric (#11309) --- src/analytics/metrics/types.ts | 4 ++ src/components/TrendingTopics.tsx | 38 ++++++++++++++----- .../interstitials/FeedTrendingTopics.tsx | 6 +++ src/components/interstitials/Trending.tsx | 15 ++++---- .../Search/modules/ExploreTrendingTopics.tsx | 5 +++ .../shell/desktop/SidebarTrendingTopics.tsx | 2 + 6 files changed, 54 insertions(+), 16 deletions(-) diff --git a/src/analytics/metrics/types.ts b/src/analytics/metrics/types.ts index 6d7412aadc..bd268603a0 100644 --- a/src/analytics/metrics/types.ts +++ b/src/analytics/metrics/types.ts @@ -750,6 +750,10 @@ export type Events = { 'trendingTopics:hide': { context: 'settings' | 'sidebar' | 'interstitial' | 'explore:trending' } + 'trendingTopic:seen': { + context: 'sidebar' | 'interstitial' | 'explore' + recId?: string + } 'trendingTopic:click': { context: 'sidebar' | 'interstitial' | 'explore' recId?: string diff --git a/src/components/TrendingTopics.tsx b/src/components/TrendingTopics.tsx index 4b045c6e3e..73f741046b 100644 --- a/src/components/TrendingTopics.tsx +++ b/src/components/TrendingTopics.tsx @@ -1,22 +1,28 @@ -import {useMemo} from 'react' +import {useEffect, useMemo} from 'react' import {type AppBskyUnspeccedDefs, type AtUri} from '@atproto/api' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' +import {useLingui} from '@lingui/react/macro' import {PressableScale} from '#/lib/custom-animations/PressableScale' +import {useCallOnce} from '#/lib/once' // import {makeProfileLink} from '#/lib/routes/links' // import {feedUriToHref} from '#/lib/strings/url-helpers' import {native} from '#/alf' import {Link as InternalLink, type LinkProps} from '#/components/Link' +import {type Metrics, useAnalytics} from '#/analytics' export function TrendingTopicLink({ topic: raw, + metricContext, + recId, children, ...rest }: { topic: AppBskyUnspeccedDefs.TrendView + metricContext: Metrics['trendingTopic:seen']['context'] + recId?: string } & Omit) { const topic = useTopic(raw) + useTrendingTopicSeen(metricContext, recId) return ( { + ax.metric('trendingTopic:seen', {context, recId}) + }) + + useEffect(() => { + trackSeen() + }, [trackSeen]) +} + type ParsedTrendingTopic = | { type: 'topic' | 'tag' | 'starter-pack' | 'unknown' @@ -48,14 +68,14 @@ type ParsedTrendingTopic = export function useTopic( raw: AppBskyUnspeccedDefs.TrendView, ): ParsedTrendingTopic { - const {_} = useLingui() + const {t: l} = useLingui() return useMemo(() => { const {topic: displayName, link} = raw if (link.startsWith('/search')) { return { type: 'topic', - label: _(msg`Browse posts about ${displayName}`), + label: l`Browse posts about ${displayName}`, displayName, uri: undefined, url: link, @@ -63,7 +83,7 @@ export function useTopic( } else if (link.startsWith('/hashtag')) { return { type: 'tag', - label: _(msg`Browse posts tagged with ${displayName}`), + label: l`Browse posts tagged with ${displayName}`, displayName, // displayName: displayName.replace(/^#/, ''), uri: undefined, @@ -72,7 +92,7 @@ export function useTopic( } else if (link.startsWith('/starter-pack')) { return { type: 'starter-pack', - label: _(msg`Browse starter pack ${displayName}`), + label: l`Browse starter pack ${displayName}`, displayName, uri: undefined, url: link, @@ -109,10 +129,10 @@ export function useTopic( return { type: 'unknown', - label: _(msg`Browse topic ${displayName}`), + label: l`Browse topic ${displayName}`, displayName, uri: undefined, url: link, } - }, [_, raw]) + }, [l, raw]) } diff --git a/src/components/interstitials/FeedTrendingTopics.tsx b/src/components/interstitials/FeedTrendingTopics.tsx index 1eded4b8de..ac68de94ea 100644 --- a/src/components/interstitials/FeedTrendingTopics.tsx +++ b/src/components/interstitials/FeedTrendingTopics.tsx @@ -26,6 +26,7 @@ import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/ic import {Link} from '#/components/Link' import * as Prompt from '#/components/Prompt' import {SubtleHover} from '#/components/SubtleHover' +import {useTrendingTopicSeen} from '#/components/TrendingTopics' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' @@ -136,9 +137,11 @@ function Inner() { key={trend.link} trend={trend} rank={index + 1} + recId={trending.recId} onPress={() => { ax.metric('trendingTopic:click', { context: 'interstitial', + recId: trending.recId, }) }} /> @@ -163,10 +166,12 @@ function Inner() { function TrendRow({ trend, rank, + recId, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number + recId?: string children?: React.ReactNode onPress?: () => void }) { @@ -175,6 +180,7 @@ function TrendRow({ const actors = useModerateTrendingActors(trend.actors) const formattedPostCount = formatCount(i18n, trend.postCount) + useTrendingTopicSeen('interstitial', recId) return ( { ax.metric('trendingTopic:click', { context: 'interstitial', @@ -122,7 +123,7 @@ export function Inner() { ))}